home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / sys / sgi / 19088 < prev    next >
Encoding:
Text File  |  1993-01-25  |  1.1 KB  |  43 lines

  1. Xref: sparky comp.sys.sgi:19088 comp.lang.fortran:5161
  2. Newsgroups: comp.sys.sgi,comp.lang.fortran
  3. Path: sparky!uunet!spool.mu.edu!agate!doc.ic.ac.uk!syma!johnu
  4. From: johnu@syma.sussex.ac.uk (John E. Upham)
  5. Subject: Linking problem in Fortran
  6. Message-ID: <1993Jan25.125943.13209@syma.sussex.ac.uk>
  7. Keywords: link
  8. Organization: University of Sussex
  9. Date: Mon, 25 Jan 1993 12:59:43 GMT
  10. Lines: 31
  11.  
  12. I am trying to link two files and get the following error message:
  13.  
  14. /usr/bin/ld:
  15. No symbolic information for: test.o
  16.  
  17.  
  18. I'm using the  Makefile appended below and the file test.o is
  19. mipseb demand paged stripped - version 2.0 and I havnt got access to the
  20. .f file. My compiler is 3.4.1 on OS 4.0.5f on a SG Indigo R4000.
  21.  
  22. Thanks for any help.
  23.  
  24.  John upham
  25.  
  26. FFLAGS    =  -G 0 -O1
  27.  
  28. FCOMPL= f77
  29.  
  30. all: program
  31.  
  32. testl0.o:    testl0.f
  33.         $(FCOMPL) $(FFLAGS) -c testl0.f
  34.  
  35. test:    testl0.o test.o
  36.     $(FCOMPL) -o prog testl0.o test.o
  37.  
  38.  
  39. -- 
  40. John Upham, Dept. of Chemistry, University of Reading, Berks., RG6 2AD, UK.
  41. Email: scsupham%susssys1.rdg.ac.uk@uk.ac (BITnet), scsupham@rdg.susssys1 (Janet)
  42. Voice:   +44 734 875123 x7441 (day), Fax: +44 734 311610
  43.