1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

Don't copying libc++_shared.so when module android_stl is disabled

This commit is contained in:
allkhor
2018-10-26 23:53:44 +06:00
parent 9b7009bbc1
commit 52c63f7cfd
2 changed files with 4 additions and 3 deletions

View File

@@ -178,7 +178,7 @@ def configure(env):
common_opts = ['-fno-integrated-as', '-gcc-toolchain', gcc_toolchain_path]
if env['android_stl']:
if env['android_stl'] == 'yes':
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=['-frtti',"-std=gnu++14"])