vote up 0 vote down star

when i compile lex.yy.c with lfl gcc recognizes that some .a file of the flex library might be needed to be linked with my code. similarly for yacc we specify the -ly compiler option.

in other words if i create a library, abc.a i want gcc to recognize that whenever a program is compiled with -labc it should link with the library abc.a. what configuration changes need to be done?

flag

72% accept rate

3 Answers

vote up 8 vote down check

The yacc library is named liby.so, and lives in something like /usr/lib, which is a directory that ld knows about.

Your abc library should be named libabc.so (or ".a" for a static lib), and should be placed in a directory that is searched by ld.

To add /home/foo/libs to the list of directories searched, add -L/home/foo/libs to the ld command.

link|flag
1  
OK cool, or add the folder to LD_LIBRARY_PATH as $LD_LIBRARY_PATH:./libs – iamrohitbanga Oct 12 at 10:15
$LD_LIBRARY_PATH is mainly used as a hack at runtime, to use shared libraries in directories that the runtime linker doesn't know about. I don't know if it has any effect on ld. – gnud Oct 12 at 10:20
1  
LD_LIBRARY_PATH does not affect the linker. – JesperE Oct 12 at 10:39
LD_LIBRARY_PATH is for dynamic libraries. right? – iamrohitbanga Oct 12 at 11:23
Yes, see my comment above, and imagine I said "dynamic, shared libraries". – gnud Oct 12 at 11:48
vote up 1 vote down

You don't need to configure anything. Call your library libabc.a, then use the command line:

gcc ... -L<path-to-libabc.a> -labc
link|flag
vote up 0 vote down

Alternatively, if you want GCC to recognise the library abc and link it via -labc, assuming abc is a static library, make sure your library file/archive abc is named libabc.a, and it is either located in one of the directories GCC searches for .a files, or you add a -L flag where the parameter is the directory where libabc.a is located in.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.