ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: nginx-0.3.1 :: icc 9.0



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




 




Copyright © Lexa Software, 1996-2009.