8.1.38 under FreeBSD can not link -ipo

This commit is contained in:
Igor Sysoev 2007-04-19 17:49:24 +00:00
parent db390ac36d
commit ad490864de

View File

@ -26,6 +26,11 @@ case "$NGX_ICC_VER" in
IPO="-ipo"
;;
# 8.1.38 under FreeBSD can not link -ipo
8.1)
IPO="-ip"
;;
*)
IPO="-ipo -ipo_obj"
;;