gpt4 book ai didi

makefile - 如何从 autotools 生成的 makefile 中删除 -Werror?

转载 作者:行者123 更新时间:2023-12-02 19:03:40 25 4
gpt4 key购买 nike

我正在编译一个使用自动工具构建过程的大型库。 makefile 有很多。他们每个人都得到CFLAGS = .... -Werror

当我尝试编译时,出现一些小警告,这些警告会终止我的设置中的构建。

尽管有警告,我还是想尝试构建,因此我需要从所有 makefile 中删除 -Werror 。有没有办法阻止自动工具在所有这些 makefile 中放入 -Werror

最佳答案

我在configure.ac中浏览了一下,发现了这个:

AC_ARG_ENABLE([werror],
AS_HELP_STRING([--disable-werror], [Do not treat warnings as errors]),
[gcc_werror=$enableval], [gcc_werror=$gcc_warnings])

所以我像这样运行配置:

./configure --disable-werror

它就像一个魅力。我的 makefile 中不再有 -Werror 标志。感谢您的评论,直到!

关于makefile - 如何从 autotools 生成的 makefile 中删除 -Werror?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37008942/

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