Does anyone experience below? and how to solve it?
linux:/usr/src/asterisk-1.4.2 # make
make[1]: Entering directory /usr/src/asterisk-1.4.2/menuselect' configure: error: no acceptable C compiler found in $PATH See
config.log’ for more details.
make[1]: *** [autoconfig.h] Error 1
make[1]: Leaving directory `/usr/src/asterisk-1.4.2/menuselect’
make: *** [menuselect/menuselect] Error 2
Regards,
Justin
Yeah download the GNU C++ Compiler that is meant for your system.
Sometimes you have to read certain things to obtain the right information, but then again sometimes it is the most obvious things that are the hardest to find.
Use google to find the GNU C++ compiler for your particular distribution or you can do the following.
Redhat based system:
yum -y install GNU C++ (Or what ever it is that Yum uses)
Debian Based System:
sudo apt-get install GNU C++
or if your already logged in as root
apt-get install GNU C++
Oh you should probably do everything in lower case as linux is pretty case sensitive.
Cheers,
David.