“configure: error: não é possível executar programas compilados em C” ao compilar o gcc no Alpine Linux

2

Estou tentando construir o gcc-7.3 no Alpine Linux. Quando eu executo make , recebo esses erros,

checking whether the C compiler works... configure: error: in '/build/x86_64-pc-linux-gnu/libgomp':
configure: error: cannot run C compiled programs.
If you meant to cross compile, use '--host'.
See 'config.log' for more details.
make[2]: *** [Makefile:20670: configure-stage1-target-libgomp] Error 1
make[2]: Leaving directory '/build'
make[1]: *** [Makefile:22759: stage1-bubble] Error 2
make[1]: Leaving directory '/build'
make: *** [Makefile:23096: bootstrap] Error 2

Eu configurei o gcc como

/gcc-7.3.0/configure --with-pkgversion="version" --with-bugurl="example.com" --disable-multilib --enable-languages=c --disable-werror

Os detalhes do g ++ instalados são

Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-alpine-linux-musl/6.4.0/lto-wrapper
Target: x86_64-alpine-linux-musl
Configured with: /home/buildozer/aports/main/gcc/src/gcc-6.4.0/configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --build=x86_64-alpine-linux-musl --host=x86_64-alpine-linux-musl --target=x86_64-alpine-linux-musl --with-pkgversion='Alpine 6.4.0' --enable-checking=release --disable-fixed-point --disable-libstdcxx-pch --disable-multilib --disable-nls --disable-werror --disable-symvers --enable-__cxa_atexit --enable-default-pie --enable-cloog-backend --enable-languages=c,c++,objc,java,fortran,ada --disable-libssp --disable-libmpx --disable-libmudflap --disable-libsanitizer --enable-shared --enable-threads --enable-tls --with-system-zlib --with-linker-hash-style=gnu
Thread model: posix
gcc version 6.4.0 (Alpine 6.4.0)

Eu instalei os seguintes pacotes.

g++ musl musl-dev bash gawk gzip make tar gmp mpfr3 mpfr-dev mpc1 mpc1-dev isl isl-dev

O comando make usado é

make -j$(nproc --all) BOOT_CFLAGS='-O3' bootstrap

No config.log, eu encontrei isso,

configure:4876: g++ -V >&5
g++: error: unrecognized command line option '-V'
g++: fatal error: no input files
compilation terminated.
configure:4887: $? = 1
configure:4876: g++ -qversion >&5
g++: error: unrecognized command line option '-qversion'; did you mean '--version'?
g++: fatal error: no input files
compilation terminated.
    
por Registered User 22.03.2018 / 12:11

2 respostas

1

A versão de trabalho com o --target correto

export GCC_VERSION=7.3.0
apk add --no-cache make build-base mpfr-dev mpc1-dev isl-dev
wget https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.gz
tar -xzf gcc-${GCC_VERSION}.tar.gz
cd gcc-${GCC_VERSION}
./configure \
    --prefix=/usr/local \
    --build=$(uname -m)-alpine-linux-musl \
    --host=$(uname -m)-alpine-linux-musl \
    --target=$(uname -m)-alpine-linux-musl \
    --enable-checking=release \
    --disable-fixed-point \
    --disable-libmpx \
    --disable-libmudflap \
    --disable-libsanitizer \
    --disable-libssp \
    --disable-libstdcxx-pch \
    --disable-multilib \
    --disable-nls \
    --disable-symvers \
    --disable-werror
make -j $(nproc)
make install

Teste do compilador C:

echo '#include <stdio.h>
int main() {
    printf("Hello, C world!\n");
    return 0;
}' | gcc -x c - && ./a.out

Compilador do Teste C ++:

echo '#include <iostream>
int main () {
  std::cout << "Hello, C++ world!\n";
  return 0;
}' | g++ -x c++ - && ./a.out
    
por 13.07.2018 / 16:19
0

Para compilar gcc no Alpine linux, há uma lista de etapas abaixo:

apk add --no-cache make build-base mpfr-dev mpc1-dev isl-dev
wget https://ftp.gnu.org/gnu/gcc/gcc-7.3.0/gcc-7.3.0.tar.gz
tar -xzvf gcc-7.3.0.tar.gz
mkdir objdir
cd objdir
./../gcc-7.3.0/configure --prefix=$HOME/GCC-7.3.0 --with-pkgversion="version" --with-bugurl="example.com" --disable-multilib --enable-languages=c --disable-werror
make all-gcc
make all-target-libgcc
make install-gcc
make install-target-libgcc

Criamos libgcc , uma biblioteca de suporte de baixo nível que o compilador espera disponível em tempo de compilação. Vincular com libgcc fornece número inteiro, ponto flutuante, decimal, desenrolamento de pilha (útil para tratamento de exceção) e outras funções de suporte. Observe como não estamos simplesmente executando make && make install , pois nem todos os componentes de gcc estão prontos para segmentar seu sistema operacional inacabado.

    
por 25.06.2018 / 21:54