Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
12-04-2009, 12:20 PM
|
#1
|
|
Member
Registered: Mar 2009
Location: Very humid Central Florida
Distribution: ArchLinux
Posts: 30
Rep:
|
Linker not finding symbols, but library and link command look ok
I'm trying to compile a program using the bfd library. This is installed, both libbfd.so and libbfd.a exist in /usr/lib. The link command does have "-lbfd" and the main source compiles to a .o file just fine. Yet linking results in undefined reference to `bfd_openr' Readelf (and other means) verify that bfd_openr exists in the library.
So, I'm missing something... I think what I need most is a checklist: Everything needed to link a library into a program.
|
|
|
|
12-04-2009, 12:25 PM
|
#2
|
|
Member
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 237
Rep:
|
can you show command line you used and output?
|
|
|
|
12-04-2009, 01:12 PM
|
#3
|
|
Member
Registered: Oct 2009
Posts: 451
Rep: 
|
Quote:
Originally Posted by darenw
I'm trying to compile a program using the bfd library. This is installed, both libbfd.so and libbfd.a exist in /usr/lib. The link command does have "-lbfd" and the main source compiles to a .o file just fine. Yet linking results in undefined reference to `bfd_openr' Readelf (and other means) verify that bfd_openr exists in the library.
|
The first thing I'd say is to double-check that you're not getting an error message like:
Code:
/usr/bin/ld: cannot find -lbfd
somewhere down the line.
Second, check that ld is finding the "correct" version of libbfd by passing "-Wl,-verbose" to gcc (i.e. tell it to pass the "-verbose" option to the linker) and have a look at where it finds libbfd - e.g. a successful hunt for -lasound on my system looks like:
Code:
...
attempt to open /usr/lib/gcc/i486-linux-gnu/4.4.1/libasound.so failed
attempt to open /usr/lib/gcc/i486-linux-gnu/4.4.1/libasound.a failed
attempt to open /usr/lib/gcc/i486-linux-gnu/4.4.1/libasound.so failed
attempt to open /usr/lib/gcc/i486-linux-gnu/4.4.1/libasound.a failed
attempt to open /usr/lib/gcc/i486-linux-gnu/4.4.1/../../../../lib/libasound.so succeeded
...
That might tell you if ld is finding an older version of libbfd.
John G
|
|
|
|
12-04-2009, 02:07 PM
|
#4
|
|
Member
Registered: Mar 2009
Location: Very humid Central Florida
Distribution: ArchLinux
Posts: 30
Original Poster
Rep:
|
Here are the actual commands. I even put in -L/usr/lib in wild hopes that gcc was being stupid and had to be told. Same error.
gcc -L/usr/lib -g -o lsstack -Wall -m64 -lbfd -liberty lsstack.o
lsstack.o: In function `get_file_symbols':
/home/darenw/SW/src/lsstack/lsstack.c:703: undefined reference to `bfd_openr'
(several more undef. ref. errors for other symbols follow)
|
|
|
|
12-04-2009, 02:33 PM
|
#5
|
|
Member
Registered: Mar 2009
Location: Very humid Central Florida
Distribution: ArchLinux
Posts: 30
Original Poster
Rep:
|
The verbose flag is a good idea, John. Here's a relevant portion of the output:
/usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/crtbegin.o
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/libbfd.so failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/libbfd.a failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/libbfd.so failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/libbfd.a failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libbfd.so succeeded
opened script file /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libbfd.so
opened script file /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libbfd.so
attempt to open /usr/lib/libbfd.a succeeded
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/libiberty.so failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/libiberty.a failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/libiberty.so failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/libiberty.a failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libiberty.so failed
attempt to open /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.2/../../../../lib/libiberty.a succeeded
Then after some other libraries are found, the same unef. ref. errors appear.
But now I notice the package manager for my distro (Arch) doesn't know about libbfd as package. It may be supplied in some other package. I am checking...
|
|
|
|
12-04-2009, 04:51 PM
|
#6
|
|
Member
Registered: Oct 2009
Posts: 451
Rep: 
|
Quote:
Originally Posted by darenw
Here are the actual commands. I even put in -L/usr/lib in wild hopes that gcc was being stupid and had to be told. Same error.
gcc -L/usr/lib -g -o lsstack -Wall -m64 -lbfd -liberty lsstack.o
lsstack.o: In function `get_file_symbols':
/home/darenw/SW/src/lsstack/lsstack.c:703: undefined reference to `bfd_openr'
(several more undef. ref. errors for other symbols follow)
|
Could you post the complete output of running the above command?
I wonder if this could be an problem with ordering - I didn't think it would be a problem for .o files, just for libraries included with -l, but it's worth trying. Could you try putting -lbfd after lsstack.o?
|
|
|
|
12-04-2009, 07:38 PM
|
#7
|
|
Member
Registered: Mar 2009
Location: Very humid Central Florida
Distribution: ArchLinux
Posts: 30
Original Poster
Rep:
|
Quote:
Originally Posted by JohnGraham
I wonder if this could be an problem with ordering - I didn't think it would be a problem for .o files, just for libraries included with -l, but it's worth trying. Could you try putting -lbfd after lsstack.o?
|
That's it! Program executable builds fine.
How dumb to forget about such a thing as ordering of libraries and .o on the command line. I guess I don't make that mistake often enough to consider it during those times when it _is_ a problem.
Last edited by darenw; 12-04-2009 at 08:24 PM.
Reason: clarify wording
|
|
|
|
12-04-2009, 08:26 PM
|
#8
|
|
Member
Registered: Mar 2009
Location: Very humid Central Florida
Distribution: ArchLinux
Posts: 30
Original Poster
Rep:
|
btw, libbfd comes from the binutils package, and is up to date.
|
|
|
|
05-31-2010, 01:08 AM
|
#9
|
|
LQ Newbie
Registered: Nov 2008
Posts: 5
Rep:
|
Posting the command which compile lsstack successfully
gcc -W -Wall -g -o lsstack lsstack.c -lbfd -liberty
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 05:43 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|