gpt4 book ai didi

linux - Makefile 或条件

转载 作者:太空狗 更新时间:2023-10-29 12:01:51 25 4
gpt4 key购买 nike

我想有多个 if 条件并想合并。

ifeq ($(TAG1), on)
LD_FLAGS += -ltestlibrary
endif
ifeq ($(TAG2), on)
LD_FLAGS += -ltestlibrary
endif

我想做这样的事情:

ifeq ($(TAG1) || $(TAG2), on)
LD_FLAGS += -ltestlibrary
endif

我该怎么做?SO Makefile ifeq logical or 中的答案或 How to Use of Multiple condition in 'ifeq' statement给出其他方法。

最佳答案

可以在 MakeFile 中将过滤器用于 OR 运算符。对于您的情况,情况如下:
ifneq ($(过滤,$(TAG1) $(TAG2)),)
LD_FLAGS += -ltest库
万一
Please refer this link for GNU make functions for transforming text

关于linux - Makefile 或条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32331782/

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