arch(manjaro)编译nginx

arch(manjaro)编译nginx

wget http://nginx.org/download/nginx-1.8.1.tar.gz
tar xvf nginx-1.8.1.tar.gz
cd nginx-1.8.1/
./configure \
--prefix=/vhs/nginx/nginx181 \
--sbin-path=/vhs/nginx/nginx181/sbin/nginx \
--conf-path=/vhs/nginx/nginx181/conf/nginx.conf \
--with-http_ssl_module
make -j32
# 错误:this statement may fall through
# /objs/Makefile 使用命令找到 -Werrori [第3行] 将其去掉 重新make
# 可能会失败
sudo make install

猜你喜欢

转载自blog.csdn.net/HD2killers/article/details/83141905