home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / lang / fortran / 4846 < prev    next >
Encoding:
Internet Message Format  |  1992-12-23  |  1.8 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!moe.ksu.ksu.edu!crcnis1.unl.edu!crcvms.unl.edu!dbillesbach
  2. From: dbillesbach@crcvms.unl.edu
  3. Newsgroups: comp.lang.fortran
  4. Subject: Re: MS-FORTRAN
  5. Date: 23 Dec 92 09:15:10 CST
  6. Organization: University of Nebraska--Lincoln    
  7. Lines: 36
  8. Message-ID: <1992Dec23.091510.1@crcvms.unl.edu>
  9. References: <1992Dec22.124057.759@walter.cray.com>
  10. NNTP-Posting-Host: crcvms.unl.edu
  11.  
  12. In article <1992Dec22.124057.759@walter.cray.com>, trauger@cray.com (Jimbo Trauger) writes:
  13. > Hi, 
  14. {original text deleted}
  15. > Jim Trauger
  16.  
  17.      Jim:
  18.  
  19. MS FORTRAN can use several different libraries.  They determine how 
  20. floating point is implemented.  If the library file name ends in "7", you 
  21. must have an 80x87 co-processor chip, if the file name ends in "E", you 
  22. don't need the co-processor (but I think that it is used if it is present), 
  23. and if the file name ends in "A", a propriatary, non-IEEE compliant 
  24. floating point standard is used.  Details of all of this are in the 
  25. documentation.  My best guess of your problem is the following.  You have a 
  26. co-processor and installed the "7" library.  When you compiled, however, 
  27. the "fl" processor defaults to the "E" library which is not present in your 
  28. library directory.  To get around this, you can specify the proper library 
  29. with the following "fl" switches:  /FPc87 or /FPi87 (see the manual for the 
  30. differences in these).  The other solution is to add the following command 
  31. line to your AUTOEXEC.BAT file:
  32.  
  33. set fl= /FPi87
  34.  
  35. I may also have this backwards, and you might need to "tell"  fl to use the 
  36. "E" or "A" library.  Anyway, I hope this helps.
  37.  
  38.                       Dave B.
  39.  
  40.                                 _  ,/|
  41.                                '\`o.O'
  42.                                 =(_ _)=
  43.                                   |U|
  44.  
  45.                           Ackkkk!!   Tbhppphhhh!!
  46.  
  47.