如何在Makefile輸出調試信息


方法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) )

來源

https://zhidao.baidu.com/question/987891812393707339.html
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章