您的位置:首页 > 运维架构 > Linux

Makefile中的几个调试方法

2016-03-24 22:29 447 查看
转载自:http://blog.csdn.net/wlqingwei/article/details/44459139

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)

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  linux makefile