From: Dan K. <da...@ke...> - 2003-06-24 21:49:45
|
Julian Seward wrote: > You might want to get a free download of the Intel C/C++ compiler; it > uses a different front end from g++, and is very good at warning about > all sorts of potentially problematic stuff. Maybe it will uncover a > useful clue when compiling your code. gcc 3.2.2 is no slouch, either, if you turn on all the warnings, e.g. -Wall -Werror (there may be a few more you can turn on, too). Also, compile with optimization no higher than -O1, to get rid of any chance of aliasing. You may also want to try gcc-3.2.3 or gcc-3.3. - Dan -- Dan Kegel http://www.kegel.com http://counter.li.org/cgi-bin/runscript/display-person.cgi?user=78045 |