Displaying 4 results from an estimated 4 matches for "__mingw__".
2009 Jan 27
3
[LLVMdev] [PATCH] llvm/llvm-gcc broken on mingw32
.../googletest/gtest.cc (revision 63080)
+++ utils/unittest/googletest/gtest.cc (working copy)
@@ -1993,7 +1993,7 @@
if (!HasSameFixtureClass()) return;
internal::UnitTestImpl* const impl = internal::GetUnitTestImpl();
-#ifdef GTEST_OS_WINDOWS
+#if defined(GTEST_OS_WINDOWS) && !defined(__MINGW__) && !defined(__MINGW32__)
// We are on Windows.
impl->os_stack_trace_getter()->UponLeavingGTest();
__try {
@@ -2025,7 +2025,7 @@
AddExceptionThrownFailure(GetExceptionCode(), "TearDown()");
}
-#else // We are on Linux or Mac - exceptions are disabled.
+#e...
2009 Jan 27
0
[LLVMdev] [PATCH] llvm/llvm-gcc broken on mingw32
Hello, Julien
> First issue is that unittests don't build for MingW, the attached
> patch
> should fix it.
Looks ok for me, however, use __MINGW32__ - this is how it's in all
LLVM tree nowadays.
> working) and 61242 (first known non working).
Are you running bootstrap build?
---
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg
2017 Jun 01
2
Building theora 1.1.1 with mingw-w64-gcc 7.1 and msys
Hello,
I recently attempted to build theora 1.1.1 with mingw-w64-gcc 7.1 and
msys and it fails to build the encoder_example.c example program. There
are multiple declarations of the function 'rint'. The source file
created its own version of the function that rounds AWAY from zero.
MinGW-W64 has its own version of the 'rint' function, which does not
round away from zero.
2013 Mar 19
1
Patch to add Unicode filename support for win32 flac
On 19.3.2013 19:13, LRN wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 19.03.2013 20:35, Janne Hyv?rinen wrote:
>> On 19.3.2013 15:49, JonY wrote:
>>> On 3/19/2013 19:59, Janne Hyv?rinen wrote:
>>>> On 18.3.2013 12:25, Erik de Castro Lopo wrote:
>>>>> JonY wrote:
>>>>>
>>>>>> Before anyone does