summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SConstruct4
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 58b501b..dfd237f 100644
--- a/SConstruct
+++ b/SConstruct
@@ -57,6 +57,10 @@ if env["godot_version"] == "3":
if env["platform"] == "osx":
env["platform"] = "macos" # compatibility with old osx name
ARGUMENTS["platform"] = "macos"
+ env["CC"] = "clang" # CC is not set in 3.x and can result in it being "gcc".
+
+ if env["platform"] == "ios":
+ env["ios_min_version"] = "11.0"
# Normalize suffix
if env["platform"] in ["windows", "linux"]: