home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!decwrl!csus.edu!ucdavis!caldwr!bsmith
- From: bsmith@caldwr.water.ca.gov (Bill Smith)
- Newsgroups: comp.sys.apollo
- Subject: DSEE and f77 problems
- Keywords: DSEE, f77, FORTRAN
- Message-ID: <927@caldwr.water.ca.gov>
- Date: 27 Aug 92 19:17:39 GMT
- Distribution: na
- Organization: Calif. Dept. of Water Resources, Sac.
- Lines: 47
-
-
- I have been using DSEE 4.0 on Domain OS 10.3 to manage several FORTRAN
- programs with the ftn compiler with no problem. I recently attemped to
- change to use the f77 compiler (its a long story) and can not seem to
- get it to work. It looks like when I do a build that the f77 compiler
- either dies on the combination of options I give it or if it does work
- it puts the binary files into the working directory instead of the
- system where they belong. Then when it tries to link it looks to the
- system for the object modules,can not find them, and fails. I can
- manually link the object modules outside DSEE and they seem to work OK
- so I think it is probably a problem with my model.
-
- MODEL testf77 =
- TITLE 'DWR Planning Simulation Model';
- SYSTEM 'testf77.sys';
- LIBRARY testf77.lib = 'testf77.lib';
-
- DEFAULT =
- @ testf77.lib;
- END;
-
- DEFAULT FOR ?* =
- SHELL '/bin/csh -f';
- TRANSLATE
- f77 -c -g -Asystype,sys5.3 -WO,-nuc -o %RESULT %SOURCE
- %DONE;
- END OF ?*;
-
- SHELL '/bin/csh -f';
- TRANSLATE
- ld %RESULT_OF(?*.f).o -o %RESULT
- %DONE;
-
- DEPENDS_RESULT
-
- ELEMENT test.f;
-
- ELEMENT sub1.f;
-
- END OF testf77;
-
- I have called HP/Apollo about the problem but was wondering if any other
- DSEE users have used the f77 compiler with DSEE and if so could you send
- me a working model to look at as an example?
-
- Thanks
- Bill Smith
-