php-5.2.x Installation on Fedora
Monday, February 19th, 2007Today I was working on PHP upgrade on my servers. Basicaly I was moving everything from from php-5.1.x to php-5.2.x .
I was surprised to see ‘./configure’ error during PHP installation process:
configure: error: installation or configuration problem: C++ compiler cannot create executables.
After taking a closer look at configure.log I had more details:
gcc: installation problem, cannot exec `cc1plus': No such file or directory.
To resolve that problem I simply installed gcc-c++
yum install "gcc-c++"
It helped.