Makefile中的调试打印方法
·
使用info/warning/error增加调试信息
info
$(info “here add the debug info”)
注,info信息,不打印信息所在行号
warning
$(warning “here add the debug info”)
error
$(error “error: this will stop the compile”)
这个可以停止当前makefile的编译
打印变量的值
$(info $(TARGET_DEVICE) )
使用echo增加调试信息
注:echo只能在target:后面的语句中使用,且前面是个TAB,
形式如下:
- @echo “start the compilexxxxxxxxxxxxxxxxxxxxxxx”
- @echo $(files)
参考并修正:Makefile中的几个调试方法
更多推荐
已为社区贡献4条内容
所有评论(0)