CentOS7にapr、apr-util、log4cxxのソースファイルをダウンロードして、コンパイルすると以下のエラーが発生し、失敗します。
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_ErrorString'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_SetUserData'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_ParserFree'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_SetElementHandler'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_SetCharacterDataHandler'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_GetErrorCode'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_SetEntityDeclHandler'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_StopParser'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_ParserCreate'
…/apr-util/lib/libaprutil-1.so: undefined reference to 'XML_Parse'
エラーは、log4cxxの「src/exsamples/cpp/trival」のコンパイル中に発生しています。
これまでに行ったことを以下に整理します。
1.aprのインストール → 正常にコンパイルできました。
# ./configure --prefix=[インストール先]
# make
# make install
2.apr-utilのインストール → コンパイルで「expat」がないとエラーになりました。
# ./configure --prefix=[インストール先] --with-apr=[aprのインストール先]
# make
# make install
3.expat-develのインストール → パッケージ管理にてインストールしました。
4.apr-utilのインストール → 正常にコンパイルできました。
5.log4cxxのインストール → 上記エラーが発生しました。
# ./configure --prefix=[インストール先] --with-apr-util=[apr-utilのインストール先]
# make
# make install
6.apr-utilの再コンパイル → 「make clean」を実行後、コンパイルを実行しました。正常にコンパイルできました。
7.log4cxxのコンパイル → 上記エラーが発生しました。
8.log4cxxの再コンパイル → configureで「--with-expat=builtin」を指定して実行し、コンパイル
しましたが、上記エラーが発生しました。
# ./configure --prefix=[インストール先] --with-apr-util=[apr-utilのインストール先] --with-expat=builtin
9.apr-utilの再々コンパイル → configureで「--with-expat=builtin」を指定して実行し、コンパイルすると「…/apr/build-1/libtool: line 7475: cd: builtin/lib: No such file or directory」「libtool: error: cannot determine absolute directory name of 'builtin/lib'」のエラーが発生し、コンパイル失敗となりました。
# ./configure --prefix=[インストール先] --with-expat=builtin --with-apr=[aprのインストール先]
上記エラーを解決するためのヒントとなる情報があれば、お教えていただけないでしょうか。
確認した環境は、以下の通りです。
OS: CentOS7
gcc-c++: 4.8.5
apr: 1.7.0
apr-util: 1.6.1
log4cxx: 0.10.0
あなたの回答
tips
プレビュー