shell编程(shell命令使用)
PWD=$(shell pwd)
PLAT_NAME ?= Z22
这些语句用作 makefile 的一部分。请解释以下查询 在第一季度。外壳是什么意思? 。这是 shell 命令吗? 在第二季度。 ?= 是什么意思?
PWD=$(shell pwd)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$(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 thepwd
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 variablePLAT_NAME
toZ22
ifPLAT_NAME
has not already been set.See the GNU make manual for more information.