Magisk/native/jni/Application.mk

22 lines
444 B
Makefile
Raw Normal View History

2018-07-13 22:14:32 +08:00
APP_ABI := armeabi-v7a x86
2019-04-29 21:26:43 -04:00
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer -flto \
2019-02-12 05:17:02 -05:00
-D__MVSTR=${MAGISK_VERSION} -D__MCODE=${MAGISK_VER_CODE}
APP_LDFLAGS := -flto
2019-01-20 00:07:58 -05:00
APP_CPPFLAGS := -std=c++17
2019-01-19 13:47:33 -05:00
APP_STL := c++_static
APP_PLATFORM := android-16
2018-09-28 02:05:55 -04:00
ifdef MAGISK_DEBUG
2019-02-12 05:17:02 -05:00
APP_CFLAGS += -D__MDBG
2018-09-28 02:05:55 -04:00
endif
2019-04-05 15:17:57 -04:00
# Build 64 bit binaries
ifdef B_64BIT
APP_ABI += arm64-v8a x86_64
endif
# Busybox require some additional settings
ifdef B_BB
APP_PLATFORM := android-21
endif