Commit dac22cb7 by Keren Zhou Committed by Tianqi Chen

Update Application.mk (#1483)

Fix application crash problems on armv7a architectures
parent 5bd4afee
...@@ -11,7 +11,7 @@ include $(config) ...@@ -11,7 +11,7 @@ include $(config)
# We target every architecture except armeabi here, for two reasons: # We target every architecture except armeabi here, for two reasons:
# 1) armeabi is deprecated in NDK r16 and removed in r17 # 1) armeabi is deprecated in NDK r16 and removed in r17
# 2) vulkan is not supported in armeabi # 2) vulkan is not supported in armeabi
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64 mips APP_ABI ?= armeabi-v7a arm64-v8a x86 x86_64 mips
APP_STL := c++_static APP_STL := c++_static
APP_CPPFLAGS += -DDMLC_LOG_STACK_TRACE=0 -DTVM4J_ANDROID=1 -std=c++11 -Oz -frtti APP_CPPFLAGS += -DDMLC_LOG_STACK_TRACE=0 -DTVM4J_ANDROID=1 -std=c++11 -Oz -frtti
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment