I'm about to update default GCC (version 4.6.3) shipped by Ubuntu 12.04 to 4.8.2, though the compilation requires a standalone C++ compiler
admin@ubuntu: /usr/local/gcc_build$ sudo make
ends up with
configure: error: C++ compiler missing or inoperational
make[2]: *** [configure-stage1-libcpp] Error 1
Therefore I turn to the process of g++
installation with a preference to the latest version, which means that I would like to compile from source directly rather than apt-get
. But seriously, I can't find the source anyway!(O_o). On the other hand, does the source of GCC also come along with that of g++
in the tar file I downloaded, or not? Thanks.
PS: problem remains unsolved with admin@ubuntu: /usr/local/gcc_build$ /home/admin/gcc-4.8.2/configure --enable-languages=c,c++