aboutsummaryrefslogtreecommitdiff
path: root/build/android/jni/Deps.mk
diff options
context:
space:
mode:
authorstujones11 <stujones111@gmail.com>2017-12-06 20:36:29 +0000
committerLoic Blot <loic.blot@unix-experience.fr>2018-03-11 16:56:27 +0100
commit22a891a925d68a096420d3383a2e31b58e3eb244 (patch)
tree21de815d25b2f9727aa019f063566426d265fa74 /build/android/jni/Deps.mk
parent69247ca2233d1b2e77485b8d32aca41c7e525e74 (diff)
downloadhax-minetest-server-22a891a925d68a096420d3383a2e31b58e3eb244.tar.gz
hax-minetest-server-22a891a925d68a096420d3383a2e31b58e3eb244.zip
Android build fixes for c++11
Diffstat (limited to 'build/android/jni/Deps.mk')
-rw-r--r--build/android/jni/Deps.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/android/jni/Deps.mk b/build/android/jni/Deps.mk
index cc6e56747..0d007b438 100644
--- a/build/android/jni/Deps.mk
+++ b/build/android/jni/Deps.mk
@@ -4,5 +4,5 @@ APP_STL := c++_shared
NDK_TOOLCHAIN_VERSION := ${COMPILER_VERSION}
APP_DEPRECATED_HEADERS := true
-APP_CLAFGS += -mfloat-abi=softfp -mfpu=vfpv3 -O3
-APP_CPPFLAGS += -fexceptions
+APP_CLAFGS += ${TARGET_CFLAGS_ADDON}
+APP_CPPFLAGS += ${TARGET_CXXFLAGS_ADDON} -fexceptions -std=c++11