gpt4 book ai didi

c - 为什么 -Werror 导致配置错误

转载 作者:太空狗 更新时间:2023-10-29 15:26:50 28 4
gpt4 key购买 nike

我想从源代码构建 nginx。所以我写了一个 bash 脚本来做到这一点:

#!/bin/bash
export LD_LIBRARY_PATH="/usr/lib64:$LD_LIBRARY_PATH"
dir=$(realpath `dirname $BASH_SOURCE`)

cd $dir/modules
for folder in *
do
ADD_MODULES="$ADD_MODULES \
--add-module=$dir/modules/$folder"
done

cd $dir/nginx
./auto/configure \
--prefix=/usr/share/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--http-client-body-temp-path=/var/lib/nginx/tmp/client_body \
--http-proxy-temp-path=/var/lib/nginx/tmp/proxy \
--http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi \
--http-uwsgi-temp-path=/var/lib/nginx/tmp/uwsgi \
--http-scgi-temp-path=/var/lib/nginx/tmp/scgi \
--pid-path=/run/nginx.pid \
--lock-path=/run/lock/subsys/nginx \
--user=nginx \
--group=nginx \
--with-file-aio \
--with-ipv6 \
--with-http_ssl_module \
--with-http_spdy_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_xslt_module \
--with-http_image_filter_module \
--with-http_geoip_module \
--with-http_stub_status_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_flv_module \
--with-http_mp4_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_degradation_module \
--with-http_stub_status_module \
--with-http_perl_module \
--with-mail \
--with-mail_ssl_module \
--with-pcre \
--with-debug \
$ADD_MODULES \
--with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic' \
--with-ld-opt='-Wl,-z,relro -Wl,-E'

if [ $? -ne 0 ]; then
exit
fi

read -p 'Run make & make install? [Y/n]> ' RUN

if [ "x$RUN" = "x" -o "x$RUN" = "xY" -o "x$RUN" = "xy" ]; then
make -j8
make install
fi

当我运行此脚本时,configure 成功,但在编译和 make 期间出现警告 treat as error(unused-but-set-variable) 退出并出现此错误。

所以,我编辑“--with-cc-opt”选项,将“-Wall”更改为“-Werror”,这次configure失败并出错

./auto/configure: error: the HTTP XSLT module requires the libxml2/libxslt
libraries. You can either do not enable the module or install the libraries.

然后我将“-Werror”更改为“-Werror=unused-but-set-variable”,configure 因错误而失败

./auto/configure: no supported file AIO was found
Currently file AIO is supported on FreeBSD 4.3+ and Linux 2.6.22+ only

(我尝试删除 -W 选项,但与 -Wall 相同)

谁知道为什么?!

编辑:

我通过编辑 nginx configure 选项文件来解决...

我注意到make日志的尾部

cc -c -pipe -O -W -Wall -Wpointer-arith -Wno-unused-parameter -Werror -g -O2 -g - pipe -Werror=unused-but-set-variable -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -I src/core -I (....等

我认为这些问题是 nginx configure auto prepend some CC-opt bedore mine

所以我使用 grep '\-Wall' ./auto -Rgrep '\-Werror' ./auto -R 找到它们并将其删除。

现在我“完全”控制了 Ccflags。

感谢R的回答:D

最佳答案

删除 --with-file-aio 选项。这没有用。

要么删除 --with-http_xslt_module 选项,要么安装 libxml2 和 libxslt。

一般来说,不要使用--with--enable你不理解的选项。

关于c - 为什么 -Werror 导致配置错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18394503/

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