I am compiling my HaXe project with lime for iOS and compiling for 6 separate architectures takes ~20 minutes with bitcode enabled.
Is there any way I can specify in the build.xml I just want it to compile for one architecture (the one I actually use for testing)?
Best, Margus
If you use <architecture name="armv7a" /> or other <architecture /> tags, I believe it will use those values rather than the default. I don’t believe we compile for six architectures, though – I think it is armv7 and arm64 for an iOS device build
<architecture name="armv7a" />
<architecture />