gpt4 book ai didi

shell - 在 makefile 中转义

转载 作者:行者123 更新时间:2023-12-03 05:11:57 25 4
gpt4 key购买 nike

我试图在 makefile 中执行此操作,但它严重失败:

M_ARCH := $(shell g++ -dumpmachine | awk '{split($1,a,"-");print a[1]}')

你知道为什么吗?我猜这与逃跑有关,但是什么以及在哪里?

最佳答案

它是美元符号,在 makefile 中您必须键入 $$ 才能获得单个美元符号:

M_ARCH := $(shell g++ -dumpmachine | awk '{split($$1,a,"-");print a[1]}')

关于shell - 在 makefile 中转义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2382764/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com