Click to See Complete Forum and Search --> : C++ compiler error
I dont have one
01-17-2001, 01:07 PM
Allright, when i try to ./configure a program that i am installing i get the error msg
"no acceptable C++-compiler in $PATH"
Can anyone help me find a C++ compiler or where i need to put it to get this to run right?
Thanx
ph34r
01-17-2001, 01:08 PM
You need gcc installed, and the binary executable for it needs to be in your $PATH.
you@host ~ $ echo $PATH
I dont have one
01-17-2001, 01:11 PM
I have GCC installed but i dont know where $PATH is or how to put the gcc.exe there. Sorry, im new at this.
Thanx
fow99
01-18-2001, 07:53 AM
Actually g++ is the c++ compiler. But I suppose if you did install gcc, g++ will be
installed as well.
gcc ( and hence g++ ) should be some around in /usr/bin..... mine is in
/usr/local/gnu/bin/gcc
do a find and if you failed, install them again.
'echo $PATH' will show your path. you can
edit ~/.bashrc (if you use bash) to add a new path.
Letalis
01-18-2001, 10:38 AM
You could put a link to your gcc in /usr/bin, since /usr/bin is in PATH you dont need to edit bashrc.