makefile 列印變數的值

2021-08-09 03:51:33 字數 478 閱讀 7798



$(warning  $(***))   列印變數的值

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 compile*********************xx"

方法2: @echo $(files)

Makefile 列印變數的值

warning 列印變數的值 1,使用info warning error增加除錯資訊 方法1 info,here add the debug info 但是此不能列印出.mk的行號 方法2 warning here add the debug info 方法3 error error this w...

Makefile列印變數值

makefile第二講 列印出內容和使用變數 摘要 echo 開始生成最終執行檔案,請稍候.這一句便是將一條資訊輸出到終端,為何前邊有個 符號呢?有了這個符號該命令本身就不會輸出到終端 不理解,自己去掉或者加上 符號試試 實驗證明,字串可以不加引號。看到 objs main.o 了嗎?這就是變數的定...

Tensorflow列印變數的值

用tf.print 函式 tf.print input data,message none,first n none,summarize none,name none 列印張量列表 輸入 input 通過此op的乙個tensor.即輸入tf.print 中的資料 data 當此op被計算之後列印輸出...