shell编程(shell命令使用)

发布于 2025-01-03 13:11:11 字数 161 浏览 1 评论 0原文

  1. PWD=$(shell pwd)

  2. PLAT_NAME ?= Z22

这些语句用作 makefile 的一部分。请解释以下查询 在第一季度。外壳是什么意思? 。这是 shell 命令吗? 在第二季度。 ?= 是什么意思?

  1. PWD=$(shell pwd)

  2. PLAT_NAME ?= Z22

The statements are used as part of makefile. Please explain below query
In Q1. what does the shell mean? . Is this a shell command?
In Q2. what does ?= means?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

脱离于你 2025-01-10 13:11:11

$(shell ...)shell函数,用于执行系统命令。所以$(shell pwd)执行pwd命令。

?= 是条件变量赋值运算符,用于在变量尚未定义时为该变量赋值。具体来说,如果尚未设置 PLAT_NAME,则 PLAT_NAME ?= Z22 将变量 PLAT_NAME 设置为 Z22

有关详细信息,请参阅 GNU make 手册

$(shell ...) is the shell function which is used to execute a system command. So $(shell pwd), executes the pwd command.

?= is the conditional variable assignment operator and is used to assign a value to a variable if the variable is not already defined. Specifically, PLAT_NAME ?= Z22 sets the variable PLAT_NAME to Z22 if PLAT_NAME has not already been set.

See the GNU make manual for more information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文