Re: [Mingw-w64-public] mingw-w64 Decimal Floating Point math

2011-04-08 Thread NightStrike
On Sun, Apr 3, 2011 at 7:07 AM, James K Beard wrote: > A quick glance through the document seems to tell us that the decimal > arithmetic will incorporate checks to ensure that any rounding in binary > floating point does not compromise the accuracy of the final decimal > result.  That’s pretty mu

Re: [Mingw-w64-public] Multilib dlltool

2011-04-08 Thread Kai Tietz
2011/4/2 Prof Brian Ripley : > Thanks to Kai for this. > > One more thing to note: > > gcc -m32 does not define WIN64 > windres -F i386 does (which seems to me a buglet). > > Brian Ripley > > On Wed, 30 Mar 2011, Kai Tietz wrote: > >> 2011/3/30 Prof Brian Ripley : >>> >>> On Tue, 29 Mar 2011, John

Re: [Mingw-w64-public] g++ -fpack-struct and vector, iterator, stdint.h, iostream clash

2011-04-08 Thread Jaroslav Šmíd
Looks like GCC requires that the field is aligned in order to create reference and because there is no alignment specified in STL headers (e.g. with gcc's pragma pack) even STL containers and iterators get packed. Maybe you should use __attribute__((packed)) on your structures and not do it glo