Hello,
we are shipping a static library to other developpers. We want to build it with the bitcode so that the developers can enable bitcode in their apps. The question is, does such a library require XCode 7 to build the app? In other words, if I ship a library compiled with OTHER_CFLAGS='-fembed-bitcode', does it requiere XCode 7 to compile the app using it or will XCode 6 work as well.
I'm trying to compile an app with XCode 6 that links against a static library (built with fembed-bitcode in XCode 7) and I'm getting a lot of linker errors
duplicate symbol _llvm.cmdline in: ... libMyStaticLib-8.0.0
duplicate symbol _llvm.embedded.module in: ... libMyStaticLib-8.0.0
If I compile the app in Xcode 7, it works fine.
What is the problem ?
cheers