Erro ao compilar o glib

0

Eu estou tentando compilar o glib 2.24.2 no Debian GNU / Linux 6.0.4 (squeeze) usando:

gcc 4.0.3
glibc 2.3.6

Configure o comando:

 CPP="/home/swarkentin/externalBins/bin/cpp" \
 CC="/home/swarkentin/externalBins/bin/gcc" \
 CXX="/home/swarkentin/externalBins/bin/g++" \
 LDFLAGS="-L/home/swarkentin/externalBins/lib64 -L/home/swarkentin/externalBins/lib" \
 CFLAGS="-I /home/swarkentin/externalBins/include -O2 -fno-strict-aliasing -fno-omit-frame-pointer" \
 ./configure --prefix=/home/swarkentin/target   \
 --enable-static --disable-shared

Estou recebendo um erro:

checking thread related cflags... -D_REENTRANT
checking for pthread_create/pthread_join... no
checking for pthread_create/pthread_join in -lpthread... no
checking for pthread_create/pthread_join in -lpthread32... no
checking for pthread_create/pthread_join in -lpthreads... no
checking for pthread_create/pthread_join in -lthread... no
checking for pthread_create/pthread_join in -ldce... no
configure: error: I can't find the libraries for the thread implementation
        posix. Please choose another thread implementation or
        provide information on your thread implementation.
        You can also run 'configure --disable-threads'
        to compile without thread support.

Como posso apontar / encontrar bibliotecas de threads posix para passar pela etapa de configuração?

Digamos que eu inclua --disable-threads. Agora posso terminar de configurar, mas termine com um erro:

gcancellable.c: In function 'IA__g_cancellable_reset':
gcancellable.c:372: error: 'g__cancellable_lock' undeclared (first use in this function)
gcancellable.c:372: error: (Each undeclared identifier is reported only once
gcancellable.c:372: error: for each function it appears in.)
gcancellable.c: In function 'IA__g_cancellable_disconnect':
gcancellable.c:764: error: 'g__cancellable_lock' undeclared (first use in this function)
make[5]: *** [gcancellable.lo] Error 1
    
por Sheldon Warkentin 20.07.2012 / 00:09

1 resposta

1

Você provavelmente está perdendo o pacote libc6-dev .

Você já executou apt-get install build-essential ?

    
por 20.07.2012 / 00:27