2022-07-23 13:51:56 -07:00
|
|
|
APP_BUILD_SCRIPT := src/Android.mk
|
2021-07-29 12:35:04 +08:00
|
|
|
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
|
|
|
|
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer -flto
|
|
|
|
APP_LDFLAGS := -flto
|
2022-01-30 07:11:51 -08:00
|
|
|
APP_CPPFLAGS := -std=c++20
|
2021-07-29 12:35:04 +08:00
|
|
|
APP_STL := none
|
2024-02-22 16:50:18 -08:00
|
|
|
APP_PLATFORM := android-26
|
2021-07-29 12:35:04 +08:00
|
|
|
APP_THIN_ARCHIVE := true
|
2022-09-14 22:59:12 +08:00
|
|
|
APP_STRIP_MODE := none
|
2018-09-28 02:05:55 -04:00
|
|
|
|
2024-02-22 16:50:18 -08:00
|
|
|
# magiskinit uses crt0
|
|
|
|
ifdef B_INIT
|
|
|
|
|
|
|
|
# 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/init
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2021-05-08 16:45:24 -07:00
|
|
|
# Busybox should use stock libc.a
|
2018-08-11 18:46:55 +08:00
|
|
|
ifdef B_BB
|
2022-08-19 16:26:25 -07:00
|
|
|
APP_PLATFORM := android-26
|
2022-07-23 13:51:56 -07:00
|
|
|
APP_LDFLAGS += -T src/lto_fix.lds
|
2021-09-23 02:31:42 -07:00
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
APP_SHORT_COMMANDS := true
|
|
|
|
endif
|
2018-05-13 05:22:46 +08:00
|
|
|
endif
|