Magisk/native/jni/Application.mk

15 lines
411 B
Makefile
Raw Normal View History

2018-07-13 16:14:32 +02:00
APP_ABI := armeabi-v7a x86
2018-09-27 09:11:10 +02:00
APP_CFLAGS := -std=gnu11 ${MAGISK_DEBUG} \
-DMAGISK_VERSION="${MAGISK_VERSION}" -DMAGISK_VER_CODE=${MAGISK_VER_CODE}
APP_CPPFLAGS := -std=c++14
APP_STL := system
APP_PLATFORM := android-16
# Busybox require some additional settings
ifdef B_BB
APP_SHORT_COMMANDS := true
NDK_TOOLCHAIN_VERSION := 4.9
APP_PLATFORM := android-21
2018-09-27 09:11:10 +02:00
APP_CFLAGS += -Wno-implicit-function-declaration
endif