Development environment-add printing in Makefile

Sometimes we modify the Makefile file, or after reconfiguring the menuconfig, the compilation does not generate the desired file

Is there a problem in the compilation process?

Then add a print!

 

In the Makefile, you can use warning to output print information:

 
#利用warning函数打印消息
$(warning "the value of LOCAL_PATH is$(LOCAL_SRC_FILES)")

 

Guess you like

Origin blog.csdn.net/Ivan804638781/article/details/101273449