Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Ozkan Sezer
On Mon, Apr 9, 2012 at 9:23 AM, Dongsheng Song wrote: > On Sun, Apr 8, 2012 at 22:23, Kai Tietz wrote: >> Proper fix for Clang would be in _mingw.h.in header before the first >> use of __SIZEOF_INT128__. >> >> #if !defined (__SIZEOF_INT128__) && (__clang_major__ ==3) && >> (__clang_minor__ >= 1)

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Dongsheng Song
On Sun, Apr 8, 2012 at 22:23, Kai Tietz wrote: > Proper fix for Clang would be in _mingw.h.in header before the first > use of __SIZEOF_INT128__. > > #if !defined (__SIZEOF_INT128__) && (__clang_major__ ==3) && > (__clang_minor__ >= 1) > #define __SIZEOF_INT128__ 16 > #endif > You maybe permit __

[Mingw-w64-public] compilation error in TDM-GCC when building wxWidgets

2012-04-08 Thread rajeshwari b
Hi all, My Thanks to Earnie for solving the issue regarding access of TDM-GCC and GIT through Msys.There is another issue now regarding the compiler. I tried building wxWidgets 2.8.12 through Msys. That is, through Msys shell, the TDM-GCC was accessed. The log is attached regarding the commands giv

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Kai Tietz
2012/4/8 Ruben Van Boxem : > 2012/4/8 Ozkan Sezer >> >> On Sun, Apr 8, 2012 at 3:56 PM, Ruben Van Boxem >> wrote: >> > 2012/4/8 Ozkan Sezer >> >> >> >> On Sun, Apr 8, 2012 at 3:37 PM, Ruben Van Boxem >> >> wrote: >> >> > 2012/4/8 Ozkan Sezer >> >> >> >> >> >> On Sun, Apr 8, 2012 at 3:14 PM, Ru

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Ruben Van Boxem
2012/4/8 Ozkan Sezer > On Sun, Apr 8, 2012 at 3:56 PM, Ruben Van Boxem > wrote: > > 2012/4/8 Ozkan Sezer > >> > >> On Sun, Apr 8, 2012 at 3:37 PM, Ruben Van Boxem > >> wrote: > >> > 2012/4/8 Ozkan Sezer > >> >> > >> >> On Sun, Apr 8, 2012 at 3:14 PM, Ruben Van Boxem > >> >> wrote: > >> >> >

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Ozkan Sezer
On Sun, Apr 8, 2012 at 3:56 PM, Ruben Van Boxem wrote: > 2012/4/8 Ozkan Sezer >> >> On Sun, Apr 8, 2012 at 3:37 PM, Ruben Van Boxem >> wrote: >> > 2012/4/8 Ozkan Sezer >> >> >> >> On Sun, Apr 8, 2012 at 3:14 PM, Ruben Van Boxem >> >> wrote: >> >> > Hi, >> >> > >> >> > Clang doesn't support the

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Ruben Van Boxem
2012/4/8 Ozkan Sezer > On Sun, Apr 8, 2012 at 3:37 PM, Ruben Van Boxem > wrote: > > 2012/4/8 Ozkan Sezer > >> > >> On Sun, Apr 8, 2012 at 3:14 PM, Ruben Van Boxem > >> wrote: > >> > Hi, > >> > > >> > Clang doesn't support the __int128 stuff, and the _mingw.h header is > >> > doing a > >> > typ

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Ozkan Sezer
On Sun, Apr 8, 2012 at 3:37 PM, Ruben Van Boxem wrote: > 2012/4/8 Ozkan Sezer >> >> On Sun, Apr 8, 2012 at 3:14 PM, Ruben Van Boxem >> wrote: >> > Hi, >> > >> > Clang doesn't support the __int128 stuff, and the _mingw.h header is >> > doing a >> > typedef that Clang does not understand. >> > >>

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Ruben Van Boxem
2012/4/8 Ozkan Sezer > On Sun, Apr 8, 2012 at 3:14 PM, Ruben Van Boxem > wrote: > > Hi, > > > > Clang doesn't support the __int128 stuff, and the _mingw.h header is > doing a > > typedef that Clang does not understand. > > > > It is on line 218 of _mingw.h: > > > > #ifndef __SIZEOF_INT128__ > >

Re: [Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Ozkan Sezer
On Sun, Apr 8, 2012 at 3:14 PM, Ruben Van Boxem wrote: > Hi, > > Clang doesn't support the __int128 stuff, and the _mingw.h header is doing a > typedef that Clang does not understand. > > It is on line 218 of _mingw.h: > > #ifndef __SIZEOF_INT128__ > typedef int __int128 __attribute__ ((__mode__ (

[Mingw-w64-public] Problem with __int128 and Clang

2012-04-08 Thread Ruben Van Boxem
Hi, Clang doesn't support the __int128 stuff, and the _mingw.h header is doing a typedef that Clang does not understand. It is on line 218 of _mingw.h: #ifndef __SIZEOF_INT128__ typedef int __int128 __attribute__ ((__mode__ (TI))); #endif should be: #if !defined(__SIZEOF_INT128__) && !defined(