1.关闭debug模式,减小编译后的文件大小

2.优化GCC编译参数
pull/175/head
JackyTang 2020-02-14 07:30:50 +08:00
parent 753d4b8ea9
commit 551e40039e
1 changed files with 4 additions and 0 deletions

View File

@ -319,6 +319,9 @@ nginx_install(){
echo -e "${OK} ${GreenBG} 即将开始编译安装 Nginx, 过程稍久,请耐心等待 ${Font}" echo -e "${OK} ${GreenBG} 即将开始编译安装 Nginx, 过程稍久,请耐心等待 ${Font}"
sleep 4 sleep 4
# 关闭debug模式,减小编译后的文件大小
sed -i 's@CFLAGS="$CFLAGS -g"@#CFLAGS="$CFLAGS -g"@' auto/cc/gcc
cd nginx-${nginx_version} cd nginx-${nginx_version}
./configure --prefix="${nginx_dir}" \ ./configure --prefix="${nginx_dir}" \
--with-http_ssl_module \ --with-http_ssl_module \
@ -330,6 +333,7 @@ nginx_install(){
--with-http_mp4_module \ --with-http_mp4_module \
--with-http_secure_link_module \ --with-http_secure_link_module \
--with-http_v2_module \ --with-http_v2_module \
--with-cc-opt='-O3' \
--with-openssl=../openssl-"$openssl_version" --with-openssl=../openssl-"$openssl_version"
judge "编译检查" judge "编译检查"
make && make install make && make install