--- Additional Comments From hjl dot tools at gmail dot com 2008-02-02
16:24 ---
Created an attachment (id=2228)
--> (http://sourceware.org/bugzilla/attachment.cgi?id=2228&action=view)
A patch
My gcc 4.1 cross compiler for 32bit mingw doesn't understand %I64. This patch
allows me to bu
This patch:
http://sourceware.org/ml/binutils/2008-01/msg00195.html
breaks 32bit mingw host for 64bit target. It has
#elif BFD_HOST_64BIT_LONG_LONG
+#ifndef _WIN32
#define sprintf_vma(s,x) sprintf (s, "%016llx", x)
#define fprintf_vma(f,x) fprintf (f, "%016llx", x)
#else
+#define sprintf_vma