Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
05-02-2012, 12:51 AM
|
#1
|
LQ Newbie
Registered: May 2012
Posts: 3
Rep:
|
How do i configure g++ to look into particular directory to search library fles?
Hi.. I dont have permission to install on the disk. My program needs to link to mysql DB. I copied the Mysql.h and rest headerrs to local folder and ran the program. While executing, the program throws an error sayin
./a.out: error while loading shared libraries: libmysqlclient.so.16: cannot open shared object file: No such file or directory.
I tried setting the LD_LIBRARY_PATH variable, but dint help. please help me how to go about it.
thanks in advance.
|
|
|
05-02-2012, 01:22 AM
|
#2
|
Senior Member
Registered: Sep 2009
Location: Raleigh, NC
Distribution: Ubuntu, PopOS, Raspbian
Posts: 1,899
|
g++ man page or the gcc docs.
Code:
-llibrary
-l library
Search the library named library when linking. (The second alternative with the library as a separate argument is only for POSIX compliance and is not recommended.)
It makes a difference where in the command you write this option; the linker searches and processes libraries and object files in the order they are specified. Thus, foo.o -lz bar.o searches library z after file foo.o but before bar.o. If bar.o refers to functions in z, those functions may not be loaded.
The linker searches a standard list of directories for the library, which is actually a file named liblibrary.a. The linker then uses this file as if it had been specified precisely by name.
The directories searched include several standard system directories plus any that you specify with -L.
Normally the files found this way are library files---archive files whose members are object files. The linker handles an archive file by scanning through it for members which define symbols that have so far been referenced but not defined. But if the file that is found is an ordinary object file, it is linked in the usual fashion. The only difference between using an -l option and specifying a file name is that -l surrounds library with lib and .a and searches several directories.
Code:
-Ldir
Add directory dir to the list of directories to be searched for -l.
So I would say
Code:
g++ -L/path/to/library -lmysqlclient ...
Last edited by sag47; 05-02-2012 at 01:25 AM.
|
|
|
05-02-2012, 01:29 AM
|
#3
|
LQ Newbie
Registered: May 2012
Posts: 3
Original Poster
Rep:
|
I tried but is still throwing the same error. I also tried setting the environmental variable LIBRARY_PATH.
Thanks
|
|
|
05-02-2012, 01:38 AM
|
#4
|
Senior Member
Registered: May 2004
Location: In the DC 'burbs
Distribution: Arch, Scientific Linux, Debian, Ubuntu
Posts: 4,290
|
The environment variable is LD_LIBRARY_PATH. ld is the dynamic linkers, which resolves libraries at runtime whereas the compiler only needs them to link the final executable. You can compile an executable statically (with the -static flag) assuming all required libraries exist statically on the disk (as .a files, not .so files). This was, the program will have no external library dependencies at a cost of a (potentially much) larger binary.
|
|
|
05-02-2012, 02:01 AM
|
#5
|
LQ Newbie
Registered: May 2012
Posts: 3
Original Poster
Rep:
|
@btmiller, the library file tat is not bein located is .so..can i use static flag while compiling??
thanks
|
|
|
05-02-2012, 02:06 AM
|
#6
|
LQ Guru
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733
|
You will need the static library, which is usually supplied in the -devel package version. Actually, the devel versions of dependencies is usually needed when compiling from source.any way. The static library versions have .a extensions.
|
|
|
All times are GMT -5. The time now is 01:03 AM.
|
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
|
|