CentOS 7 GCC não compilará

0

Estou executando o CentOS 7 em um Dell Precision T3400. Eu instalei a ferramenta de monitoramento de rede Cacti e estou tentando instalar o Spine, o último binário crítico. Eu baixei o Spine e estou tentando instalá-lo usando:

cd /tmp/(spine directory)
./bootstrap
./configure
make
make install

No entanto, quando tento executar ./configure , recebo esta saída:

checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gawk... (cached) gawk
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in '/tmp/cacti-spine-0.8.8h':
configure: error: C compiler cannot create executables
see config.log

O config.log diz:

build='x86_64-unknown-linux-gnu'
build_alias=''
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /tmp/cacti-spine-0.8.8h/config/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='NONE'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME "Spine Poller"
#define PACKAGE_TARNAME "spine-poller"
#define PACKAGE_VERSION "0.8.8h"
#define PACKAGE_STRING "Spine Poller 0.8.8h"
#define PACKAGE_BUGREPORT "http://www.cacti.net/bugs.php"
#define PACKAGE_URL ""
#define PACKAGE "spine"
#define VERSION "0.8.8h"

configure: exit 77

Como corrijo este problema?

    
por M.Nandin 12.01.2018 / 19:59

2 respostas

0

Corrigi o problema. O que faltava era net-snmp-devel e openssl-devel se alguém se deparasse com este problema.

    
por 15.01.2018 / 18:55
0

Pode ser que o comando ./bootstrap esteja bagunçando o script configure já perfeito em cacti-spine-0.8.8h/ link

Requisito: # yum install mariadb-devel

Solução: descompacte um novo cacti-spine-0.8.8h.tar.gz

cd cacti-spine-0.8.8h/
./configure
make
# make install

... Não há problemas aqui, CentOS 7.4.1708.

    
por 15.01.2018 / 22:20