Magisk/native/jni/Application.mk

19 lines
402 B
Makefile
Raw Normal View History

2018-07-13 14:14:32 +00:00
APP_ABI := armeabi-v7a x86
2018-12-04 00:43:02 +00:00
APP_CFLAGS := -Oz -std=gnu11 \
2019-02-12 10:17:02 +00:00
-D__MVSTR=${MAGISK_VERSION} -D__MCODE=${MAGISK_VER_CODE}
2019-01-20 05:07:58 +00:00
APP_CPPFLAGS := -std=c++17
2019-01-19 18:47:33 +00:00
APP_STL := c++_static
APP_PLATFORM := android-16
2018-09-28 06:05:55 +00:00
ifdef MAGISK_DEBUG
2019-02-12 10:17:02 +00:00
APP_CFLAGS += -D__MDBG
2018-09-28 06:05:55 +00:00
endif
# Busybox require some additional settings
ifdef B_BB
2018-12-04 00:43:02 +00:00
APP_CFLAGS := -Os
APP_SHORT_COMMANDS := true
NDK_TOOLCHAIN_VERSION := 4.9
2018-12-04 07:08:51 +00:00
APP_PLATFORM := android-22
endif