Commit 76f06026 authored by vvb2060's avatar vvb2060 Committed by John Wu

Make busybox cflag stable

parent 477ff12c
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64 APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
APP_CFLAGS := -Wall -Oz -fomit-frame-pointer -flto \ APP_CFLAGS := -Wall -Oz -fomit-frame-pointer -flto
-D__MVSTR=${MAGISK_VERSION} -D__MCODE=${MAGISK_VER_CODE} APP_LDFLAGS := -flto
APP_LDFLAGS := -flto APP_CPPFLAGS := -std=c++17
APP_CPPFLAGS := -std=c++17 APP_STL := none
APP_STL := none APP_PLATFORM := android-16
APP_PLATFORM := android-16 APP_THIN_ARCHIVE := true
APP_STRIP_MODE := --strip-all
ifdef MAGISK_DEBUG
APP_CFLAGS += -D__MDBG
endif
# Busybox should use stock libc.a # Busybox should use stock libc.a
ifdef B_BB ifdef B_BB
APP_PLATFORM := android-22 APP_PLATFORM := android-22
else
# Make Busybox cflag stable
APP_CFLAGS += -D__MVSTR=${MAGISK_VERSION} -D__MCODE=${MAGISK_VER_CODE}
ifdef MAGISK_DEBUG
APP_CFLAGS += -D__MDBG
endif
endif endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment