ERRO: GNU libc não foi encontrado!

0

Enquanto usava o comando make.sh para toolchain, encontrei o seguinte erro:

Checking for toolchain prerequisites
Checking for GNU bash                     [ DONE ]
Checking for GNU binutils                 [ DONE ]
Checking for GNU bison                    [ DONE ]
Checking for GNU bzip2                    [ DONE ]
Checking for GNU coreutils                [ DONE ]
Checking for GNU diffutils                [ DONE ]
Checking for GNU findutils                [ DONE ]
Checking for GNU awk                      [ DONE ]
Checking for GNU CC                       [ DONE ]
Checking for GNU libc                     [ FAIL ]
ERROR: GNU libc not found!

Como posso resolver este problema?

    
por deneme 17.09.2012 / 14:00

1 resposta

1

Você provavelmente perderá as bibliotecas de desenvolvimento da libc. Tente instalá-los usando

sudo apt-get install libc6-dev
    
por January 17.09.2012 / 14:05