home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!ferkel.ucsb.edu!taco!gatech!darwin.sura.net!paladin.american.edu!howland.reston.ans.net!usc!cs.utexas.edu!ut-emx!utig.ig.utexas.edu!tbodine
- From: tbodine@utig.ig.utexas.edu (Tom Bodine)
- Newsgroups: comp.sys.sun.apps
- Subject: Re: Can f77 be taught not to use /tmp?
- Message-ID: <86636@ut-emx.uucp>
- Date: 26 Jan 93 18:33:39 GMT
- References: <1993Jan20.185627.19507@mapsut.einstein.com>
- Sender: news@ut-emx.uucp
- Lines: 24
-
- In refrenced article Mr. Einstein states:
-
- > ...it seems that there should be a way of designating the compiler's
- > temporary directory also.
-
- Here is how I do it:
-
- In my .cshrc :
-
- setenv TEMP '-temp=/usr3/tbodine
-
- In my f77 makefile:
-
- FFLAGS = -g -U -u $(TEMP)
-
- $(EXEC) : $(OBJECTS)
- $(FC) $(FFLAGS) -o $(EXEC) $(OBJECTS) $(LDFLAGS) $(LDLIBS)
-
- This way f77 will write its temporary files on /usr3/tbodine instead of /tmp
-
-
- regards Tom Bodine
-
- note: These are MY opinions!
-