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