diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-23 08:59:07 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-23 08:59:07 +0200 |
commit | de490253feec1cad9de2a92ed9a85a8eecaca0eb (patch) | |
tree | a2c94002d0ba9b23da7355de17dac365545dda4b | |
parent | f2f6727984f6a0f5c73c13f13afdaafcbd267fcc (diff) | |
parent | 896b003cc8ac1827ae4f4678ca1bcaa2ce42f24e (diff) | |
download | redot-engine-de490253feec1cad9de2a92ed9a85a8eecaca0eb.tar.gz |
Merge pull request #92124 from Repiteo/scons/platform-flags-dict
SCons: Convert platform `get_flags` to dictionary
-rw-r--r-- | SConstruct | 8 | ||||
-rw-r--r-- | platform/android/detect.py | 10 | ||||
-rw-r--r-- | platform/ios/detect.py | 14 | ||||
-rw-r--r-- | platform/linuxbsd/detect.py | 8 | ||||
-rw-r--r-- | platform/macos/detect.py | 10 | ||||
-rw-r--r-- | platform/web/detect.py | 16 | ||||
-rw-r--r-- | platform/windows/detect.py | 8 |
7 files changed, 38 insertions, 36 deletions
diff --git a/SConstruct b/SConstruct index 7e51ef4fc4..6fa3e00325 100644 --- a/SConstruct +++ b/SConstruct @@ -122,6 +122,8 @@ for x in sorted(glob.glob("platform/*")): platform_list += [x] platform_opts[x] = detect.get_opts() platform_flags[x] = detect.get_flags() + if isinstance(platform_flags[x], list): # backwards compatibility + platform_flags[x] = {flag[0]: flag[1] for flag in platform_flags[x]} sys.path.remove(tmppath) sys.modules.pop("detect") @@ -569,9 +571,9 @@ if env["build_profile"] != "": # Platform specific flags. # These can sometimes override default options. flag_list = platform_flags[env["platform"]] -for f in flag_list: - if f[0] not in ARGUMENTS or ARGUMENTS[f[0]] == "auto": # Allow command line to override platform flags - env[f[0]] = f[1] +for key, value in flag_list.items(): + if key not in ARGUMENTS or ARGUMENTS[key] == "auto": # Allow command line to override platform flags + env[key] = value # 'dev_mode' and 'production' are aliases to set default options if they haven't been # set manually by the user. diff --git a/platform/android/detect.py b/platform/android/detect.py index 485f31dee2..ed0ceb5862 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -67,11 +67,11 @@ def get_min_target_api(): def get_flags(): - return [ - ("arch", "arm64"), # Default for convenience. - ("target", "template_debug"), - ("supported", ["mono"]), - ] + return { + "arch": "arm64", # Default for convenience. + "target": "template_debug", + "supported": ["mono"], + } # Check if Android NDK version is installed diff --git a/platform/ios/detect.py b/platform/ios/detect.py index eb233a5d54..35e1b9cd6d 100644 --- a/platform/ios/detect.py +++ b/platform/ios/detect.py @@ -47,13 +47,13 @@ def get_doc_path(): def get_flags(): - return [ - ("arch", "arm64"), # Default for convenience. - ("target", "template_debug"), - ("use_volk", False), - ("supported", ["mono"]), - ("builtin_pcre2_with_jit", False), - ] + return { + "arch": "arm64", # Default for convenience. + "target": "template_debug", + "use_volk": False, + "supported": ["mono"], + "builtin_pcre2_with_jit": False, + } def configure(env: "SConsEnvironment"): diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 28825038ca..303a88ab26 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -65,10 +65,10 @@ def get_doc_path(): def get_flags(): - return [ - ("arch", detect_arch()), - ("supported", ["mono"]), - ] + return { + "arch": detect_arch(), + "supported": ["mono"], + } def configure(env: "SConsEnvironment"): diff --git a/platform/macos/detect.py b/platform/macos/detect.py index f02f693dd9..70cb00c6ff 100644 --- a/platform/macos/detect.py +++ b/platform/macos/detect.py @@ -53,11 +53,11 @@ def get_doc_path(): def get_flags(): - return [ - ("arch", detect_arch()), - ("use_volk", False), - ("supported", ["mono"]), - ] + return { + "arch": detect_arch(), + "use_volk": False, + "supported": ["mono"], + } def configure(env: "SConsEnvironment"): diff --git a/platform/web/detect.py b/platform/web/detect.py index 524ff44f4d..3df8cbad7c 100644 --- a/platform/web/detect.py +++ b/platform/web/detect.py @@ -65,21 +65,21 @@ def get_doc_path(): def get_flags(): - return [ - ("arch", "wasm32"), - ("target", "template_debug"), - ("builtin_pcre2_with_jit", False), - ("vulkan", False), + return { + "arch": "wasm32", + "target": "template_debug", + "builtin_pcre2_with_jit": False, + "vulkan": False, # Embree is heavy and requires too much memory (GH-70621). - ("module_raycast_enabled", False), + "module_raycast_enabled": False, # Use -Os to prioritize optimizing for reduced file size. This is # particularly valuable for the web platform because it directly # decreases download time. # -Os reduces file size by around 5 MiB over -O3. -Oz only saves about # 100 KiB over -Os, which does not justify the negative impact on # run-time performance. - ("optimize", "size"), - ] + "optimize": "size", + } def configure(env: "SConsEnvironment"): diff --git a/platform/windows/detect.py b/platform/windows/detect.py index b66cdadc41..0d3e9c606e 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -248,10 +248,10 @@ def get_doc_path(): def get_flags(): arch = detect_build_env_arch() or detect_arch() - return [ - ("arch", arch), - ("supported", ["mono"]), - ] + return { + "arch": arch, + "supported": ["mono"], + } def build_res_file(target, source, env: "SConsEnvironment"): |