Magisk/native/jni/Application.mk

17 lines
373 B
Makefile
Raw Normal View History

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