From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Stephen Kennedy" To: help-gcc@gnu.org Subject: Re: GCC Mem Usage Date: Sat, 01 Apr 2000 00:00:00 -0000 Message-ID: <84t1ji$ipv$1@brimstone.medianet.ie> References: <84og5b$rel$1@isn.dac.neu.edu> X-SW-Source: 2000-q1/msg00037.html Message-ID: <20000401000000.2cLd6AVw5htH2gn3K8z5K_0L4wQSBAMG1eMZonNO_UI@z> >While compiling a large project with gcc, >I notice that even though I have almost 1GB >of free memory, during the link phase, >gcc uses ~300MB of physical mem and ~200MB >of virtual. Any ideas on why it is using >virtual memory when there is a load of physical >left? try gcc -pipe or g++ -pipe which uses pipes instead of temp files. steve