mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 16:20:11 -04:00
makepanda: accept arm64 as alias for aarch64 when building for Android
This commit is contained in:
parent
35b7ef0dcb
commit
5c98c6fb71
@ -393,6 +393,9 @@ def SetTarget(target, arch=None):
|
|||||||
else:
|
else:
|
||||||
arch = 'armv7a'
|
arch = 'armv7a'
|
||||||
|
|
||||||
|
if arch == 'arm64':
|
||||||
|
arch = 'aarch64'
|
||||||
|
|
||||||
# Did we specify an API level?
|
# Did we specify an API level?
|
||||||
global ANDROID_API
|
global ANDROID_API
|
||||||
target, _, api = target.partition('-')
|
target, _, api = target.partition('-')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user