gpt4 book ai didi

makefile - 如何在运行 make 时添加额外的标志?

转载 作者:行者123 更新时间:2023-12-03 06:37:25 28 4
gpt4 key购买 nike

当我运行make时,如何添加一些额外的标志?

看起来像:

make CXXFLAGS="-pg" # will substitute original flags

和:

make CXXFLAGS+="-pg" # does not work either

最佳答案

你是对的,在基本的Makefile中,当你使用环境命令行变量时,它们将替换原始变量。

要仅添加一些额外的标志,您可以使用 override directive 。在您的 Makefile 中:

CFLAGS ?= -Wall -Wextra -Werror

override CFLAGS += -I include/

这样,您就可以使用其他标志运行 make:

make CFLAGS=-MyOtherFlag

你将拥有:

CFLAGS = -MyOtherFlag -I include/

关于makefile - 如何在运行 make 时添加额外的标志?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43407374/

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