Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
My application dynamically loads liba.so (with dlopen). liba.so uses libb.so so I want to link liba.so against libb.so. How to do this in Linux?
liba.so
dlopen
libb.so
Thanks in advance.
If you build liba.so yourself, you need to link it with -l option
-l
gcc -o liba.so liba.o -L/libb/path -lb
If you don't have liba sources, perhaps you could create libawrapper.so linked against liba and libb and to load dynamically this library
liba
libawrapper.so
libb
gcc -o libawrap.so -L/liba/ -L/libb/ -la -lb
Add a comment
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.