mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-22 07:57:39 +00:00
ef81cdab4f
Prebuild with tools in ndk-box-kitchen
20 lines
664 B
Makefile
20 lines
664 B
Makefile
APP_BUILD_SCRIPT := src/Android.mk
|
|
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64 riscv64
|
|
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer -flto
|
|
APP_LDFLAGS := -flto -Wl,--icf=all
|
|
APP_CPPFLAGS := -std=c++23
|
|
APP_STL := none
|
|
APP_PLATFORM := android-23
|
|
APP_THIN_ARCHIVE := true
|
|
APP_STRIP_MODE := none
|
|
APP_SUPPORT_FLEXIBLE_PAGE_SIZES := true
|
|
|
|
ifdef B_CRT0
|
|
|
|
# Disable all security and debugging features
|
|
APP_CFLAGS += -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-stack-protector -U_FORTIFY_SOURCE
|
|
# Override output folder to make sure all dependencies are rebuilt with new CFLAGS
|
|
NDK_APP_OUT := ./obj/nolibc
|
|
|
|
endif
|