2021-07-29 04:35:04 +00:00
|
|
|
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
|
|
|
|
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer -flto
|
|
|
|
APP_LDFLAGS := -flto
|
2022-01-30 15:11:51 +00:00
|
|
|
APP_CPPFLAGS := -std=c++20
|
2021-07-29 04:35:04 +00:00
|
|
|
APP_STL := none
|
2021-10-20 10:17:42 +00:00
|
|
|
APP_PLATFORM := android-21
|
2021-07-29 04:35:04 +00:00
|
|
|
APP_THIN_ARCHIVE := true
|
|
|
|
APP_STRIP_MODE := --strip-all
|
2018-09-28 06:05:55 +00:00
|
|
|
|
2022-01-30 15:11:51 +00:00
|
|
|
ifndef B_SHARED
|
|
|
|
# Fix static variables' ctor/dtor when using LTO
|
|
|
|
# See: https://github.com/android/ndk/issues/1461
|
|
|
|
APP_LDFLAGS += -T jni/lto_fix.lds
|
2021-10-20 10:17:42 +00:00
|
|
|
endif
|
|
|
|
|
2021-05-08 23:45:24 +00:00
|
|
|
# Busybox should use stock libc.a
|
2018-08-11 10:46:55 +00:00
|
|
|
ifdef B_BB
|
2022-01-30 15:11:51 +00:00
|
|
|
APP_PLATFORM := android-24
|
2021-09-23 09:31:42 +00:00
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
APP_SHORT_COMMANDS := true
|
|
|
|
endif
|
2018-05-12 21:22:46 +00:00
|
|
|
endif
|