1. 程式人生 > >makefile列印變數的值

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
版權宣告:本文為博主原創文章,轉載請附上博文連結!