Author Topic: configure: error: installation or configuration problem: C++ compiler...  (Read 2022 times)

Offline atari130xe

  • Jr. Member
  • **
  • Posts: 26
Hello people I am trying to compile an old game "Open Mortal" and I get the following output:

Code: [Select]
[jose@localhost openmortal-0.7]$ ./configure
loading cache ./config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal-1.4... missing
checking for working autoconf... found
checking for working automake-1.4... missing
checking for working autoheader... found
checking for working makeinfo... missing
checking for working const... yes
checking for c++... no
checking for g++... no
checking for gcc... gcc
checking whether the C++ compiler (gcc  ) works... no
configure: error: installation or configuration problem: C++ compiler cannot create executables.
[jose@localhost openmortal-0.7]$

I M trying to find missing libraries but I can't find them. any clue? thanks!

Offline AS

  • Hero Member
  • *****
  • Posts: 4111
  • Have a nice ... night!
Hello people I am trying to compile an old game "Open Mortal" and I get the following output:

Quote
[jose@localhost openmortal-0.7]$ ./configure
loading cache ./config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking build system type... i686-pc-linux-gnu
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal-1.4... missing
checking for working autoconf... found
checking for working automake-1.4... missing
checking for working autoheader... found
checking for working makeinfo... missing
checking for working const... yes
checking for c++... no
checking for g++... no

checking for gcc... gcc
checking whether the C++ compiler (gcc  ) works... no
configure: error: installation or configuration problem: C++ compiler cannot create executables.
[jose@localhost openmortal-0.7]$

I M trying to find missing libraries but I can't find them. any clue? thanks!

gcc is installed, but you need also gcc-c++

AS