is dlopen use inside a static library in iOS allowed -
i working fat static library uses dlopen() load interal modules(.so) files inside static library. on stackoverflow, developers says dlopen() private api.
in case fine use dlopen() or being private api shouldn't used in user libraries irrespective of library nature i.e static/dynamic.
if can't use dlopen() can point resource alternative way accomplish same task.
note: regarding baresip bsd library. (http://www.creytiv.com/)
update: library first trying load configured modules statically , if fails trying load them dynamically using dlopen(). removing dynamic loading code resolve problem.
dlopen
not allowed on ios versions < ios 8. see e.g. here.
Comments
Post a Comment