Magisk/native/jni/Application.mk

19 lines
402 B
Makefile
Raw Normal View History

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
APP_PLATFORM := android-16
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
# Busybox require some additional settings
ifdef B_BB
2018-12-04 01:43:02 +01:00
APP_CFLAGS := -Os
APP_SHORT_COMMANDS := true
NDK_TOOLCHAIN_VERSION := 4.9
2018-12-04 08:08:51 +01:00
APP_PLATFORM := android-22
endif