ios - How do I change Xcode Valid Architectures via the command line tool? -
i have cordova project, not compatible arm 64 ios processor. know how change valid arch's in xcode, i'm trying continuous integration server setup, , need able set valid arch's via command line.
you can pass environment variable archs
xcodebuild
(assuming that's how you're building). should @ end of command. like:
xcodebuild -scheme <myscheme> -workspace <myworkspace> archs=\$\(archs_standard_32_bit\)
(figured out escaping , updated. might able find escaping format looks better.)
Comments
Post a Comment