Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据make的设置变量,我可以有条件地分配给一个未定义的变量:
FOO ?= bar
操作员是否便携?可以在非 GNU 系统上使用吗?
该语法未在 make 的 POSIX 标准中定义,因此它在 GNU make 以外的 make 版本中不可用。当然,GNU make 本身是可移植的,因此它可以并且经常用于非 GNU 系统,因此从这个意义上说,它可以移植到非 GNU 系统:-)。