home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / sys / apollo / 3398 < prev    next >
Encoding:
Internet Message Format  |  1992-08-31  |  1.7 KB

  1. Path: sparky!uunet!decwrl!csus.edu!ucdavis!caldwr!bsmith
  2. From: bsmith@caldwr.water.ca.gov (Bill Smith)
  3. Newsgroups: comp.sys.apollo
  4. Subject: DSEE and f77 problems
  5. Keywords: DSEE, f77, FORTRAN
  6. Message-ID: <927@caldwr.water.ca.gov>
  7. Date: 27 Aug 92 19:17:39 GMT
  8. Distribution: na
  9. Organization: Calif. Dept. of Water Resources, Sac.
  10. Lines: 47
  11.  
  12.  
  13. I have been using DSEE 4.0 on Domain OS 10.3 to manage several FORTRAN
  14. programs with the ftn compiler with no problem.  I recently attemped to
  15. change to use the f77 compiler (its a long story) and can not seem to
  16. get it to work.  It looks like when I do a build that the f77 compiler
  17. either dies on the combination of options I give it or if it does work
  18. it puts the binary files into the working directory instead of the
  19. system where they belong.  Then when it tries to link it looks to the
  20. system for the object modules,can not find them, and fails.  I can
  21. manually link the object modules outside DSEE and they seem to work OK
  22. so I think it is probably a problem with my model.
  23.  
  24. MODEL testf77 =
  25.      TITLE 'DWR Planning Simulation Model';
  26.      SYSTEM 'testf77.sys';
  27.      LIBRARY testf77.lib = 'testf77.lib';
  28.  
  29.      DEFAULT =
  30.           @ testf77.lib;
  31.           END;
  32.  
  33.      DEFAULT FOR ?* =
  34.           SHELL '/bin/csh -f';
  35.           TRANSLATE               
  36.                f77  -c -g -Asystype,sys5.3 -WO,-nuc -o %RESULT %SOURCE 
  37.                %DONE;
  38.      END OF ?*;
  39.  
  40.      SHELL '/bin/csh -f';
  41.      TRANSLATE
  42.           ld %RESULT_OF(?*.f).o -o %RESULT
  43.           %DONE;
  44.  
  45. DEPENDS_RESULT
  46.  
  47.  ELEMENT test.f;
  48.  
  49.  ELEMENT sub1.f;
  50.  
  51. END OF testf77;
  52.  
  53. I have called HP/Apollo about the problem but was wondering if any other
  54. DSEE users have used the f77 compiler with DSEE and if so could you send
  55. me a working model to look at as an example?
  56.  
  57. Thanks
  58. Bill Smith
  59.