Commit b127e018 authored by topjohnwu's avatar topjohnwu

Simplify debug flag propagation

parent 2118beeb
......@@ -173,8 +173,9 @@ def build_binary(args):
os.utime(os.path.join('native', 'jni', 'include', 'flags.h'))
# Basic flags
base_flags = 'MAGISK_VERSION=\"{}\" MAGISK_VER_CODE={} MAGISK_DEBUG={}'.format(config['version'], config['versionCode'],
'' if args.release else '-DMAGISK_DEBUG')
base_flags = 'MAGISK_VERSION=\"{}\" MAGISK_VER_CODE={}'.format(config['version'], config['versionCode'])
if not args.release:
base_flags += ' MAGISK_DEBUG=1'
if 'magisk' in args.target:
# Magisk is special case as it is a dependency of magiskinit
......
......@@ -14,8 +14,7 @@ android {
externalNativeBuild {
ndkBuild {
// Pass arguments to ndk-build.
arguments('B_MAGISK=1', 'B_INIT=1', 'B_BOOT=1', 'B_BXZ=1',
'MAGISK_DEBUG=-DMAGISK_DEBUG')
arguments('B_MAGISK=1', 'B_INIT=1', 'B_BOOT=1', 'B_BXZ=1', 'MAGISK_DEBUG=1')
}
}
}
......
APP_ABI := armeabi-v7a x86
APP_CFLAGS := -std=gnu11 ${MAGISK_DEBUG} \
-DMAGISK_VERSION="${MAGISK_VERSION}" -DMAGISK_VER_CODE=${MAGISK_VER_CODE}
APP_CFLAGS := -std=gnu11 -DMAGISK_VERSION="${MAGISK_VERSION}" -DMAGISK_VER_CODE=${MAGISK_VER_CODE}
APP_CPPFLAGS := -std=c++14
APP_STL := system
APP_PLATFORM := android-16
ifdef MAGISK_DEBUG
APP_CFLAGS += -DMAGISK_DEBUG
endif
# Busybox require some additional settings
ifdef B_BB
APP_SHORT_COMMANDS := true
......
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