hi miller, thomas and everyone else
i tried to compile pd with the recent gnu compiler 3.3. they added some warnings, so that pd won't compile if you are using the -Werror flag...
since both gcc 3.3 and icc produce several warnings, what about removing this compiler flag from the makefiles...
and btw, two other changes would be nice: m_pd.h, line 41: #if defined(__GNUC__) || defined (__BORLANDC__) || defined (__ICC)
flprefix.h, line 196: #elif defined(__GNUG__) || defined(__ICC)
thanks a lot...
Tim mailto:TimBlechmann@gmx.net ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac
Hi Tim,
flprefix.h, line 196: #elif defined(__GNUG__) || defined(__ICC)
is my suspicion right that this is only true for Linux? I know that Intel Compilers exist for Windows too, so maybe there they resemble more Microsoft VC++ than gcc. Maybe Olaf Matthes can say something about it?
best greetings, Thomas
flprefix.h, line 196: #elif defined(__GNUG__) || defined(__ICC)
is my suspicion right that this is only true for Linux? I know that Intel Compilers exist for Windows too, so maybe there they resemble more Microsoft VC++ than gcc. Maybe Olaf Matthes can say something about it?
yes, i am only using the linux compiler, not the windows compiler... i don't know how the windows development is working, but as far as i know intel is trying to make a linux compiler that is compatible to gnu (i suppose their aim is it to compile the linux kernel with icc).
but you could change this line to: #elif defined(__GNUG__) || ( defined(__ICC) && defined(__linux) )
Tim mailto:TimBlechmann@gmx.net ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac