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
|
2018-07-12 21:41:29 +00:00
|
|
|
APP_PLATFORM := android-16
|
2018-08-11 10:46:55 +00:00
|
|
|
|
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
|
|
|
|
|
2018-08-11 10:46:55 +00:00
|
|
|
# Busybox require some additional settings
|
|
|
|
ifdef B_BB
|
2018-12-04 00:43:02 +00:00
|
|
|
APP_CFLAGS := -Os
|
2018-08-11 10:46:55 +00:00
|
|
|
APP_SHORT_COMMANDS := true
|
|
|
|
NDK_TOOLCHAIN_VERSION := 4.9
|
2018-12-04 07:08:51 +00:00
|
|
|
APP_PLATFORM := android-22
|
2018-05-12 21:22:46 +00:00
|
|
|
endif
|