home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / sys / sun / apps / 3037 < prev    next >
Encoding:
Text File  |  1993-01-21  |  2.3 KB  |  52 lines

  1. Newsgroups: comp.sys.sun.apps
  2. Path: sparky!uunet!enterpoop.mit.edu!bloom-picayune.mit.edu!news.mit.edu!jdell
  3. From: jdell@nefertiti.mit.edu (John Ellithorpe)
  4. Subject: Re: Can f77 be taught not to use /tmp?
  5. In-Reply-To: shmuel@mapsut.einstein.com's message of Wed, 20 Jan 1993 18:56:27 GMT
  6. Message-ID: <JDELL.93Jan21113431@nefertiti.mit.edu>
  7. Sender: news@athena.mit.edu (News system)
  8. Nntp-Posting-Host: nefertiti.mit.edu
  9. Organization: Massachusetts Institute of Technology
  10. References: <1993Jan20.185627.19507@mapsut.einstein.com>
  11. Date: Thu, 21 Jan 1993 16:34:31 GMT
  12. Lines: 38
  13.  
  14. On Wed, 20 Jan 1993 18:56:27 GMT, shmuel@mapsut.einstein.com (Shmuel Einstein) said:
  15. > Nntp-Posting-Host: mapsut.einstein.com
  16.  
  17. > Our Sparc systems have the default configuration for disk partitioning, which
  18. > gives us a whopping 7.25 MB for the root partition.  This brilliant amount
  19. > makes the /tmp directory quite tight to say the least, let alone that it
  20. > compete's with /var/tmp.  We have moved /var/tmp to another partition and
  21. > linked it back to /var with no problem.
  22.  
  23. > It seems that f77 uses /tmp as its temporary file repository.  For large
  24. > compilations, we run out of space.  Although there is an option for allowing
  25. > the compiler passes to communicate via pipes, it seems that there should be
  26. > a way of designating the compiler's temporary directory also.
  27.  
  28. > If one cannot change the compiler's temp directory, is it permissable to
  29. > change /tmp to point to space on another partition?  I am concerned because
  30. > of single-user mode and various other aspects of system activity which may
  31. > be affected before the system has not mounted other partitions.
  32.  
  33. I'm pretty sure it's in the man pages.  But here it is, just use the -temp=dir
  34. option, and all files go there.
  35.  
  36. I usually just put this in my Makefiles:
  37.  
  38. F77=f77 -temp=mytemparea
  39.  
  40. Hope this helps,
  41.  
  42. John
  43.  
  44. --
  45.  
  46. ===============================================================================
  47. John Ellithorpe                           | Internet: jdell@maggie.mit.edu
  48. Dept. of Physics, Rm 26-349               | Phone   : (617) 253-3074  Office
  49. Massachusetts Institute of Technology     |           (617) 253-3072  Lab
  50. Cambridge, MA  02139                      |           (617) 236-4910  Home
  51. ===============================================================================
  52.