gpt4 book ai didi

linux - Makefile 在 foreach 循环中使用 ifeq 条件

转载 作者:IT王子 更新时间:2023-10-29 01:02:14 25 4
gpt4 key购买 nike

我有很多变量叫做allow_xxx 其中 xxx 是一个特征。

我想在我的 makefile 中使用所有允许的值创建一个变量。

这是我尝试做的:

allow_feat1 := 1
allow_feat2 := 1
allow_feat3 := 1
list_features := feat1 feat2 feat3

allowed := $(foreach V, $(list_features), $(ifeq ($(allow_$V),1),$V))

这行不通...知道如何正确执行此操作吗?

谢谢!

最佳答案

没有ifeq函数这样的东西,它只是一个条件指令。使用 iffilter 代替:

allowed := $(foreach V, $(list_features), $(if $(filter 1,$(allow_$V)),$V))

关于linux - Makefile 在 foreach 循环中使用 ifeq 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8503043/

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