Re: [Mingw-w64-public] [PATCH] Make winpthreads work on Win98

2023-10-23 Thread sotrdg sotrdg
i am still using windows 95 Get Outlook for Android From: Christian Franke Sent: Monday, October 23, 2023 10:05:58 AM To: mingw-w64-public@lists.sourceforge.net Subject: Re: [Mingw-w64-public] [PATCH] Make winpthreads work on Win98 LIU H

Re: [Mingw-w64-public] [PATCH] Make winpthreads work on Win98

2023-10-23 Thread LIU Hao
在 2023-10-23 22:05, Christian Franke 写道: +1 from me because this patch also would bring back support for Win XP which (at least) also lacks GetTickCount64(). Currently even a C++ "Hello World!" program using std::cout does not run on Win XP because the C++ exception handling uses this winpthre

Re: [Mingw-w64-public] [PATCH] Make winpthreads work on Win98

2023-10-23 Thread Jonathan Schleifer
Am 23.10.23 um 07:41 schrieb LIU Hao: Our decision is that the change shall be within a `#if ...` block. Whether it is ``#if !defined(_WIN32_WINNT)` or `#if _WIN32_WINNT < 0x0500` is questionable, but the patch will not be accepted otherwise. The problem with this is that this is a library th

Re: [Mingw-w64-public] [PATCH] Make winpthreads work on Win98

2023-10-23 Thread Christian Franke
LIU Hao wrote: 在 2023/10/23 15:50, Jonathan Schleifer 写道: Could you please explain why a compile time check would be preferable over a runtime check here? The cost of this runtime check should not be noticeable, most likely not even measurable. Doing runtime check seems extremely common on Win

Re: [Mingw-w64-public] [PATCH] Make winpthreads work on Win98

2023-10-23 Thread Martin Storsjö
On Mon, 23 Oct 2023, LIU Hao wrote: 在 2023/10/23 15:50, Jonathan Schleifer 写道: Could you please explain why a compile time check would be preferable over a runtime check here? The cost of this runtime check should not be noticeable, most likely not even measurable. Doing runtime check seems e

Re: [Mingw-w64-public] [PATCH] Make winpthreads work on Win98

2023-10-23 Thread LIU Hao
在 2023/10/23 15:50, Jonathan Schleifer 写道: Could you please explain why a compile time check would be preferable over a runtime check here? The cost of this runtime check should not be noticeable, most likely not even measurable. Doing runtime check seems extremely common on Windows, and I've se