Another question (KN iOS), if I have 3rd party dynamic library (framework), how I can bundle it into the executable binary generated by
linkTestDebugExecutableIos
task (test.kexe). As if I run this kexe on the simulator obviously I get
dyld: Library not loaded
?
s
svyatoslav.scherbina
03/14/2019, 6:14 AM
You can’t bundle a dynamic library into the executable. The executable instead expects to find the dynamic library in one of the predefined locations.
You can discover this by running
Copy code
$ otool -l path/to/your/f.framework/f | grep -A 2 LC_ID_DYLIB