Is there any way to use conditional expressions in Android.mk? I need it to do smth like this:
IF arch = AREABI_V7
*use path for my arm_v7 static libs*
ELSE
*use path for arm static libs*
Is there any way to use conditional expressions in Android.mk? I need it to do smth like this:
IF arch = AREABI_V7
*use path for my arm_v7 static libs*
ELSE
*use path for arm static libs*
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
...
else
ifeq($(TARGET_ARCH_ABI),armeabi)
...
endif
endif
© 2022 - 2024 — McMap. All rights reserved.
ifeq
before the(
. The build system errors on that. – Floaty