nginx-0.3.1 :: icc 9.0
    Igor Sysoev 
    is at rambler-co.ru
       
    Tue Oct 11 23:29:04 MSD 2005
    
    
  
On Tue, 11 Oct 2005, Alexey Bestchiokov wrote:
> Игорь, 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)
>      ngx_uint_t  p, a, n;
Это поправлю.
Игорь Сысоев
http://sysoev.ru
    
    
More information about the nginx-ru
mailing list