comparison auto/cc/icc @ 296:2ceaee987f37 NGINX_0_5_18

nginx 0.5.18 *) Feature: the ngx_http_sub_filter_module. *) Feature: the "$upstream_http_..." variables. *) Feature: now the $upstream_status and $upstream_response_time variables keep data about all upstreams before X-Accel-Redirect. *) Bugfix: a segmentation fault occurred in master process after first reconfiguration and receiving any signal if nginx was built with ngx_http_perl_module and perl did not support multiplicity; bug appeared in 0.5.9. *) Bugfix: if perl did not support multiplicity, then after reconfiguration perl code did not work; bug appeared in 0.3.38.
author Igor Sysoev <http://sysoev.ru>
date Thu, 19 Apr 2007 00:00:00 +0400
parents 38e7b94d63ac
children 5a4401b9551b
comparison
equal deleted inserted replaced
295:65b7ac8795e3 296:2ceaee987f37
3 3
4 4
5 # Intel C++ compiler 7.1, 8.0, 8.1, 9.0 5 # Intel C++ compiler 7.1, 8.0, 8.1, 9.0
6 6
7 NGX_ICC_VER=`$CC -V 2>&1 | grep 'Version' 2>&1 \ 7 NGX_ICC_VER=`$CC -V 2>&1 | grep 'Version' 2>&1 \
8 | sed -e 's/^.* Version \(.*\) Build.*$/\1/'` 8 | sed -e 's/^.* Version \([^ ]*\) *Build.*$/\1/'`
9 9
10 echo " + icc version: $NGX_ICC_VER" 10 echo " + icc version: $NGX_ICC_VER"
11 11
12 have=NGX_COMPILER value="\"Intel C Compiler $NGX_ICC_VER\"" . auto/define 12 have=NGX_COMPILER value="\"Intel C Compiler $NGX_ICC_VER\"" . auto/define
13 13
22 22
23 # multi-file IP optimizations 23 # multi-file IP optimizations
24 case "$NGX_ICC_VER" in 24 case "$NGX_ICC_VER" in
25 9.*) 25 9.*)
26 IPO="-ipo" 26 IPO="-ipo"
27 ;;
28
29 # 8.1.38 under FreeBSD can not link -ipo
30 8.1)
31 IPO="-ip"
27 ;; 32 ;;
28 33
29 *) 34 *)
30 IPO="-ipo -ipo_obj" 35 IPO="-ipo -ipo_obj"
31 ;; 36 ;;