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
|
|
|
|
APP_CPPFLAGS := -std=c++17
|
|
|
|
APP_STL := none
|
2021-10-20 03:17:42 -07:00
|
|
|
APP_PLATFORM := android-21
|
2021-07-29 12:35:04 +08:00
|
|
|
APP_THIN_ARCHIVE := true
|
|
|
|
APP_STRIP_MODE := --strip-all
|
2018-09-28 02:05:55 -04:00
|
|
|
|
2021-10-20 03:17:42 -07:00
|
|
|
ifneq ($(TARGET_ARCH),arm64)
|
|
|
|
ifneq ($(TARGET_ARCH),x86_64)
|
|
|
|
ifndef B_SHARED
|
|
|
|
# Disable fortify on static 32-bit targets
|
|
|
|
APP_CFLAGS += -D_FORTIFY_SOURCE=0 -Wno-macro-redefined
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
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
|
2021-07-29 12:35:04 +08:00
|
|
|
APP_PLATFORM := android-22
|
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
|