home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / lang / perl / 7742 < prev    next >
Encoding:
Text File  |  1993-01-10  |  1.8 KB  |  45 lines

  1. Newsgroups: comp.lang.perl
  2. Path: sparky!uunet!ednor.bbc.com!cgf
  3. From: cgf@ednor.bbc.com (Chris Faylor)
  4. Subject: Re: SCO Open Desktop
  5. Message-ID: <1993Jan10.230806.2340@ednor.bbc.com>
  6. Organization: Boston Business Computing, Ltd.
  7. References: <1993Jan10.050626.5603@ednor.bbc.com>
  8. Date: Sun, 10 Jan 1993 23:08:06 GMT
  9. Lines: 34
  10.  
  11. In article <1993Jan10.050626.5603@ednor.bbc.com> cgf@ednor.bbc.com (Chris Faylor) writes:
  12. >Ok.  This is the first time I've ever had one of those "I compiled
  13. >perl under <insert system here> and now it fails a test" problems.
  14. >Perl compiles and links but the following command from the tests
  15. >loops forever:
  16. >
  17. >    perl -e 'goto foo;'
  18. >
  19. >or at least for a very long time.  Any ideas where I should start
  20. >looking?  I tried compiling with no optimization whatever and still
  21. >got the same result.
  22. >
  23. >I'd appreciate any help anybody can provide.
  24.  
  25. This is me again.  The problem mentioned above is fixed.  Apparently
  26. Configure was somehow confused by its inclusion of the shared library
  27. (libc_s.a) and was not finding all of the symbols it should have.  So,
  28. perl tried to use its own version of vsprintf when it didn't have to.
  29.  
  30. The next problem is that the new perl fails the lib/big test number 61.
  31. The problem is that in the included library bigint.pl there is a statement:
  32.  
  33.     local($sx, $sy) = (shift @x, shift @y); # get signs
  34.  
  35. The x and y arrays contain what they should contain prior to the shift
  36. and $sx contains what it should contain after this operation.  $sy
  37. is '0' when it should be '+' and both arrays are zero length.  Where
  38. do I start looking for this one???
  39.  
  40. Once again, any help is appreciated.  I know I can't be the first person
  41. to build perl under Open Desktop (aka SCO UNIX).
  42. -- 
  43. Chris Faylor        Boston Business Computing, Ltd.
  44. cgf@ednor.bbc.com    "I am not here."
  45.