gcc instalação no CentOS 6.6: configure o problema

1

Estou tentando criar / instalar o gcc no CentOS6.6, seguindo estas instruções:

link

Após a erradicação da configuração automática:

[felix@localhost objdir]$ /home/felix/workspace/gcc-4.8.4/configure --prefix=$HOME/gcc-4.8.4
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... /bin/sed
checking for gawk... gawk
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether g++ accepts -static-libstdc++ -static-libgcc... no
checking for gnatbind... no
checking for gnatmake... no
checking whether compiler driver understands Ada... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for objdir... .libs
checking for version 0.10 of ISL... no
checking for version 0.11 of ISL... no
checking for version 0.12 of ISL... no
checking for version 0.14 of ISL... no
checking for default BUILD_CONFIG... 
checking for bison... bison -y
checking for bison... bison
checking for gm4... no
checking for gnum4... no
checking for m4... m4
checking for flex... flex
checking for flex... flex
checking for makeinfo... no
/home/felix/workspace/gcc-4.8.4/configure: line 7993: /missing: No such file or directory
checking for expect... no
checking for runtest... no
checking for ar... ar
checking for as... as
checking for dlltool... no
checking for ld... ld
checking for lipo... no
checking for nm... nm
checking for ranlib... ranlib
checking for strip... strip
checking for windres... no
checking for windmc... no
checking for objcopy... objcopy
checking for objdump... objdump
checking for readelf... readelf
checking for cc... cc
checking for c++... c++
checking for gcc... gcc
checking for gcj... no
checking for gfortran... gfortran
checking for gccgo... no
checking for ar... ar
checking for as... as
checking for dlltool... no
checking for ld... ld
checking for lipo... no
checking for nm... nm
checking for objdump... objdump
checking for ranlib... ranlib
checking for readelf... readelf
checking for strip... strip
checking for windres... no
checking for windmc... no
checking where to find the target ar... host tool
checking where to find the target as... host tool
checking where to find the target cc... host tool
checking where to find the target c++... host tool
checking where to find the target c++ for libstdc++... host tool
checking where to find the target dlltool... host tool
checking where to find the target gcc... host tool
checking where to find the target gcj... host tool
checking where to find the target gfortran... host tool
checking where to find the target gccgo... host tool
checking where to find the target ld... host tool
checking where to find the target lipo... host tool
checking where to find the target nm... host tool
checking where to find the target objdump... host tool
checking where to find the target ranlib... host tool
checking where to find the target readelf... host tool
checking where to find the target strip... host tool
checking where to find the target windres... host tool
checking where to find the target windmc... host tool
checking whether to enable maintainer-specific portions of Makefiles... no
configure: creating ./config.status
config.status: error: cannot find input file: 'Makefile.in'

Mas o Makefile.in está presente

[felix@localhost gcc-4.8.4]$ ls Makefile.*
Makefile.def  Makefile.in  Makefile.tpl
    
por Icyvapor 26.03.2015 / 04:42

3 respostas

1

Para evitar conflitos com o software instalado, é aconselhável pacote auto software compilado também. O gerenciador de pacotes então executa verificações de consistência e evitará muitos problemas acidentes. Também as alterações na compilação podem ser mantidas na versão controle.

Como a questão pertence ao Centos, melhor pegar uma fonte pré-feita pacote do Fedora - as distros são suficientemente similares - e construí-lo com rpmbuild . Modifique o arquivo de especificação de RPM a seu gosto se você precisar ajustar o processo de criação (em relação ao GCC, você provavelmente não precisa de todos os alvos ou frontends).

    
por 03.02.2017 / 16:41
0

Parece que a prática recomendada é instalar alguns devtoolset pré-fabricados em vez de construir o seu próprio.

Eu segui este post:

link

O URL do repo parece estar desatualizado, portanto, um pouco de pesquisa levou ao conjunto de ferramentas feito pelo CERN: link

    
por 27.03.2015 / 19:39
0

Ao ler sua postagem, minha primeira impressão é que ela está procurando Makefile.in em ./ em vez de em relação a configure em si. Experimente:

cd /home/felix/workspace/gcc-4.8.4/
./configure --prefix=$HOME/gcc-4.8.4
    
por 31.12.2015 / 07:07

Tags