comparison auto/cc/icc @ 42:41ccba1aba45 NGINX_0_1_21

nginx 0.1.21 *) Bugfix: the ngx_http_stub_status_module showed incorrect statistics if "rtsig" method was used or if several worker process ran on SMP. *) Bugfix: nginx could not be built by the icc compiler on Linux or if the zlib-1.2.x library was building from sources. *) Bugfix: nginx could not be built on NetBSD 2.0.
author Igor Sysoev <http://sysoev.ru>
date Tue, 22 Feb 2005 00:00:00 +0300
parents a39d1b793287
children 72eb30262aac
comparison
equal deleted inserted replaced
41:4d8e7a81b3a0 42:41ccba1aba45
1 1
2 # Copyright (C) Igor Sysoev 2 # Copyright (C) Igor Sysoev
3 3
4 4
5 # Intel C++ compiler 7.1, 8.0 5 # Intel C++ compiler 7.1, 8.0, 8.1
6 6
7 # optimizations 7 # optimizations
8 8
9 CFLAGS="$CFLAGS -O" 9 CFLAGS="$CFLAGS -O"
10 # inline functions declared with __inline 10 # inline functions declared with __inline
55 # warnings 55 # warnings
56 56
57 CFLAGS="$CFLAGS -w1" 57 CFLAGS="$CFLAGS -w1"
58 #CFLAGS="$CFLAGS -w2" 58 #CFLAGS="$CFLAGS -w2"
59 59
60 # disable the ICC 8.0 errors: 60 # disable the ICC 8.1 errors:
61 # error #181: argument is incompatible with corresponding format 61 # error #181: argument is incompatible with corresponding format
62 # string conversion 62 # string conversion
63 # error #269: invalid format string conversion 63 # error #269: invalid format string conversion
64 CFLAGS="$CFLAGS -wd181 -wd269" 64 CFLAGS="$CFLAGS -wd181 -wd269"
65 65