diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-04 16:22:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 16:22:16 +0100 |
commit | 080b5df6256a368fcd767aec96dd2200194542c8 (patch) | |
tree | f88d30512dc11ea7ee82f0f9bc131ea7bdc0d444 /platform/android/detect.py | |
parent | a0e33e17fbecc321d45306255814f9581504776c (diff) | |
parent | ed0655cdfb64b1259042f6f28654e768420d4f38 (diff) | |
download | redot-engine-080b5df6256a368fcd767aec96dd2200194542c8.tar.gz |
Merge pull request #36682 from nekomatata/android-compilation-fix
Compilation fixes on Android
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index 8b62360888..8f74ae0ef0 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -205,7 +205,6 @@ def configure(env): env.Append(CPPFLAGS=["-isystem", env["ANDROID_NDK_ROOT"] + "/sources/cxx-stl/llvm-libc++/include"]) env.Append(CPPFLAGS=["-isystem", env["ANDROID_NDK_ROOT"] + "/sources/cxx-stl/llvm-libc++abi/include"]) - env.Append(CXXFLAGS=["-std=gnu++14"]) # Disable exceptions and rtti on non-tools (template) builds if env['tools']: |