I have one c++ Project that contains the principal binary that is : prog.CGI. This is linked to one shared library called : Core.so, I'd like to know if I can also link another shared library called : ext.so to Core.so because ext.so use structures defined into Core.so.
- You can, but you don't need to provided that any executable that links against them has its build file linking against the dependent library before the one it depends on, in this case ext.so before Core.so.Chance– Chance2013-11-20 00:06:50 +00:00Commented Nov 20, 2013 at 0:06
Add a comment |