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

2012-04-09 Thread Ozkan Sezer
On Mon, Apr 9, 2012 at 9:23 AM, Dongsheng Song dongsheng.s...@gmail.com wrote: On Sun, Apr 8, 2012 at 22:23, Kai Tietz ktiet...@googlemail.com wrote: Proper fix for Clang would be in _mingw.h.in header before the first use of __SIZEOF_INT128__. #if !defined (__SIZEOF_INT128__)

Re: [Mingw-w64-public] help for a small debug tool on Windows

2012-04-09 Thread Vincent Torri
Hey On Sat, Mar 31, 2012 at 6:58 PM, Vincent Torri vincent.to...@gmail.com wrote: Hey I'm writing a  small tool to do mem leak check, and later GDI leak checks. That tool, named 'examine', is intended to be used like valgrind, that is, no linkage (unlike mpatrol, for example). The usage is

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

2012-04-09 Thread John E. / TDM
On 4/8/2012 11:37 PM, rajeshwari b wrote: 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 given, configuration, and make. I have never tried building wxWidgets in MSYS. However, I've heard it is

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

2012-04-09 Thread Jim Michaels
#if !defined (__SIZEOF_INT128__) (__clang_major__ ==3) (__clang_minor__ = 1) #define __SIZEOF_INT128__ 16 #endif  then it becomes undefined for any time clang is =3.0 =4.0 I am not sure this is the logic you want.  perhaps it should be I am not a C compiler expert here, but I should think