APP_BUILD_SCRIPT := src/Android.mk APP_ABI := armeabi-v7a arm64-v8a x86 x86_64 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 # Busybox should use a newer libc.a ifdef B_BB APP_PLATFORM := android-26 ifeq ($(OS),Windows_NT) APP_SHORT_COMMANDS := true endif endif