I\'m trying to print some extra info when in compile a library using ndk-build.
For example:
LOCAL_PATH := $(call my-dir)
all:;echo $(LOCAL_PATH)
echo: $
The following displays are available in Android.mk:
Here below some samples:
$(error this is the error message that will stop the build process)
$(warning this the warning msg)
$(info this the info msg)
The more correct function to call is "$(info ...)" :
LOCAL_PATH := $(call my-dir)
$(info $(LOCAL_PATH))
Use
LOCAL_PATH := $(call my-dir)
$(warning $(LOCAL_PATH))