makefile中strip的用法
时间: 2023-09-12 19:13:05 浏览: 369
在 Makefile 中,strip 函数用于去除字符串的前导和尾部空格。其语法如下:
```
$(strip string)
```
其中,`string` 是要被去除空格的字符串。
下面是一个示例:
```makefile
str := Hello, World!
stripped_str := $(strip $(str))
$(info Original string: $(str))
$(info Stripped string: $(stripped_str))
```
运行上述示例后,输出结果为:
```
Original string: Hello, World!
Stripped string: Hello, World!
```
可以看到,strip 函数将原始字符串中的前导和尾部空格去除,返回一个没有空格的新字符串。
阅读全文