diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-16 16:56:07 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-16 16:56:07 +0200 |
commit | c3fd8752d2f6e70e4553293a831e6e337cd2361e (patch) | |
tree | 146c2256a5504b6bb7f3a1b906c301aa2ec8122a /platform/android/detect.py | |
parent | acc965c09c5f85d747dfcd4bfe7b88a621da92ef (diff) | |
parent | 3907e53ff68643785df0066be64fddce9f79919c (diff) | |
download | redot-engine-c3fd8752d2f6e70e4553293a831e6e337cd2361e.tar.gz |
Merge pull request #80612 from akien-mga/scons-disable-exception-handling
SCons: Disable C++ exception handling
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 2860898e5c..33c6565789 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -170,10 +170,6 @@ def configure(env: "Environment"): env["RANLIB"] = compiler_path + "/llvm-ranlib" env["AS"] = compiler_path + "/clang" - # Disable exceptions on template builds - if not env.editor_build: - env.Append(CXXFLAGS=["-fno-exceptions"]) - env.Append( CCFLAGS=( "-fpic -ffunction-sections -funwind-tables -fstack-protector-strong -fvisibility=hidden -fno-strict-aliasing".split() |