comparison auto/cc/icc @ 150:50bd986c5d63 NGINX_0_3_22

nginx 0.3.22 *) Feature: the ngx_http_perl_module supports the $r->args and $r->unescape methods. *) Feature: the method $r->query_string of ngx_http_perl_module was canceled. *) Bugfix: segmentation fault was occurred if the "none" or "blocked" values was specified in the "valid_referers" directive; bug appeared in 0.3.18.
author Igor Sysoev <http://sysoev.ru>
date Tue, 17 Jan 2006 00:00:00 +0300
parents e1c6ac408b68
children 38e7b94d63ac
comparison
equal deleted inserted replaced
149:cec6fdbfe9da 150:50bd986c5d63
18 # inline the functions declared with __inline 18 # inline the functions declared with __inline
19 #CFLAGS="$CFLAGS -Ob1" 19 #CFLAGS="$CFLAGS -Ob1"
20 # inline any function, at the compiler's discretion 20 # inline any function, at the compiler's discretion
21 CFLAGS="$CFLAGS -Ob2" 21 CFLAGS="$CFLAGS -Ob2"
22 22
23 # single-file IP optimizations
24 #IPO="-ip"
25
26 # multi-file IP optimizations 23 # multi-file IP optimizations
27 case "$NGX_ICC_VER" in 24 case "$NGX_ICC_VER" in
28 9.*) 25 9.*)
29 IPO="-ipo" 26 IPO="-ipo"
30 ;; 27 ;;
31 28
32 *) 29 *)
33 IPO="-ipo -ipo_obj" 30 IPO="-ipo -ipo_obj"
34 ;; 31 ;;
35 esac 32 esac
33
34 # single-file IP optimizations
35 #IPO="-ip"
36 36
37 CFLAGS="$CFLAGS $IPO" 37 CFLAGS="$CFLAGS $IPO"
38 CORE_LINK="$CORE_LINK $IPO" 38 CORE_LINK="$CORE_LINK $IPO"
39 CORE_LINK="$CORE_LINK -opt_report_file=$NGX_OBJS/opt_report_file" 39 CORE_LINK="$CORE_LINK -opt_report_file=$NGX_OBJS/opt_report_file"
40 40