使用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) )
如何在makefile里面添加打印?
于 2021-07-20 17:02:48 首次发布
本文介绍了在Makefile中使用info/warning/error三种构建宏来增加调试信息的方法,包括info用于添加普通信息,warning显示警告但不阻止编译,error则会中断编译。还提及了如何查看变量值。
摘要由CSDN通过智能技术生成