Re: [Mingw-w64-public] [PATCH] Add missing members into MINIDUMP_TYPE

2021-05-30 Thread Liu Hao
在 5/31/21 1:38 AM, Ruslan Garipov 写道: Signed-off-by: Ruslan Garipov --- mingw-w64-headers/include/psdk_inc/_dbg_common.h | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) Thanks. This patch looks good to me. I pushed it to master. -- Best regards, Liu Hao OpenPGP_signatur

[Mingw-w64-public] Windows 95 crashes

2021-05-30 Thread unlvsur unlvsur
Compiling programs for Windows 95 and Pentium in 2021 | GL1zdA's Weblog (wordpress.com) Sent from Mail for Windows 10 _

[Mingw-w64-public] Any interesting on recreating a C++ standard library with MinGW-w64 itself?

2021-05-30 Thread unlvsur unlvsur
Some people want to link with msvcp (msvc stl) for C++ instead of using libstdc++. I think it is actually possible to do that, considering mingw-w64 already recreates everything with msvcrt. Sent from Mail for Windows 10

[Mingw-w64-public] Does mingw-w64 provide new syscalls for windows IO ring?

2021-05-30 Thread unlvsur unlvsur
I/O Rings – When One I/O Operation is Not Enough – Winsider Seminars & Solutions Inc. (windows-internals.com) Sent from Mail for Windows 10 ___

[Mingw-w64-public] Any interests on recreating a C++ standard library with MinGW-w64 itself?

2021-05-30 Thread unlvsur unlvsur
some people want to link with msvcp instead of libstdc++. is that possible? Get Outlook for Android ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-p

[Mingw-w64-public] my new attempt to support MSVC STL for mingw-w64

2021-05-30 Thread trtaab trtaab
Do you think that is useful? I’ve heard a lot of people they are not happy with shared linking with libstdc++-6.dll. They want to shared linking with msvcp. some initial attempts · expnkx/MinGW-w64-STL@a2d31c6 (github.com)

Re: [Mingw-w64-public] wine FTBFS with mingw64 gcc 11: undefined reference to `sincos'

2021-05-30 Thread Dean Greer
Hi Jacek I’ve tested compiling wine-6.8 with mingw-gcc-11.1.0 (stock) with the provided patch applied and the compile finished without issue. Thanks, Dean aka Gcenx On Fri, May 14, 2021 at 1:28 PM Jacek Caban wrote: > Hi Alex, > > On 5/14/21 3:01 AM, Alex Xu (Hello71) wrote: > > Hi, > > > > I

[Mingw-w64-public] [PATCH] Fix compiler errors in shobjidl.h when NOGDI is defined

2021-05-30 Thread Orgad Shaneh
Signed-off-by: Orgad Shaneh --- mingw-w64-headers/include/shobjidl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mingw-w64-headers/include/shobjidl.h b/mingw-w64-headers/include/shobjidl.h index bd1633ae..33b77648 100644 --- a/mingw-w64-headers/include/shobjidl.h +++ b/min

[Mingw-w64-public] [PATCH] Add missing members into MINIDUMP_TYPE

2021-05-30 Thread Ruslan Garipov
Signed-off-by: Ruslan Garipov --- mingw-w64-headers/include/psdk_inc/_dbg_common.h | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mingw-w64-headers/include/psdk_inc/_dbg_common.h b/mingw-w64-headers/include/psdk_inc/_dbg_common.h index 48f2b9d7d..c42da025c 100644 --

Re: [Mingw-w64-public] [PATCH] Add missing members into MINIDUMP_TYPE

2021-05-30 Thread Liu Hao
在 2021-05-30 04:35, Ruslan Garipov 写道: +MiniDumpValidTypeFlags = 0x00ff, Please remove this trailing comma from the enumerator list. -- Best regards, Liu Hao OpenPGP_signature Description: OpenPGP digital signature __

Re: [Mingw-w64-public] [PATCHv2] headers/wincon: Don't define `LF_FACESIZE` when `NOGDI` is in, effect

2021-05-30 Thread Liu Hao
在 2021-05-30 00:07, JonY via Mingw-w64-public 写道: On 5/29/21 3:20 PM, Liu Hao wrote: 在 2021-05-26 09:56, Liu Hao 写道: When `NOGDI` is not defined (i.e. when GDI is desired), `LF_FACESIZE` is always defined, so there is no need to check for it here. ping? Looks good to me, thanks for loo

Re: [Mingw-w64-public] [PATCH] crt: Fix setting errno in the strtod based strtof implementation

2021-05-30 Thread Liu Hao
在 2021-05-30 05:30, Martin Storsjö 写道: In this case, strtod will have set errno for cases that were out of range for doubles. For doubles that were in range, but that are out of ranges for float, set errno before returning. Signed-off-by: Martin Storsjö --- mingw-w64-crt/stdio/strtof.c | 18 +