Closed GoogleCodeExporter closed 9 years ago
Looking in common.gypi there is a behavior change for arch/subarch to default
to arm64
Its not well documented, but you can determine the valid setting from this
snippet:
# Limit the valid architectures depending on "target_subarch".
# This need to include the "arm" architectures but also the "x86"
# ones (they are used when building for the simulator).
['target_subarch=="arm32"', {
'VALID_ARCHS': ['armv7', 'i386'],
}],
['target_subarch=="arm64"', {
'VALID_ARCHS': ['arm64', 'x86_64'],
}],
['target_subarch=="both"', {
'VALID_ARCHS': ['arm64', 'armv7', 'x86_64', 'i386'],
}],
for 32 bit arm
target_arch=armv7
target_subarch=arm32
Original comment by fbarch...@google.com
on 15 Jul 2015 at 6:52
Getting Started updated. Thanks for the report.
Original comment by fbarch...@google.com
on 15 Jul 2015 at 7:01
Original issue reported on code.google.com by
mayurjos...@gmail.com
on 15 Jul 2015 at 10:04