dynamic linking - dynamically link one lib to another lib at build time, yet link statically into iphone app -
i've got lib, a, can linked iphone app itself. i'd make 2 other libs, b , c, depend on a.
an app may want built linking libs statically in of these combinations: a, a+b, a+c, or a+b+c.
however, when building b or c, i'd them link dependent lib dynamically, e.g. b depends on not copy statically. possible?
note: i'm not asking if libs can dynamically link apps. i'm trying find out if libs can dynamically linked @ compile time, such lib not contain copy of dependent lib inside of itself. @ when building app, user can statically link of above allowable combinations above.
iphone apps not support dynamic linking of third-party libraries.
Comments
Post a Comment