Eric Pouech wrote:
Dan Kegel wrote:
That's expected. To support icc, one would have to adjust the commandline options a bit depending on the compiler being used. In particular, one would want to suppress many compiler warnings like the ones you mentioned. icc provides a nice way of suppressing any desired set of warnings.
I used something like CFLAGS="-g -Wbrief -wd108,144,167,181,188,193,279,556,810,869,981,1287,1418,1419,1572"
ok.. I've found what I have to do.. override EXTRACFLAGS...
now I can compile the wine without warnings.. but here comes the first compiler error:
tom@eiger ~/cvs/wine/libs/wine $ icc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DBINDIR=""/usr/bin"" -DDLLDIR=""/usr/lib/wine"" -D_REENTRANT -fPIC -g -Wbrief -wd108,144,167,181,188,193,279,556,810,869,981,1287,1418,1419,1572 -o ldt.o ldt.c /tmp/iccbinFR1dsuas_: Assembler messages: /tmp/iccbinFR1dsuas_:2339: Error: symbol `wine_get_fs' is already defined /tmp/iccbinFR1dsuas_:2363: Error: symbol `wine_set_fs' is already defined tom@eiger ~/cvs/wine/libs/wine $
tom