亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費注冊 查看新帖 |

Chinaunix

  平臺 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 3575 | 回復: 1
打印 上一主題 下一主題

[其他] Makefile中的$(Q) [復制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報告]
發(fā)表于 2015-08-26 16:45 |只看該作者 |倒序瀏覽
linux 內(nèi)核中arch/arm/boot/dts/Makefile中有如下片段:

# *.dtb used to be generated in the directory above. Clean out the
# old build results so people don't accidentally use them.
dtbs: $(addprefix $(obj)/, $(dtb-y))
    $(Q)rm -f $(obj)/../*.dtb

請問這里的$(Q)是什么作用?

論壇徽章:
20
程序設計版塊每日發(fā)帖之星
日期:2015-08-17 06:20:00程序設計版塊每日發(fā)帖之星
日期:2016-07-16 06:20:00程序設計版塊每日發(fā)帖之星
日期:2016-07-18 06:20:00每日論壇發(fā)貼之星
日期:2016-07-18 06:20:00黑曼巴
日期:2016-12-26 16:00:3215-16賽季CBA聯(lián)賽之江蘇
日期:2017-06-26 11:05:5615-16賽季CBA聯(lián)賽之上海
日期:2017-07-21 18:12:5015-16賽季CBA聯(lián)賽之青島
日期:2017-09-04 17:32:0515-16賽季CBA聯(lián)賽之吉林
日期:2018-03-26 10:02:16程序設計版塊每日發(fā)帖之星
日期:2016-07-15 06:20:0015-16賽季CBA聯(lián)賽之江蘇
日期:2016-07-07 18:37:512015亞冠之薩濟拖拉機
日期:2015-08-17 12:21:08
2 [報告]
發(fā)表于 2015-08-26 20:37 |只看該作者
在源碼樹下的Makefile里有定義
  1. # ---------------------------------------------------------------------------
  2. #
  3. # Normally, we echo the whole command before executing it. By making
  4. # that echo $($(quiet)$(cmd)), we now have the possibility to set
  5. # $(quiet) to choose other forms of output instead, e.g.
  6. #
  7. #         quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
  8. #         cmd_cc_o_c       = $(CC) $(c_flags) -c -o $@ $<
  9. #
  10. # If $(quiet) is empty, the whole command will be printed.
  11. # If it is set to "quiet_", only the short version will be printed.
  12. # If it is set to "silent_", nothing will be printed at all, since
  13. # the variable $(silent_cmd_cc_o_c) doesn't exist.
  14. #
  15. # A simple variant is to prefix commands with $(Q) - that's useful
  16. # for commands that shall be hidden in non-verbose mode.
  17. #
  18. #       $(Q)ln $@ :<
  19. #
  20. # If KBUILD_VERBOSE equals 0 then the above command will be hidden.
  21. # If KBUILD_VERBOSE equals 1 then the above command is displayed.

  22. ifeq ($(KBUILD_VERBOSE),1)
  23.   quiet =
  24.   Q =
  25. else
  26.   quiet=quiet_
  27.   Q = @
  28. endif
復制代碼
您需要登錄后才可以回帖 登錄 | 注冊

本版積分規(guī)則 發(fā)表回復

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報專區(qū)
中國互聯(lián)網(wǎng)協(xié)會會員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP