makefile打印变量的值

$(warning $(XXX)) 打印变量的值

1,使用info/warning/error增加调试信息
方法1: $(info, “here add the debug info”)
但是此不能打印出.mk的行号

方法2: $(warning “here add the debug info”)

方法3: $(error “error: this will stop the compile”)
这个可以停止当前makefile的编译

方法4: 打印变量的值
$(info $(TARGET_DEVICE) )
[图片]

2,使用echo增加调试信息(echo只能在target:后面的语句中使用,且前面是个TAB)
方法1: @echo “start the compilexxxxxxxxxxxxxxxxxxxxxxx”

方法2: @echo $(files)

作者:as520213211314
来源:CSDN
原文:https://blog.csdn.net/as520213211314/article/details/78190224
版权声明:本文为博主原创文章,转载请附上博文链接!

猜你喜欢

转载自blog.csdn.net/whereisdog/article/details/83304482
今日推荐