I'm wrapping an library AMapLocation,it depends on libc++.tbd,libstdc++6.09.tbd,libz.tbd
when I add them in xcode the build will error,remove them just ok,then add them in this way:
B4X:
//~dependson:libstdc++6.09.tbd
the B4I builder will throw error with not found
B4X:
ld: library not found for -lstdc++6.09
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I found two mistake and fix them
1.If the framework is an external framework then you need to add .3:
2.lib name wrong,change libstdc++6.09.tbd to libstdc++.6.0.9.tbd