ICU 49 および 50 用のスタティック ライブラリをビルドしましたが、それらのいずれかとリンクすると、以下のような 667 リンカ エラーが発生します。これをデバッグして問題の原因を突き止めるにはどうすればよいですか? ICU サポート リストは、まったく役に立ちませんでした。
clang++ -ccc-gcc-name g++ -Wl,-E -o velocity main.o city.o auto_lua.o
obj_builder.o index.o obj.o str.o db.o datetime.o msg_parser.o
task_scheduler.o gc.o global_settings.o transaction.o schema.o
skip_node.o util.o thread_context.o hashtable_base.o attr.o
page_pool.o result_buffer.o server_epoll.o logging.o test_server.o
test_main.o -L../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -lc++
-lllalloc -lluajit -ldl -lm -lrt -lboost_system -lboost_filesystem
-licuuc -licui18n -licudata -lgtest
../lib/libicui18n.a(ucol.ao): In function `uprv_new_collIterate_50':
ucol.cpp:(.text.uprv_new_collIterate_50+0x37): undefined reference to
`icu_50::UMemory::operator new(unsigned long)'
ucol.cpp:(.text.uprv_new_collIterate_50+0xd2): undefined reference to
`icu_50::UMemory::operator delete(void*)'
../lib/libicui18n.a(ucol.ao): In function `uprv_delete_collIterate_50':
ucol.cpp:(.text.uprv_delete_collIterate_50+0x2f): undefined reference
to `icu_50::UMemory::operator delete(void*)'
../lib/libicui18n.a(ucol.ao): In function `initializeFCD(UErrorCode*)':
ucol.cpp:(.text._ZL13initializeFCDP10UErrorCode+0x2c): undefined
reference to `icu_50::Normalizer2Factory::getNFCImpl(UErrorCode&)'
../lib/libicui18n.a(ucol.ao): In function `ucol_initCollator_50':
ucol.cpp:(.text.ucol_initCollator_50+0x126): undefined reference to
`utrie_unserialize_50'
../lib/libicui18n.a(ucol.ao): In function `ucol_prv_getSpecialCE_50':
ucol.cpp:(.text.ucol_prv_getSpecialCE_50+0x9f6): undefined reference
to `u_charDigitValue_50'
ucol.cpp:(.text.ucol_prv_getSpecialCE_50+0xc1f): undefined reference
to `u_charDigitValue_50'
コンパイルされた静的ライブラリで nm を実行すると、次のように表示されます。
nm -A libicu* | grep u_charDigitValue_50
libicui18n.a:unum.ao: U u_charDigitValue_50
libicui18n.a:decimfmt.ao: U u_charDigitValue_50
libicui18n.a:dcfmtsym.ao: U u_charDigitValue_50
libicui18n.a:ucol.ao: U u_charDigitValue_50
libicui18n.a:regexcmp.ao: U u_charDigitValue_50
libicui18n.a:rematch.ao: U u_charDigitValue_50
libicui18n.a:uregex.ao: U u_charDigitValue_50
libicui18n.a:tzfmt.ao: U u_charDigitValue_50
libicuuc.a:uchar.ao:0000000000000000 T u_charDigitValue_50
libicuuc.a:rbbiscan.ao: U u_charDigitValue_50
これにより、関数が実際に静的ライブラリで正しい名前で定義されていると信じています(ただし、私は専門家ではありません) (下から2行目、貼り付けられたエラーの下部にある欠落しているシンボルの名前と一致することに注意してください) .)
U_STATIC_IMPLEMENTATION=1 を定義し、clang と gcc の両方で 49 と 50 の両方をコンパイルしようとしました。私はubuntu x64システムを使用しています。静的ライブラリをビルドした後にチェックすると、すべてのテストに合格します。どう進めていいのか途方に暮れています。私が試すことができるアイデアはありますか?