Hey,
I'm updating an ANE to the latest SDK change. For this new version, I need to add a new lib: libxml2.dylib
So in my platform-ios.xml I've:
<linkerOptions><option>–lxml2</option></linkerOptions>
I can compile the ANE, but when exporting on my iPhone I got:
Compilation failed while executing : ld64
Packaging output:
ld: file not found: –lxml2
ld: file not found: –lxml2
It seems the .dylib is no more available through Xcode 7 (El Captain) too, in favor of .tbd files. So how do we update our build file for this new format?
I tried to copy/paste the libxml2.dylib at several places (not sure if the final location changed with El Captain) but without success, still the same issue.
Any ideas?