-
Why do you think that something like
movaps %xmm0,-0x28(%ebp)
is invalid?
See the comments to bug 2834267, in particular
"ebp *must* be offset by 8 from 16-byte boundaries, ie. that -8(%ebp) *does* refer to a
16-byte aligned address."
I'm pretty sure that this is bug with unaligned .lcomm data (fixed by patches in http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37216). zlib, built with...
2009-09-09 07:51:59 UTC in MinGW - Minimalist GNU for Windows
-
I cannot reproduce the error with gcc 4.5.0 on my Vista laptop. I will try older versions of gcc when I get home.
Danny.
2009-08-26 07:51:29 UTC in MinGW - Minimalist GNU for Windows
-
What is the version number of your msvcrt.dll (look at the file properties to get the version from the versioninfo resource.)
Older msvcrt.dll's (eg 6.10.8924.0) had thread-locking problems with setlocale that causes a similar bug in libstdc++. The msvcrt.dll that ships with Vista (mine has version number 7.0.6001.18000) works fine.
2009-08-26 03:01:47 UTC in MinGW - Minimalist GNU for Windows
-
This has been fixed on gcc trunk and 4.4.1 branch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38900.
2009-08-24 05:46:34 UTC in MinGW - Minimalist GNU for Windows
-
This bug is part of:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37216
It is fixed with gcc-4.5.0 and latest binutils
Danny.
2009-08-22 09:05:47 UTC in MinGW - Minimalist GNU for Windows
-
This looks like a problem with (un)aligned common. Try adding -fno-common to compile options.
See also:
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37216
and try.
2009-08-13 05:35:25 UTC in MinGW - Minimalist GNU for Windows
-
Patch uploaded
2009-08-08 Danny Smith
* include/math.h (__fpclassifyl, __isnan, __isnanf, isnanl,
__signbit, __signbitf, __signbitl, sinhf, tanhf, expf, frexpf,
ldexpf, hypotf, powf, __fp_unordered_compare): Add prototypes.
* include/stdio.h (vsnwprintf): Add prototype.
* include/wchar.h (vsnwprintf): Add prototype.
* include/stdlib.h (_Exit)...
2009-08-08 05:52:54 UTC in MinGW - Minimalist GNU for Windows
-
This change2009-07-18 Gregory McGarry
* include/inttypes.h include/math.h include/stdio.h include/stdlib.h
include/string.h include/unistd.h include/wchar.h: Add __NO_INLINE__ guard
to all inline functions.
breaks build of libstdc++ and probably other libraries which do configure tests for prototypes of C99 functions.
In the case of...
2009-08-02 08:00:10 UTC in MinGW - Minimalist GNU for Windows
-
I think your changes have already been incorporated into CVS as of
2009-04-11 Danny Smith
* include/stdint.h (int_fast8_t): Specify as signed char.
(INT8_C, UINT8_C, INT16_C, UINT16_C): Simplify: just allow promotion to int.
(INT32_C, UINT32_C): Remove 'L' type specifier on constant.
2009-07-31 04:03:37 UTC in MinGW - Minimalist GNU for Windows
-
- add a constructor that takes a file descriptor;
Have you examined c++/ext/stdio_filebuf.h
/**
* @param fd An open file descriptor.
* @param mode Same meaning as in a standard filebuf.
* @param size Optimal or preferred size of internal buffer, in chars.
*
* This constructor associates a file stream buffer with an open
*...
2009-07-12 07:09:22 UTC in MinGW - Minimalist GNU for Windows