j2objcc -I . -I ../Quando_LibHeaders -c -fobjc-abi-version=2 -fobjc-legacy-dispatch -fobjc-arc `find . -name *.m`
--
You received this message because you are subscribed to the Google Groups "j2objc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to j2objc-discus...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
For the record, if you are building j2objc from source, you can speed it up by defining J2OBJC_ARCHS in your environment to specify the architectures you care about. See https://github.com/google/j2objc/blob/master/make/common.mk#L39On Wed, 2 Sep 2015 at 09:30 Daniel Zlotin <zlotin...@gmail.com> wrote:For helpful reference:1.Are there any side effects for not building for armv7s? I mean can we still run on iPhone5(2012) and iPad(2012)? I will love to see the speed of the build script improved :)
And if we are already on the subject:Checking my build script (taken from j2objc source), I see I build with these -arch flags: armv7, arm64, armv7s, i386, and another one without -arch flag.
2. As I lazily copied this, what is this last arch with the -arch flag? specifically this line compiles to what architecture?:j2objcc -I . -I ../Quando_LibHeaders -c -fobjc-abi-version=2 -fobjc-legacy-dispatch -fobjc-arc `find . -name *.m`
3. Should I replace the i386 with x86_64? will it make any difference?
Tom, can you explain more about why you need to separate out the Mac OS X build? Presumably that'll affect the plugin as well.
Now I having second thoughts about whether we should keep the i386 build... Also I can imagine a lot of this changing again with Bitcode.