comparison auto/cc/icc @ 1171:d2adfc714819

8.1.38 under FreeBSD can not link -ipo
author Igor Sysoev <igor@sysoev.ru>
date Thu, 19 Apr 2007 17:49:24 +0000
parents 5e878722ad57
children 7ee8e11e17bb
comparison
equal deleted inserted replaced
1170:5e878722ad57 1171:d2adfc714819
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 ;;