Magisk/native/jni/Application.mk

23 lines
471 B
Makefile
Raw Normal View History

2018-07-13 14:14:32 +00:00
APP_ABI := armeabi-v7a x86
2019-04-30 01:26:43 +00:00
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer -flto \
2019-02-12 10:17:02 +00:00
-D__MVSTR=${MAGISK_VERSION} -D__MCODE=${MAGISK_VER_CODE}
APP_LDFLAGS := -flto
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
2019-04-05 19:17:57 +00:00
# Build 64 bit binaries
ifdef B_64BIT
APP_ABI += arm64-v8a x86_64
endif
# Busybox require some additional settings
ifdef B_BB
2020-01-23 11:59:10 +00:00
APP_SHORT_COMMANDS := true
APP_PLATFORM := android-21
endif