home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / fortran / 5166 < prev    next >
Encoding:
Internet Message Format  |  1993-01-25  |  1.3 KB

  1. Xref: sparky comp.lang.fortran:5166 comp.sys.sgi:19092
  2. Newsgroups: comp.lang.fortran,comp.sys.sgi
  3. Path: sparky!uunet!paladin.american.edu!europa.asd.contel.com!darwin.sura.net!sgiblab!sgigate!sgi!quasar.mti.sgi.com!davea
  4. From: davea@quasar.mti.sgi.com (David B.Anderson)
  5. Subject: Re: Linking problem in Fortran
  6. Message-ID: <varit0g@sgi.sgi.com>
  7. Sender: davea@quasar.mti.sgi.com
  8. Organization: Silicon Graphics, Inc.  Mountain View, CA
  9. Date: Mon, 25 Jan 1993 16:32:57 GMT
  10. Lines: 24
  11.  
  12. In article <1993Jan25.125943.13209@syma.sussex.ac.uk> johnu@syma.sussex.ac.uk (John E. Upham) writes:
  13. >I am trying to link two files and get the following error message:
  14. >
  15. >/usr/bin/ld:
  16. >No symbolic information for: test.o
  17. >
  18. >
  19. >I'm using the  Makefile appended below and the file test.o is
  20. >mipseb demand paged stripped - version 2.0 and I havnt got access to the
  21. >.f file. My compiler is 3.4.1 on OS 4.0.5f on a SG Indigo R4000.
  22.  
  23. Well, there's your answer: 
  24.     mipseb demand paged stripped
  25. means that strip(1) or ld -s has been done on the .o.
  26. (Or perhaps the .o was damaged somehow: disk error?)
  27. Use odump(1) to see what is left of the .o (try 'man odump').
  28.  
  29. Such a .o is unusable.
  30.  
  31. You are going to have to find a way to rebuild test.o.
  32. [ David B. Anderson             (415)390-4263             davea@sgi.com ]
  33.  
  34.  
  35.  
  36.