A instalação do Cmake está falhando

1

Estou tentando instalar o CMake no Linux (RHEL). Quando eu executo o script de inicialização, ele gera o seguinte erro:

---------------------------------------------
CMake 3.5.2, Copyright 2000-2016 Kitware, Inc.
Found GNU toolchain
---------------------------------------------
Error when bootstrapping CMake:
Cannot find appropriate C compiler on this system.
Please specify one using environment variable CC.
See cmake_bootstrap.log for compilers attempted.
---------------------------------------------
Log of errors: /usr/cmake-3.5.2/Bootstrap.cmk/cmake_bootstrap.log


**Contents of the log file are as follows**

Checking for GNU toolchain
Try: gcc
Line: gcc  cmake_bootstrap_5875_test.c -o cmake_bootstrap_5875_test
----------  file   -----------------------
int main() { return 0; }
------------------------------------------
Test succeeded
Try: g++
Line: g++  cmake_bootstrap_5875_test.cpp -o cmake_bootstrap_5875_test
----------  file   -----------------------
int main() { return 0; }
------------------------------------------
Test succeeded
Try: gcc
Line: gcc  cmake_bootstrap_5875_test.c -o cmake_bootstrap_5875_test
----------  file   -----------------------
#ifdef __cplusplus
# error "The CMAKE_C_COMPILER is set to a C++ compiler"
#endif
#include<stdio.h>
#if defined(__CLASSIC_C__)
int main(argc, argv)
  int argc;
  char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
  printf("%d%c", (argv != 0), (char)0x0a);
  return argc-1;
}
------------------------------------------
cmake_bootstrap_5875_test.c:6:18: error: stdio.h: No such file or directory
cmake_bootstrap_5875_test.c: In function 'main':
cmake_bootstrap_5875_test.c:16: warning: incompatible implicit declaration of built-in function 'printf'
Test failed to compile

Eu tenho gcc e g ++ instalados no diretório / usr / bin /.

Alguém pode me ajudar a resolver este problema, por favor?

    
por Kranti Kumar 12.07.2016 / 15:57

1 resposta

1

Leia os registros de erros:

cmake_bootstrap_5875_test.c:6:18: error: stdio.h: No such file or directory

Parece que os arquivos de cabeçalho da biblioteca C não estão (corretamente) instalados. Eles devem ter sido instalados automaticamente junto com o GCC. Você instalou GCC manualmente? Verifique se o pacote "glibc-devel" está instalado.

    
por 12.07.2016 / 16:08