Merge pull request #89598 from dustdfg/web/fix-supported-arch-message

Fix platform name in the message about unsupported CPU architecture
This commit is contained in:
Rémi Verschelde 2024-03-24 01:19:06 +01:00
commit aa0e57e00c
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -86,7 +86,7 @@ def configure(env: "SConsEnvironment"):
supported_arches = ["wasm32"]
if env["arch"] not in supported_arches:
print(
'Unsupported CPU architecture "%s" for iOS. Supported architectures are: %s.'
'Unsupported CPU architecture "%s" for Web. Supported architectures are: %s.'
% (env["arch"], ", ".join(supported_arches))
)
sys.exit()