Magisk/native/jni/Application.mk

17 lines
373 B
Makefile
Raw Normal View History

2021-05-13 07:21:04 +00:00
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
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
2021-03-25 08:00:10 +00:00
APP_STL := none
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
2021-05-08 23:45:24 +00:00
# Busybox should use stock libc.a
ifdef B_BB
2021-05-08 23:45:24 +00:00
APP_PLATFORM := android-22
endif