We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06ee1d1 commit 051ab7fCopy full SHA for 051ab7f
tools/build/platform/godotcpp.py
@@ -406,9 +406,9 @@ def generate(env):
406
# No architecture specified. Default to arm64 if building for Android,
407
# universal if building for macOS or iOS, wasm32 if building for web,
408
# otherwise default to the host architecture.
409
- # if env["platform"] in ["macos", "ios"]:
410
- # env["arch"] = "universal"
411
- if env["platform"] == "android":
+ if env["platform"] in ["macos", "ios"]:
+ env["arch"] = "universal"
+ elif env["platform"] == "android":
412
env["arch"] = "arm64"
413
elif env["platform"] == "web":
414
env["arch"] = "wasm32"
0 commit comments