Nginx编译简单优化

./configure --prefix=/usr/local/nginx --with-http_stub_status_module

 

编辑auto/cc/gcc,找到

# debug
CFLAGS="$CFLAGS -g"

 

然后注释掉CFLAGS行,如下


# debug
#CFLAGS="$CFLAGS -g"

 

然后make && make install

 

这样编译后去掉了debug信息,nginx文件缩减了很多。

你可能感兴趣的:(nginx,gcc)