Magisk/native/jni/Application.mk

22 lines
429 B
Makefile
Raw Normal View History

2018-07-13 16:14:32 +02:00
APP_ABI := armeabi-v7a x86
2019-04-30 03:26:43 +02:00
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer -flto \
2019-02-12 11:17:02 +01:00
-D__MVSTR=${MAGISK_VERSION} -D__MCODE=${MAGISK_VER_CODE}
APP_LDFLAGS := -flto
2019-01-20 06:07:58 +01:00
APP_CPPFLAGS := -std=c++17
2021-03-25 09:00:10 +01:00
APP_STL := none
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
2019-04-05 21:17:57 +02:00
# Build 64 bit binaries
ifdef B_64BIT
APP_ABI += arm64-v8a x86_64
endif
2021-05-09 01:45:24 +02:00
# Busybox should use stock libc.a
ifdef B_BB
2021-05-09 01:45:24 +02:00
APP_PLATFORM := android-22
endif