Игорь, ICC 9.0 снова ругается :) правда значительно меньше чем в прошлый раз
:)
icc: Command line remark: option '-ipo_obj' not supported
А что там есть про ipo ?
icc -help | grep -5 ipo
src/core/nginx.c(35): error #1684: conversion from pointer to same-sized
integral type (potential portability problem)
offsetof(ngx_core_conf_t, daemon),
Это, видимо, придётся запретить - он так на каждый offsetof() будет ругаться.
src/os/unix/ngx_writev_chain.c(84): error #1682: implicit conversion of a
64-bit integral type to a smaller integral type (potential portability
problem)
size = (ssize_t) limit - send;
А если так:
- size = (ssize_t) limit - send;
+ size = (ssize_t) (limit - send);
src/http/ngx_http.c(727): error #1599: declaration hides variable "n"
(declared at line 75)