glibのコンパイル中にエラーが発生しました。

glibのコンパイル中にエラーが発生しました。

次のコマンドを使用して、Debian 64ビットGNU / Linux 6.0.4(squeeze)でglib 2.24.2をコンパイルしようとしています。

gcc 4.0.3
glibc 2.3.6

設定コマンド:

 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

エラーが発生します。

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.

設定手順を通過するためにposixスレッドライブラリをどのように指すか見つけますか?

--disable-threadsを含むとしましょう。これで設定を完了できますが、makeはエラーで終了します。

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

ベストアンサー1

libc6-devパッケージを紛失した可能性があります。

逃げましたかapt-get install build-essential

おすすめ記事