comparison auto/cc/icc @ 601:77f77f53214a release-0.3.22

nginx-0.3.22-RELEASE import *) 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; the bug had appeared in 0.3.18.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 17 Jan 2006 20:04:32 +0000
parents ebc68d8ca496
children 7e24168b0853
comparison
equal deleted inserted replaced
600:2d3a5a03e738 601:77f77f53214a
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