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