mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-26 12:51:51 -08:00
NDK 28 enable 16 KiB page size compatibility option by default, delete the global option to restore 4k alignment for 32-bit arch.
31 lines
783 B
Makefile
31 lines
783 B
Makefile
APP_BUILD_SCRIPT := src/Android.mk
|
|
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer
|
|
APP_CPPFLAGS := -std=c++23
|
|
APP_STL := none
|
|
APP_PLATFORM := android-23
|
|
APP_THIN_ARCHIVE := true
|
|
APP_STRIP_MODE := none
|
|
|
|
ifdef MAGISK_DEBUG
|
|
|
|
NDK_APP_OUT := ./obj/debug
|
|
APP_CFLAGS += -flto=thin -gdwarf-4
|
|
APP_LDFLAGS += -flto=thin
|
|
|
|
else
|
|
|
|
NDK_APP_OUT := ./obj/release
|
|
APP_CFLAGS += -flto
|
|
APP_LDFLAGS += -flto -Wl,--icf=all
|
|
|
|
endif
|
|
|
|
ifdef B_CRT0
|
|
|
|
# Disable all security and debugging features
|
|
APP_CFLAGS += -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-stack-protector -fno-threadsafe-statics -U_FORTIFY_SOURCE
|
|
# Override output folder to make sure all dependencies are rebuilt with new CFLAGS
|
|
NDK_APP_OUT := $(NDK_APP_OUT)-nolibc
|
|
|
|
endif
|