summaryrefslogtreecommitdiffstats
path: root/platform/android/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-08-16 16:56:07 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-08-16 16:56:07 +0200
commitc3fd8752d2f6e70e4553293a831e6e337cd2361e (patch)
tree146c2256a5504b6bb7f3a1b906c301aa2ec8122a /platform/android/detect.py
parentacc965c09c5f85d747dfcd4bfe7b88a621da92ef (diff)
parent3907e53ff68643785df0066be64fddce9f79919c (diff)
downloadredot-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.py4
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()