comparison auto/cc/gcc @ 554:5c576ea5dbd9 NGINX_0_8_29

nginx 0.8.29 *) Change: now the "009" status code is written to an access log for proxied HTTP/0.9 responses. *) Feature: the "addition_types", "charset_types", "gzip_types", "ssi_types", "sub_filter_types", and "xslt_types" directives support an "*" parameter. *) Feature: GCC 4.1+ built-in atomic operations usage. Thanks to W-Mark Kubacki. *) Feature: the --with-libatomic[=DIR] option in the configure. Thanks to W-Mark Kubacki. *) Bugfix: listen unix domain socket had limited access rights. *) Bugfix: cached HTTP/0.9 responses were handled incorrectly. *) Bugfix: regular expression named captures given by "?P<...>" did not work in a "server_name" directive. Thanks to Maxim Dounin.
author Igor Sysoev <http://sysoev.ru>
date Mon, 30 Nov 2009 00:00:00 +0300
parents 392c16f2d858
children 2da4537168f8
comparison
equal deleted inserted replaced
553:63dde5a94756 554:5c576ea5dbd9
88 88
89 sparc32) 89 sparc32)
90 # build 32-bit UltraSparc binary 90 # build 32-bit UltraSparc binary
91 CPU_OPT="-m32" 91 CPU_OPT="-m32"
92 CORE_LINK="$CORE_LINK -m32" 92 CORE_LINK="$CORE_LINK -m32"
93 CC_AUX_FLAGS="$CC_AUX_FLAGS -m32"
94 NGX_CPU_CACHE_LINE=64 93 NGX_CPU_CACHE_LINE=64
95 ;; 94 ;;
96 95
97 sparc64) 96 sparc64)
98 # build 64-bit UltraSparc binary 97 # build 64-bit UltraSparc binary
99 CPU_OPT="-m64" 98 CPU_OPT="-m64"
100 CORE_LINK="$CORE_LINK -m64" 99 CORE_LINK="$CORE_LINK -m64"
101 CC_AUX_FLAGS="$CC_AUX_FLAGS -m64"
102 NGX_CPU_CACHE_LINE=64 100 NGX_CPU_CACHE_LINE=64
103 ;; 101 ;;
104 102
105 ppc64) 103 ppc64)
106 # build 64-bit PowerPC binary 104 # build 64-bit PowerPC binary
107 CPU_OPT="-m64" 105 CPU_OPT="-m64"
108 CPU_OPT="$CPU_OPT -falign-functions=32 -falign-labels=32" 106 CPU_OPT="$CPU_OPT -falign-functions=32 -falign-labels=32"
109 CPU_OPT="$CPU_OPT -falign-loops=32 -falign-jumps=32" 107 CPU_OPT="$CPU_OPT -falign-loops=32 -falign-jumps=32"
110 CORE_LINK="$CORE_LINK -m64" 108 CORE_LINK="$CORE_LINK -m64"
111 CC_AUX_FLAGS="$CC_AUX_FLAGS -m64"
112 NGX_CPU_CACHE_LINE=128 109 NGX_CPU_CACHE_LINE=128
113 ;; 110 ;;
114 111
115 esac 112 esac
116 113
114 CC_AUX_FLAGS="$CC_AUX_FLAGS $CPU_OPT"
117 115
118 case "$NGX_GCC_VER" in 116 case "$NGX_GCC_VER" in
119 2.7*) 117 2.7*)
120 # batch build 118 # batch build
121 CPU_OPT= 119 CPU_OPT=