2022-07-23 13:51:56 -07:00
|
|
|
APP_BUILD_SCRIPT := src/Android.mk
|
2024-07-31 16:57:30 -07:00
|
|
|
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer
|
2024-06-09 16:33:24 +08:00
|
|
|
APP_CPPFLAGS := -std=c++23
|
2021-07-29 12:35:04 +08:00
|
|
|
APP_STL := none
|
2024-02-25 22:11:34 -08:00
|
|
|
APP_PLATFORM := android-23
|
2021-07-29 12:35:04 +08:00
|
|
|
APP_THIN_ARCHIVE := true
|
2022-09-14 22:59:12 +08:00
|
|
|
APP_STRIP_MODE := none
|
2024-06-18 22:04:53 -07:00
|
|
|
APP_SUPPORT_FLEXIBLE_PAGE_SIZES := true
|
2018-09-28 02:05:55 -04:00
|
|
|
|
2024-07-31 16:57:30 -07:00
|
|
|
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
|
|
|
|
|
2024-02-24 22:32:22 -08:00
|
|
|
ifdef B_CRT0
|
2024-02-22 16:50:18 -08:00
|
|
|
|
|
|
|
# Disable all security and debugging features
|
2024-08-08 18:20:02 +08:00
|
|
|
APP_CFLAGS += -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-stack-protector -fno-threadsafe-statics -U_FORTIFY_SOURCE
|
2024-02-22 16:50:18 -08:00
|
|
|
# Override output folder to make sure all dependencies are rebuilt with new CFLAGS
|
2024-07-31 16:57:30 -07:00
|
|
|
NDK_APP_OUT := $(NDK_APP_OUT)-nolibc
|
2024-02-22 16:50:18 -08:00
|
|
|
|
|
|
|
endif
|