有没有办法在 Android.mk 中使用条件表达式?我需要它来做这样的事情:

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

关于Android.mk 条件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8659126/

10-09 13:41