Se a sua saída de configuração parecer semelhante a isso, o compilador C ++ está ausente:
[ ... ]
*** C++ compiler and preprocessor
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl.exe... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking dependency style of g++... none
checking how to run the C++ preprocessor... /lib/cpp
configure: error: in '/home/ubuntu/.local/share/Trash/files/openmpi-1.4.1':
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See 'config.log' for more details.
Para instalar o compilador GNU C ++, use apt-get install g++
A saída do configure mostra que ./configure tentou encontrar um compilador C ++ verificando muitos nomes conhecidos do compilador, um por um.
No começo, vemos que g++
está faltando - o preferido, verificado primeiro.
Mas ele continua tentando encontrar algum outro compilador que você possa preferir usar.