Ferramentas de compilador, execv e “erro de formato exec” sob chroot s390x

0

Eu tenho uma máquina Debian 8 x86_64 com dois ambientes chroot. O primeiro é armel e o segundo é s390x . armel foi instalado na semana passada e s390x foi instalado recentemente. armel está bem antes e depois da instalação do s390x . Mas eu estou pegando erros quando compilando sob o s390x .

# chroot debian-s390x
# g++ -dumpmachine
s390x-linux-gnu

# cd /home/cryptopp-5.6.3/

# make
g++ -DNDEBUG -g2 -O2 -pipe -c osrng.cpp
g++: error trying to exec '/usr/lib/gcc/s390x-linux-gnu/5/cc1plus': execv: Exec format error
GNUmakefile:382: recipe for target 'osrng.o' failed
make: *** [osrng.o] Error 1

Não consigo encontrar nenhuma informação ao pesquisar /usr/lib/gcc/s390x-linux-gnu/5/cc1plus': execv: Exec format error .

Eu encontrei algumas leituras relacionadas a cc1plus , mas não vejo onde há um problema com a instalação:

# file /usr/lib/gcc/s390x-linux-gnu/5/cc1plus
/usr/lib/gcc/s390x-linux-gnu/5/cc1plus: ELF 64-bit MSB executable, IBM S/390, version 1
(GNU/Linux), dynamically linked, interpreter /lib/ld64.so.1, for GNU/Linux 2.6.32,
BuildID[sha1]=aaa1e442e47e5e41c36b70d5e6a8f538da4ca3e7, not stripped

Também fiz uma reinstalação de g++ com apt-get install --reinstall g++ , mas isso não ajudou.

Qual é o problema e qual é a solução?

EDITAR : este pode ser o problema, ou pode ser um problema relacionado: Debian Bug 684909: qemu-system-s390x está quebrado, não há bootloader 's390-zipl.rom' .

Não acredito que seja devido ao projeto que estou tentando compilar:

# cat test.cxx 
#include <iostream>

int main(int argc, char* argv[])
{
  return argc;
}

# g++ test.cxx 
g++: error trying to exec '/usr/lib/gcc/s390x-linux-gnu/5/cc1plus': execv: Exec format error

Aqui está o tour de 5 segundos do procedimento para instalar o ambiente debian-s390x :

# apt-get install qemu-user-static debootstrap
# qemu-debootstrap --arch=s390x --keyring /usr/share/keyrings/debian-archive-keyring.gpg
  --variant=buildd --exclude=debfoster unstable debian-s390x http://ftp.debian.org/debian
# chroot debian-s390x
# apt-get install locales build-essentials emacs-nox
    
por jww 15.09.2015 / 23:58

1 resposta

0

Isso acabou sendo um problema com os registros do binfmt. Tirando da mensagem de Michael Tokarev em Debian Edição 799120: cc1 / cc1plus falha com "execv: exec format error" sob o QEMU s390x, não é possível compilar o programa C ++ :

This has been fixed in the version which you reported this prob against, 1:2.4+dfsg-3, where I updated the binfmt masks to include OSABI_GNU too. This was #784605.

However, it looks like we've a problem with updating binfmt registrations. If you had qemu-user-static package previously installed (which registers only OSABI_SYSV variant) and update it to current version (which should register both SYSV and GNU variants), the in-kernel registration isn't updated. It will be updated at reboot, or you can remove and reinstall qemu-user-static package, after which it'll work.

    
por 18.09.2015 / 03:06