2017-05-09 21 views
2

expat xmlライブラリを使用してプログラムをビルドするときに、これらのリンカーエラーが発生します。expat定義されていないXML_SetElementHandlerへの参照

3288 /tmp/ccFZziQa.o: In function `xml::node::load_xml(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)': 
3289 node.cpp:(.text+0xdec): undefined reference to `XML_SetElementHandler' 
3290 node.cpp:(.text+0xe08): undefined reference to `XML_SetCharacterDataHandler' 
3291 node.cpp:(.text+0xe2c): undefined reference to `XML_SetUserData' 
3292 node.cpp:(.text+0xe72): undefined reference to `XML_Parse' 
3293 node.cpp:(.text+0xeaa): undefined reference to `XML_GetErrorCode' 
3294 node.cpp:(.text+0xeb1): undefined reference to `XML_ErrorString' 
3295 node.cpp:(.text+0xecb): undefined reference to `XML_GetCurrentLineNumber' 

ビルド命令:

g++ -v -L /usr/lib/x86_64-linux-gnu -lexpat node.cpp 

ライブラリファイルシステム上にあります:

$

/lib/x86_64-linux-gnu/libexpat.so.1 
/lib/x86_64-linux-gnu/libexpat.so.1.6.0 
/usr/lib/x86_64-linux-gnu/libexpat.so 

R libexpat.so探しリンカは、任意のアイデアを、これらのエラーをスローし、なぜすべてが正常にロードされたときに

2170 [pid 3361] open("/usr/include/expat.h", O_RDONLY|O_NOCTTY) = 4 

3172 [pid 3364] stat("/usr/lib/x86_64-linux-gnu/libexpat.so", {st_mode=S_IFREG|0644, st_size=166032, ...}) = 0 
3173 [pid 3364] open("/usr/lib/x86_64-linux-gnu/libexpat.so", O_RDONLY) = 7 
3174 [pid 3364] open("/usr/lib/x86_64-linux-gnu/libexpat.so", O_RDONLY) = 8 
3175 [pid 3364] stat("/tmp/ccFZziQa.o", {st_mode=S_IFREG|0600, st_size=89008, ...}) = 0 
3176 [pid 3364] open("/tmp/ccFZziQa.o", O_RDONLY) = 8 
3177 [pid 3364] open("/tmp/ccFZziQa.o", O_RDONLY) = 9 




3172 [pid 3364] stat("/usr/lib/x86_64-linux-gnu/libexpat.so", {st_mode=S_IFREG|0644, st_size=166032, ...}) = 0 
3173 [pid 3364] open("/usr/lib/x86_64-linux-gnu/libexpat.so", O_RDONLY) = 7 
3174 [pid 3364] open("/usr/lib/x86_64-linux-gnu/libexpat.so", O_RDONLY) = 8 
3175 [pid 3364] stat("/tmp/ccFZziQa.o", {st_mode=S_IFREG|0600, st_size=89008, ...}) = 0 
3176 [pid 3364] open("/tmp/ccFZziQa.o", O_RDONLY) = 8 
3177 [pid 3364] open("/tmp/ccFZziQa.o", O_RDONLY) = 9 

:任意の明白な問題かどうかを確認するためにstraceの?

私は、シンボルテーブル内の関数を検索することができます -

$ nm -DC /usr/lib/x86_64-linux-gnu/libexpat.so |grep XML_SetElementHandler 
000000000000d4a0 T XML_SetElementHandler 

答えて

関連する問題