From: Ernst B. <e.b...@xe...> - 2007-02-26 10:03:10
|
On Sonntag, 25. Februar 2007, Michael Reinelt wrote: > I didn't get your warnings, but I tried to fix them "blindly". I think you can pass GCC an option to pretend to be on 64Bit to see that warning, IIRC it was "-m64". Never tested that however, on 64Bit myself ;) > > btw, do you know of a way to reduce the "chattyness" of the compilation > process? Since I upgraded autoconf/automake/autowhatever some time ago, > the compilation of one single file emits 3-5 lines, and I regularly > overlook these warnings... Easy: # make > /dev/null Warnings go to STDERR, and are still visible. Alternatively, you can tell GCC to bail out on warnings, "-pedantic-errors" and "-Wfatal-errors" seem to do that. /Ernst |