Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
837 views
in Technique[技术] by (71.8m points)

c++ - How to debug error "Symbol lookup error: undefined symbol"

I created an app (api_tests) that uses a library (libstorage.so) that linked to oracle occi library (libocci.so.12.1) and compiled it. When I run this app, I get an error:

api_tests
api_tests: symbol lookup error: ./libstorage.so: undefined symbol: _ZN6oracle4occi11Environment17createEnvironmentENS1_4ModeEPvPFS3_S3_mEPFS3_S3_S3_mEPFvS3_S3_E

However this library with this symbol exists in the current directory:

ls | grep libocci
libocci.so*
libocci.so.11.1*
libocci.so.12.1*

nm libocci.so.12.1 | grep _ZN6oracle4occi11Environment17createEnvironmentENS1_4ModeEPvPFS3_S3_mEPFS3_S3_S3_mEPFvS3_S3_E
0000000000097e70 T _ZN6oracle4occi11Environment17createEnvironmentENS1_4ModeEPvPFS3_S3_mEPFS3_S3_S3_mEPFvS3_S3_E
0000000000125014 r _ZN6oracle4occi11Environment17createEnvironmentENS1_4ModeEPvPFS3_S3_mEPFS3_S3_S3_mEPFvS3_S3_E$$LSDA

The current path is added to LD_LABRARY_PATH:

echo $LD_LIBRARY_PATH
./:/usr/vacpp/bin/../lib:/lib

I'm wondering what can be wrong with my library and how I can debug the issue?

Update: It looks like this library was not linked (at least ldd doesn't show this dependency). I guess it was mistake in makefile and it was compiled but failes in runtime.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

nm libocci.so.12.1

There are two problems with above command:

  1. You don't know whether libocci.so.12.1 is actually getting loaded into your process. To answer the "which libocci is getting loaded", run with LD_DEBUG=libs.
  2. Just because the symbol is present in the symbol table of libocci.so.12.1 doesn't mean that it's available for dynamic linking. It must be available in the dynamic symbol table, which you can examine with nm -D libocci.so.12.1

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...