Re: [Mingw-w64-public] Why decimal floating point not supported for this target ?

2010-07-16 Thread Dongsheng Song
On Fri, Jul 16, 2010 at 13:17, Kai Tietz ktiet...@googlemail.com wrote: The feature of decimal-floating-point isn't enabled in gcc for cygwin/mingw targets. Question for those targets are, which decimal-floating-point variant should be used, is there any support by runtime, which ISO-Spec it

[Mingw-w64-public] Why decimal floating point not supported for this target ?

2010-07-15 Thread Dongsheng Song
Hi, When I compile the following simple C program: int main() { _Decimal32 d1; _Decimal64 d2; _Decimal128 d3; return 0; } gcc 4.4 linux target is OK, but mingw32 or mingw64 target failed: C:\var\tmp\mingw32\bingcc testDecimal.c testDecimal.c: In function 'main': testDecimal.c:3:

Re: [Mingw-w64-public] Why decimal floating point not supported for this target ?

2010-07-15 Thread Kai Tietz
Hello, 2010/7/16 Dongsheng Song dongsheng.s...@gmail.com: Hi, When I compile the following simple C program: int main() {   _Decimal32 d1;   _Decimal64 d2;   _Decimal128 d3;   return 0; } gcc 4.4 linux target is OK, but mingw32 or mingw64 target failed: C:\var\tmp\mingw32\bingcc