xcode - How to compile for all OS X architectures from the command line? -
i build portable c program gcc
, make
. on os x want include os x architectures local compiler supports. if specify:
gcc -arch x86_64 -arch i386 -arch ppc -arch ppc64 ...
the build fails on new xcode, ppc
, ppc64
not supported.
how pick architectures xcode on build machine supports?
Comments
Post a Comment