diff options
author | Bioblaze Payne <BioblazePayne@gmail.com> | 2024-10-05 19:41:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-05 19:41:58 -0700 |
commit | d7acc238d0c85ecc51fab16a0fd9475637f12af0 (patch) | |
tree | 65977d5f1d61ec79b869199fabfcd86b12cadc2a /platform/ios/detect.py | |
parent | 01acc791d7811ed06973f136e3bd227e60d6b117 (diff) | |
parent | db66bd35af704fe0d83ba9348b8c50a48e51b2ba (diff) | |
download | redot-engine-d7acc238d0c85ecc51fab16a0fd9475637f12af0.tar.gz |
Merge pull request #185 from godotengine/master
Merge from Godot
Diffstat (limited to 'platform/ios/detect.py')
-rw-r--r-- | platform/ios/detect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/detect.py b/platform/ios/detect.py index 989a7f21f3..20a3a996bc 100644 --- a/platform/ios/detect.py +++ b/platform/ios/detect.py @@ -2,7 +2,7 @@ import os import sys from typing import TYPE_CHECKING -from methods import detect_darwin_sdk_path, print_error +from methods import detect_darwin_sdk_path, print_error, print_warning if TYPE_CHECKING: from SCons.Script.SConscript import SConsEnvironment @@ -156,7 +156,7 @@ def configure(env: "SConsEnvironment"): env.Append(CPPDEFINES=["IOS_ENABLED", "UNIX_ENABLED", "COREAUDIO_ENABLED"]) if env["metal"] and env["arch"] != "arm64": - # Only supported on arm64, so skip it for x86_64 builds. + print_warning("Target architecture '{}' does not support the Metal rendering driver".format(env["arch"])) env["metal"] = False if env["metal"]: |