Como executar o “install-build-deps.sh” para o Chromium Building

0

Estou tentando criar o cromo a partir do código-fonte. Antes de gclient sync , tento executar install-build-deps.sh . Mas não consigo corrigir esse erro:

Package libc6-dev:armhf is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source

E: Package 'libc6-dev:armhf' has no installation candidate
E: Unable to locate package linux-libc-dev

You will have to install the above packages yourself.

Eu tento sudo apt-get install libc6-dev:armhf , mas não está funcionando.

Como posso resolver este problema?

    
por Secil 15.11.2017 / 14:41

1 resposta

1

Adicione a arquitetura armhf

dpkg --add-architecture armhf
apt-get update
apt-get install libc6-dev:armhf
    
por 15.11.2017 / 15:06