Thread: What does this error message mean??
I am currently attempting to install postgresql under redhat linux I have removed the old version, I have unpacked the rpm file of the new one. I am now trying to run the configure program I type the following... ./configure --host=i386-pc-linux And I get the following... checking host system type... i386-pc-linux-gnu checking echo setting... checking setting template to... linux_i386 checking whether to support locale... disabled checking whether to support cyrillic recode... disabled checking whether to support multibyte... disabled checking setting DEF_PGPORT... ./configure: 134946584: No space left on device 5432 checking setting DEF_MAXBACKENDS... ./configure: 134946624: No space left on device 32 checking setting USE_TCL... disabled checking setting USE_PERL... disabled checking setting USE_ODBC... disabled checking setting ASSERT CHECKING... disabled checking for gcc... no checking for cc... no configure: error: no acceptable cc found in $PATH What does the error in the last line mean? Can anyone help? Thanks in advance Chris ===== Chris Moore <www.ChrisM.com> __________________________________________________ Do You Yahoo!? Send instant messages & get email alerts with Yahoo! Messenger. http://im.yahoo.com/
On Fri, Jul 07, 2000 at 01:07:34AM -0700, Chris Moore wrote: chrismoore1999> configure: error: no acceptable cc found in $PATH chrismoore1999> chrismoore1999> What does the error in the last line mean? Well, it seems like you don`t have GCC installed on your system. Or your PATH variable is wrong (though the first is more probable). Try (re)installing GCC/EGCS []s -- [ teixeira@conectiva.com.br maragato@maragato.net ] [ ICQ 3203806 IRC {maragato} GNU/Linux user #86716 ] [ http://www.conectiva.com http://maragato.net ]
On Fri, 07 Jul 2000, Chris Moore wrote: > I am currently attempting to install postgresql under > redhat linux [ ... ] > checking for gcc... no > checking for cc... no > configure: error: no acceptable cc found in $PATH > > What does the error in the last line mean? That there isn't a C compiler installed on your computer, it's probably simplest to (re)install RedHat as a "Development Machine". -- Sincerely etc., NAME Christopher Sawtell - iOpen Technologies Ltd.CELL PHONE 021 257 4451ICQ UIN 45863470EMAIL chris @ iopen. co . nz, csawtell @ xtra . co . nzWWW http://www.iopen.co.nzCNOTES ftp://ftp.funet.fi/pub/languages/C/tutorials/sawtell_C.tar.gz -->> Please refrain from using HTML or WORD attachments in e-mails to me <<--
Christopher Sawtell wrote: > > On Fri, 07 Jul 2000, Chris Moore wrote: > > I am currently attempting to install postgresql under > > redhat linux > [ ... ] > > checking for gcc... no > > checking for cc... no > > configure: error: no acceptable cc found in $PATH > > > > What does the error in the last line mean? > That there isn't a C compiler installed on your computer, > it's probably simplest to (re)install RedHat as a "Development Machine". Or just install the binary RPMS for the server instead of compiling from source. Of course, you'll probably need gcc anyways if you're going to use the libpq interface for client development. Mike Mascari