Re: [Mingw-w64-public] Printf %z format specifier?

2009-09-17 Thread Ozkan Sezer
On Thu, Sep 17, 2009 at 5:55 AM, Erik de Castro Lopo mle+...@mega-nerd.com wrote: Hi all, I'm using mingw-w64-bin_i686-linux_20090612.tar.bz2 which is the latest I can find and running into problems compiling stuff like:    printf (Bad file length (% PRId64 should be %zd).\n, retval, sizeof

Re: [Mingw-w64-public] Precompiled mingw-w64-bin_i686-linux?

2009-09-17 Thread JonY
On 9/17/2009 10:43, Erik de Castro Lopo wrote: JonY wrote: the most recent build for 32bit linux is mingw-w64-bin_i686-linux_20090612.tar.bz2, but its hidden by sourceforge. Sourceforge is amazing efficient at hiding files :-). I just tried the file :

Re: [Mingw-w64-public] Printf %z format specifier?

2009-09-17 Thread Erik de Castro Lopo
Ozkan Sezer wrote: I'm not sure whether msvcrt supports the %z size_t conversion. I'm pretty damn sure it doesn't :-). You can, however, use the posix compliant mingw version. Its not POSIX, its ISO C99 :-). You can do it by either of these two ways: 1. You can compile your source

Re: [Mingw-w64-public] Printf %z format specifier?

2009-09-17 Thread Ozkan Sezer
On Fri, Sep 18, 2009 at 1:14 AM, Erik de Castro Lopo mle+...@mega-nerd.com wrote: Ozkan Sezer wrote: I'm not sure whether msvcrt supports the %z size_t conversion. I'm pretty damn sure it doesn't :-). You can, however, use the posix compliant mingw version. Its not POSIX, its  ISO C99