[Mingw-w64-public] Announcing v12.0.0

2024-05-28 Thread JonY via Mingw-w64-public
v12.0.0 is now released! Important: UCRT is now the default CRT runtime instead of MSVCRT, check the mingw-w64-doc/howto-build/ucrt-vs-msvcrt.txt document for details. Both header set and CRT must be configured and built with the same settings consistently for proper functionality. Switching r

Re: [Mingw-w64-public] [PATCH 2/2] widl: Quote path names in the makefile, to fix installing into a path that contains spaces

2019-11-30 Thread JonY via Mingw-w64-public
On 11/30/19 8:28 PM, Martin Storsjö wrote: > Signed-off-by: Martin Storsjö > --- > mingw-w64-tools/widl/Makefile.am | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/mingw-w64-tools/widl/Makefile.am > b/mingw-w64-tools/widl/Makefile.am > index 0cc45611e..7c570210e 100644

Re: [Mingw-w64-public] gnatdll not building

2019-12-02 Thread JonY via Mingw-w64-public
On 12/2/19 2:25 PM, Kacvinsky, Tom wrote: > > I looked through my notes and the last time I built the tool chain (that time, > for x86_64), I had to manually run "make gnattools" in addition to the "make > gnattools-cross". But this time around "make gnattools" fails with a link > error. > See a

Re: [Mingw-w64-public] gnatdll not building

2019-12-02 Thread JonY via Mingw-w64-public
On 12/2/19 2:58 PM, Kacvinsky, Tom wrote: >> >> Did you already setup your sysroot? > > I did not specify any sysroot in the configure command. Do you have a > recommendation for this? > > Here is what I have for the configure line for x86_64 > > $ /c/vector_deps/N/x64/mingw-msvc2017-ucrt/bin/g

Re: [Mingw-w64-public] New, mixed case Hyper-V header files

2019-12-06 Thread JonY via Mingw-w64-public
On 12/6/19 8:59 PM, Zach Bacon wrote: > I have to agree, on windows while it doesn't matter, cross compiling say from > linux it makes all the difference. I vote that it should be lower case.  > Go ahead with the rename. signature.asc Description: OpenPGP digital signature

Re: [Mingw-w64-public] [PATCH] crt: Split out the __cxa_atexit and __cxa_thread_atexit entry points to separate files

2019-12-10 Thread JonY via Mingw-w64-public
On 12/10/19 11:50 AM, Martin Storsjö wrote: > +int __mingw_cxa_thread_atexit(dtor_fn dtor, void *obj, void *dso) { > + return __cxa_thread_atexit(dtor, obj, dso); Did I miss something? The definition got renamed to __mingw_cxa_thread_atexit, yet it is calling __cxa_thread_atexit? signature.asc

Re: [Mingw-w64-public] [PATCHv2] crt: Split out the __cxa_atexit and __cxa_thread_atexit entry points to separate files

2019-12-11 Thread JonY via Mingw-w64-public
On 12/11/19 7:08 AM, Martin Storsjö wrote: > This avoids potential conflicts with e.g. libstdc++ (which provides > __cxa_thread_atexit), if something pulls in e.g. __dso_handle or > __cxa_atexit (which libstdc++ doesn't provide). > Patch OK. signature.asc Description: OpenPGP digital signature

Re: [Mingw-w64-public] Linker Error On Gcc Pass 2

2019-12-27 Thread JonY via Mingw-w64-public
On 12/27/19 9:01 PM, Thomas Dineen wrote: > Gentle People: > >    I am attempting to build a GCC Cross compiler running on CentOS > (RedHat) and targeting > Mingw x86_64-w64-mingw32-gcc. The linker Error occurs on Pass 2 of The > Gcc Build, noting that > all of the previous steps were successful.

Re: [Mingw-w64-public] [PATCH] include: Move headers from direct-x/include/ to include/.

2020-01-01 Thread JonY via Mingw-w64-public
On 1/1/20 8:56 AM, Biswapriyo Nath wrote: > Any update on this patch? It's been a year old :) > I'm not sure how this affects Cygwin, but I guess there shouldn't be clashes. signature.asc Description: OpenPGP digital signature ___ Mingw-w64-public mai

Re: [Mingw-w64-public] Cherry-picks to old release branches

2020-02-05 Thread JonY via Mingw-w64-public
On 2/5/20 3:17 AM, Liu Hao wrote: > 在 2020/2/4 下午9:38, Martin Storsjö 写道: >> >> The v5.x branch itself is an old release, so I presume there won't be >> any new actual releases from it, but that doesn't preclude adding >> further minor fixes on top of it, for users that check out the branch >> and

Re: [Mingw-w64-public] [PATCH] headers: Make conio.h self-sufficient in UCRT mode

2020-02-11 Thread JonY via Mingw-w64-public
On 2/11/20 8:56 PM, Martin Storsjö wrote: > In UCRT mode, conio.h uses the NULL define. Therefore, include > stddef.h at the top of the header. > > Signed-off-by: Martin Storsjö > --- > mingw-w64-headers/crt/conio.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/mingw-w64-headers/crt/

Re: [Mingw-w64-public] [PATCH] headers: winerror.h add security error values

2020-04-23 Thread JonY via Mingw-w64-public
On 4/22/20 4:09 PM, Biswapriyo Nath wrote: > ... > Patch OK, applied to master, thanks. signature.asc Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/

Re: [Mingw-w64-public] Spam from Steve The Man

2020-04-24 Thread JonY via Mingw-w64-public
On 4/24/20 1:30 PM, sisyphus wrote: > Bloody Hell, > I know it's not really spam, but could you guys at least address something > that I care about (eg https://sourceforge.net/p/mingw-w64/bugs/728 ) > instead of all the piffle that has been filling this list of late ?? > > Or maybe I should just u

Re: [Mingw-w64-public] [PATCH] headers/knownfolders.h: add missing folder ids

2020-06-16 Thread JonY via Mingw-w64-public
On 6/15/20 7:17 AM, Biswapriyo Nath wrote: > Patch looks good to me. signature.asc Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-

Re: [Mingw-w64-public] [PATCH] winnt.h: Add missing STATUS_HEAP_CORRUPTION define.

2020-07-15 Thread JonY via Mingw-w64-public
On 7/15/20 3:43 PM, Jacek Caban wrote: > Signed-off-by: Jacek Caban > --- >  mingw-w64-headers/include/winnt.h | 1 + >  1 file changed, 1 insertion(+) > Patch looks good to me. signature.asc Description: OpenPGP digital signature ___ Mingw-w64-publi

Re: [Mingw-w64-public] a possible bug in mingw-w64

2020-08-05 Thread JonY via Mingw-w64-public
On 8/5/20 9:53 PM, NightStrike wrote: > No attachment > Try attaching as .txt. signature.asc Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/m

Re: [Mingw-w64-public] [PATCH] crt: add prntvpt export library

2020-09-07 Thread JonY via Mingw-w64-public
On 9/7/20 1:12 PM, Biswapriyo Nath wrote: > > > Patch looks good to me. signature.asc Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ming

[Mingw-w64-public] Announcing v8.0.0

2020-09-18 Thread JonY via Mingw-w64-public
v8.0.0 is now released! Notable changes: * New Hyper-V headers and libraries by Biswapriyo Nath * Many headers updated from Wine by Jacek Caban. * ARM math improvements by Martin Storsjö * floating point fixes by Liu Hao * many *printf compatibility fixes by Liu Hao and Martin Storsjö * massive W

Re: [Mingw-w64-public] [PATCH 1/2] crt: Update ncrypt export library.

2020-10-05 Thread JonY via Mingw-w64-public
On 10/5/20 6:43 PM, Biswapriyo Nath wrote: Looks good to me. OpenPGP_signature Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-p

Re: [Mingw-w64-public] [PATCH 2/2] headers: Add new functions in ncrypt.h.

2020-10-05 Thread JonY via Mingw-w64-public
On 10/5/20 6:44 PM, Biswapriyo Nath wrote: Looks good to me. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] A problem with getcwd() and chdir()

2020-10-06 Thread JonY via Mingw-w64-public
On 10/6/20 8:12 PM, Arjen Markus wrote: Hello, I have run into a problem with the functions getcwd() and chdir() used via the GCC compiler under MinGW. I try to use the directory "/home" (well, just an example): ls /home cd /home give no problem, but chdir("/home") in a C program fails. I used g

Re: [Mingw-w64-public] [PATCH] change GetThemeSysFont() to accept a LOGFONTW* parameter (bug #862)

2020-10-24 Thread JonY via Mingw-w64-public
On 10/24/20 9:36 PM, Ozkan Sezer wrote: See: https://sourceforge.net/p/mingw-w64/bugs/862/ The reported issue is analogous to GetThemeFont(), i.e. see: https://sourceforge.net/p/mingw-w64/feature-requests/82/ https://sourceforge.net/p/mingw-w64/mingw-w64/ci/ac919255813c22aaad9de8b230216f0a8c39d1

[Mingw-w64-public] [PATCH] stddef.h: sync max_align_t definition with newer gcc

2020-10-31 Thread JonY via Mingw-w64-public
Attached patch OK? From c189de0294c89cb87313748be5ce0aa8045e Mon Sep 17 00:00:00 2001 From: Jonathan Yong <10wa...@gmail.com> Date: Sun, 1 Nov 2020 02:22:39 + Subject: [PATCH] stddef.h: sync max_align_t definition with newer gcc Related to: https://sourceforge.net/p/mingw-w64/bugs/778/ ht

Re: [Mingw-w64-public] [PATCH] stddef.h: sync max_align_t definition with newer gcc

2020-11-01 Thread JonY via Mingw-w64-public
On 11/1/20 8:37 AM, Liu Hao wrote: 在 2020/11/1 10:31, JonY via Mingw-w64-public 写道: typedef struct { long long __max_align_ll __attribute__((__aligned__(__alignof__(long long; long double __max_align_ld __attribute__((__aligned__(__alignof__(long double; + /* _Float128 is

Re: [Mingw-w64-public] [PATCH 1/2] headers: Move IPv4/v6 options to ws2ipdef.h from ws2tcpip.h.

2021-01-02 Thread JonY via Mingw-w64-public
On 1/2/21 3:08 PM, Biswapriyo Nath wrote: Any reply on this patch? I don't really have any opinions of this patch, I'll apply both if there are still no objections in a few days. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourcefor

Re: [Mingw-w64-public] [PATCH 1/2] headers: Move IPv4/v6 options to ws2ipdef.h from ws2tcpip.h.

2021-01-04 Thread JonY via Mingw-w64-public
On 1/3/21 2:15 AM, Liu Hao wrote: 在 2021/1/3 上午12:01, JonY via Mingw-w64-public 写道: On 1/2/21 3:08 PM, Biswapriyo Nath wrote: Any reply on this patch? I don't really have any opinions of this patch, I'll apply both if there are still no objections in a few days. LGTM.

Re: [Mingw-w64-public] [PATCH] crt: Add deprecated `_{str, wcs}lwrt` aliases in DEF

2021-02-04 Thread JonY via Mingw-w64-public
On 2/5/21 6:35 AM, Liu Hao wrote: 在 2021/1/23 上午10:21, Liu Hao 写道: This was done with the following commands: sed -Ei 's/^_(str|wcs)lwr\>.*$/&\n\1lwr == _\1lwr/' `grep -Elr '\<_strlwr\>' mingw-w64-crt` git checkout mingw-w64-crt/lib-common/api-ms-win-crt-string-l1-1-0.def Signed-off-by:

Re: [Mingw-w64-public] [Win32 API Signature Change] Discrepancy in API signature for SymLoadModule64

2021-03-06 Thread JonY via Mingw-w64-public
On 3/5/21 2:01 PM, Liu Hao wrote: 在 2021-03-05 08:10, scr3a...@auresium.com 写道: Note the difference : PSTR vs PCSTR. I replaced PSTR with PCSTR locally to fix a build issue I had and it was enough. Is it a good fix ? If yes should I send a patch here on the mailing list ? This looks l

Re: [Mingw-w64-public] [Win32 API Signature Change] Discrepancy in API signature for SymLoadModule64

2021-03-06 Thread JonY via Mingw-w64-public
On 3/7/21 7:41 AM, scr3a...@auresium.com wrote: Mmmh somehow the attachement didn't follow my last message. Sorry for the spam. I hope this one will do it. Scr3am Patch looks good to me, applied to master branch. OpenPGP_signature Description: OpenPGP digital signature _

[Mingw-w64-public] [PATCH] Core Audio Constants

2021-04-18 Thread JonY via Mingw-w64-public
Attached patch OK? The GUIDs seem to be copies from the existing constants. From e97f599818e77d2a13ec8777cb2cfa6b56ed872c Mon Sep 17 00:00:00 2001 From: Jonathan Yong <10wa...@gmail.com> Date: Sun, 18 Apr 2021 07:25:23 + Subject: [PATCH] Core Audio Constants Signed-off-by: Jonathan Yong <10wa

Re: [Mingw-w64-public] [PATCH] Core Audio Constants

2021-04-18 Thread JonY via Mingw-w64-public
On 4/18/21 1:03 PM, Liu Hao wrote: 在 2021-04-18 15:31, JonY via Mingw-w64-public 写道: +#define SPATIAL_AUDIO_POSITION_BYTE_COUNT sizeof(float) * 3 This had better be wrapped in parentheses like `(sizeof(float) * 3)`. The others look good to me. Thanks, pushed to master branch with the

[Mingw-w64-public] Announcing v8.0.2

2021-05-09 Thread JonY via Mingw-w64-public
v8.0.2 is now released! This release was primarily intended to fix building the runtime using GCC11. Thanks for Liu Hao for the GCC11 fixes and Ozkan Sezer for the Direct Draw headers updates from Wine and GetThemeSysFont fix. Note there is no v8.0.1 release, it was mistakenly tagged against

[Mingw-w64-public] [PATCH] adsiid constants

2021-05-10 Thread JonY via Mingw-w64-public
Patch OK? Thanks to mikedld for working on it via IRC. From 7c43e172f1eedd1d2adb93a14352c3233b559bd3 Mon Sep 17 00:00:00 2001 From: Jonathan Yong <10wa...@gmail.com> Date: Mon, 10 May 2021 14:00:11 + Subject: [PATCH] adsiid: Active Directory GUIDs Signed-off-by: Jonathan Yong <10wa...@gmail.c

Re: [Mingw-w64-public] [PATCH] adsiid constants

2021-05-10 Thread JonY via Mingw-w64-public
On 5/10/21 4:23 PM, Liu Hao wrote: 在 2021-05-10 23:04, JonY via Mingw-w64-public 写道: Patch OK? Thanks to mikedld for working on it via IRC. 0001-adsiid-Active-Directory-GUIDs.patch According to some *unauthoritative* sources, there are a couple of errors in this patch. +DEFINE_GUID

Re: [Mingw-w64-public] [PATCH] adsiid constants

2021-05-11 Thread JonY via Mingw-w64-public
On 5/11/21 1:38 PM, Liu Hao wrote: 在 2021-05-11 01:33, JonY via Mingw-w64-public 写道: Fixed and updated to use consistent casing. This patch looks good to me. Thanks for reviewing, pushed to master branch. OpenPGP_signature Description: OpenPGP digital signature

Re: [Mingw-w64-public] [PATCH] headers: Add definitions for Compact OS compression.

2021-05-12 Thread JonY via Mingw-w64-public
On 5/12/21 4:20 PM, Christian Franke wrote: Use case of Compact OS compression: https://sourceware.org/pipermail/cygwin-apps/2021-May/041225.html Can you move the entries to wofapi.h? MSDN seems to say it should be there: https://docs.microsoft.com/en-us/windows/win32/api/wofapi/ns-wofapi-wim_

Re: [Mingw-w64-public] [PATCH] headers: Add definitions for Compact OS compression.

2021-05-12 Thread JonY via Mingw-w64-public
On 5/12/21 6:57 PM, Biswapriyo Nath wrote: According to WinSDK 10.0.19041.0, Christian seems to be correct. Do the rest of https://docs.microsoft.com/en-us/windows/win32/api/wofapi/ functions also go into winioctl.h? OpenPGP_signature Description: OpenPGP digital signature

Re: [Mingw-w64-public] [PATCH] headers: Add definitions for Compact OS compression.

2021-05-13 Thread JonY via Mingw-w64-public
On 5/13/21 7:19 AM, Biswapriyo Nath wrote: The patch does not contain anything from wofapi.h (though the name has literally "WOF" in it). And yes, we all know it's WinSDK, docs does not match with actual implementation :) I mean the patch is fine as is, I plan to also put in the functions soon

[Mingw-w64-public] [PATCH] wofutil def files for x86/x86_64

2021-05-13 Thread JonY via Mingw-w64-public
Patch OK? Someone with ARM should also send the def files. From 02b808c20ad4040c5b5722034cf12b584b7e3205 Mon Sep 17 00:00:00 2001 From: Jonathan Yong <10wa...@gmail.com> Date: Thu, 13 May 2021 16:13:00 + Subject: [PATCH] wofutil: new import lib Signed-off-by: Jonathan Yong <10wa...@gmail.com>

Re: [Mingw-w64-public] [PATCH] wofutil def files for x86/x86_64

2021-05-13 Thread JonY via Mingw-w64-public
On 5/13/21 4:37 PM, Biswapriyo Nath wrote: Both wofutil are same in x64 and arm64, verified with (if not wrong): nm "C:\Program Files (x86)\Windows Kits\10\Lib\10.0.19041.0\um\x64\wofutil.lib" | grep __imp Updated the patch. From c4616eab1ffc31ea16679e7a7abc155280afb15c Mon Sep 17 00:00:00 200

Re: [Mingw-w64-public] [PATCH] wofutil def files for x86/x86_64

2021-05-13 Thread JonY via Mingw-w64-public
On 5/13/21 5:58 PM, Martin Storsjö wrote: On Thu, 13 May 2021, JonY via Mingw-w64-public wrote: On 5/13/21 4:37 PM, Biswapriyo Nath wrote: Both wofutil are same in x64 and arm64, verified with (if not wrong): nm "C:\Program Files (x86)\Windows Kits\10\Lib\10.0.19041.0\um\x64\wofuti

Re: [Mingw-w64-public] [PATCH] headers: Add wmsdk.h

2021-05-14 Thread JonY via Mingw-w64-public
On 5/13/21 3:31 PM, Biswapriyo Nath wrote: Patch OK, will commit soon if nobody has objections. OpenPGP_signature Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.source

Re: [Mingw-w64-public] [PATCH] headers: Add more constants to STORAGE_BUS_TYPE.

2021-05-14 Thread JonY via Mingw-w64-public
On 5/14/21 12:35 PM, Christian Franke wrote: ... in particular BusTypeNvme. Patch OK, will push soon if no objections. OpenPGP_signature Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.ne

Re: [Mingw-w64-public] [PATCH] headers: Add more constants to STORAGE_BUS_TYPE.

2021-05-14 Thread JonY via Mingw-w64-public
On 5/14/21 1:46 PM, JonY wrote: On 5/14/21 12:35 PM, Christian Franke wrote: ... in particular BusTypeNvme. Patch OK, will push soon if no objections. Pushed to master branch. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge

Re: [Mingw-w64-public] [PATCH] headers: Add wmsdk.h

2021-05-14 Thread JonY via Mingw-w64-public
On 5/14/21 12:14 PM, JonY wrote: On 5/13/21 3:31 PM, Biswapriyo Nath wrote: Patch OK, will commit soon if nobody has objections. Pushed to master branch. OpenPGP_signature Description: OpenPGP digital signature ___ Mingw-w64-public mailing lis

[Mingw-w64-public] [PATCH] _HUGE for ucrt

2021-05-15 Thread JonY via Mingw-w64-public
Hi, Attached patch OK? From c9bef0201c412ee20531fdd777978644e0eef76c Mon Sep 17 00:00:00 2001 From: Jonathan Yong <10wa...@gmail.com> Date: Sat, 15 May 2021 12:56:51 + Subject: [PATCH] crt: _HUGE for UCRT Signed-off-by: Jonathan Yong <10wa...@gmail.com> --- mingw-w64-crt/Makefile.am | 1 +

Re: [Mingw-w64-public] [PATCH] _HUGE for ucrt

2021-05-15 Thread JonY via Mingw-w64-public
On 5/15/21 12:58 PM, JonY wrote: Hi, Attached patch OK? Simplified patch. >From ff422cf04d8f9e105c68ac2ffdd25da4add8f8fb Mon Sep 17 00:00:00 2001 From: Jonathan Yong <10wa...@gmail.com> Date: Sat, 15 May 2021 12:56:51 + Subject: [PATCH] crt: _HUGE for UCRT Signed-off-by: Jonathan Yong <10

Re: [Mingw-w64-public] [PATCH] _HUGE for ucrt

2021-05-15 Thread JonY via Mingw-w64-public
On 5/15/21 2:03 PM, Liu Hao wrote: 在 2021-05-15 21:01, JonY via Mingw-w64-public 写道: On 5/15/21 12:58 PM, JonY wrote: Hi, Attached patch OK? Simplified patch. Is it possible to declare it as `const double`? It need not be mutable. The prototype declares it as a non-const, will it be

Re: [Mingw-w64-public] My new attempt to support msvc stl for mingw-w64

2021-05-15 Thread JonY via Mingw-w64-public
On 5/15/21 2:27 PM, sotrdg sotrdg wrote: 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] [PATCH] _HUGE for ucrt

2021-05-16 Thread JonY via Mingw-w64-public
On 5/16/21 8:25 AM, Liu Hao wrote: 在 2021-05-15 23:23, JonY via Mingw-w64-public 写道: The prototype declares it as a non-const, will it be a problem? In addition, it looks like UCRT doesn't declare it as an imported symbol any more. It's plain `extern double const _HUGE;` now.

Re: [Mingw-w64-public] [PATCH] _HUGE for ucrt

2021-05-16 Thread JonY via Mingw-w64-public
On 5/16/21 9:36 AM, Liu Hao wrote: 在 2021-05-16 17:21, JonY via Mingw-w64-public 写道: diff --git a/mingw-w64-headers/crt/math.h b/mingw-w64-headers/crt/math.h index 3754dc64..b9277bd0 100644 --- a/mingw-w64-headers/crt/math.h +++ b/mingw-w64-headers/crt/math.h @@ -143,8 +143,12 @@ extern &q

Re: [Mingw-w64-public] [PATCH] _HUGE for ucrt

2021-05-16 Thread JonY via Mingw-w64-public
On 5/16/21 10:52 AM, Liu Hao wrote: 在 2021-05-16 18:49, JonY via Mingw-w64-public 写道: Updated. Thanks. LGTM. Thanks for the review, pushed to master. OpenPGP_signature Description: OpenPGP digital signature ___ Mingw-w64-public mailing list

Re: [Mingw-w64-public] [PATCH 1/4] crt: Add libopends60.a.

2021-05-17 Thread JonY via Mingw-w64-public
On 5/17/21 11:28 PM, Mark Harmstone wrote: Sorry, I messed up the subject line - this is a standalone patch. Please do not include any regenerated files in the patch for review, thanks. OpenPGP_signature Description: OpenPGP digital signature ___ M

[Mingw-w64-public] Announcing v9.0.0

2021-05-22 Thread JonY via Mingw-w64-public
v9.0.0 is now released! Notable changes: UCRT updates by Biswapriyo Nath Wine updates by Jacek Caban Various new and updated API headers by Biswapriyo Nath and Liu Hao Various UCRT and MSVCRT fixes by Martin Storsjö at_quick_exit implementation by Martin Storsjö dism API by Biswapriyo Nath idl fi

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

2021-05-29 Thread 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 looking into this. OpenPGP_signature Description: O

Re: [Mingw-w64-public] [PATCH] crt: Fix a typo in the ucrt __imp_vfscanf assignment

2021-08-05 Thread JonY via Mingw-w64-public
On 8/5/21 8:10 AM, Martin Storsjö wrote: The wrong function was assigned; this was a bug present since 0dd9563a3ad71ad75cab1699ba5cfef2dd0bf9d8 (April 2021). Signed-off-by: Martin Storsjö --- mingw-w64-crt/stdio/ucrt_vfscanf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [Mingw-w64-public] [PATCH] crt: Pass --temp-prefix to dlltool, if supported

2021-08-16 Thread JonY via Mingw-w64-public
On 8/16/21 12:42 PM, Martin Storsjö wrote: When GNU dlltool generates import libraries, it picks a semi-random prefix string for its file names based on the pid of the process. Normally, the prefix doesn't matter much, but when we merge multiple import libraries into one, like for libucrt.a, the

[Mingw-w64-public] [Patch] Suppress lto warnings from pseudo-reloc.c

2021-08-26 Thread JonY via Mingw-w64-public
Make the variable type similar in __ImageBase in pesect.c. Patch OK? From 648a40d3e667404702d6114ce7530d712f76400c Mon Sep 17 00:00:00 2001 From: Jonathan Yong <10wa...@gmail.com> Date: Thu, 26 Aug 2021 09:56:24 + Subject: [PATCH] pseudo-reloc.c: fix lto symbol warning Signed-off-by: Jonathan

Re: [Mingw-w64-public] [Patch] Suppress lto warnings from pseudo-reloc.c

2021-08-26 Thread JonY via Mingw-w64-public
On 8/26/21 2:08 PM, LIU Hao wrote: 在 2021-08-26 18:01, JonY via Mingw-w64-public 写道: Make the variable type similar in __ImageBase in pesect.c. Patch OK? LGTM. Thanks. Done, pushed to master. OpenPGP_signature Description: OpenPGP digital signature

Re: [Mingw-w64-public] [PATCH] wtypes.h: replace #include <...> with #include "..." for rpc

2021-09-04 Thread JonY via Mingw-w64-public
On 9/4/21 5:50 AM, LIU Hao wrote: 在 9/4/21 1:18 PM, Jonathan Marler 写道: I could but this project builds with MSVC and I noticed that the MSVC headers are using the same include style for these 2 particular files. Note that we only need to change these 2 lines, to fix this.  What reason is there

Re: [Mingw-w64-public] contributions

2021-09-05 Thread JonY via Mingw-w64-public
On 9/5/21 12:58 PM, Glenn Burkhardt wrote: I don't know if those functions are available from Cygwin.  But they are not in MinGW-w64.  I don't care how they get to MinGW-w64, it would be convenient to have them. And why do you bring up Cygwin?  This is the MinGW-w64 mailing list, right? Use

Re: [Mingw-w64-public] [PATCH] crt: Add missing exports in lib32/authz.def

2021-09-30 Thread JonY via Mingw-w64-public
On 10/1/21 4:33 AM, Biswapriyo Nath wrote: Patch looks OK. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] [PATCH] headers: Add new names in winioctl.h

2021-09-30 Thread JonY via Mingw-w64-public
On 10/1/21 4:32 AM, Biswapriyo Nath wrote: Patch looks OK. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] [PATCH] headers: Add nvme.h

2021-09-30 Thread JonY via Mingw-w64-public
On 9/30/21 2:37 PM, Biswapriyo Nath wrote: Patch looks OK. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Re: [Mingw-w64-public] Patches to fix #515 and 916.

2021-10-02 Thread JonY via Mingw-w64-public
On 10/2/21 5:27 PM, David James wrote: Hello – I’ve coded some fixed for bugs #515 Incorrect sign output from asinh (which also impacted atanh) and #916 asinh incorrect for large values and attached

Re: [Mingw-w64-public] Building winpthreads with MSVC tools

2024-11-12 Thread JonY via Mingw-w64-public
On 11/12/24 18:52, Kirill Makurin wrote: Hi, I have made some changes to the patch3, including using LN_S instead of `cp -f` (but see below). First of all, I split it into two different patches. One for Makefile.am and configure.ac, and another for tests/Makefile.am since the changes are not

Re: [Mingw-w64-public] crt: Add libquartz import library to arm64

2025-04-22 Thread JonY via Mingw-w64-public
On 4/22/25 10:06 AM, Zach Bacon wrote: I think you forgot to attach the patch On Tue, Apr 22, 2025, 5:28 a.m. Hernan Martinez via Mingw-w64-public < mingw-w64-public@lists.sourceforge.net> wrote: The exported symbols are the same as x64 Please add the patch attachment as .txt, SF has been kn

Re: [Mingw-w64-public] [PATCH] crt/fesetexceptflag: Fix MXCSR operation

2025-02-25 Thread JonY via Mingw-w64-public
On 2/25/25 7:59 AM, LIU Hao wrote: 在 2025-02-14 11:01, LIU Hao 写道: From 8959c30982e0802fc3d12c9e1688145ac5708cf0 Mon Sep 17 00:00:00 2001 From: LIU Hao Date: Fri, 14 Feb 2025 10:57:36 +0800 Subject: [PATCH] crt/fesetexceptflag: Fix MXCSR operation It should set the exception bits, rather than

[Mingw-w64-public] Announcing v13.0.0

2025-06-07 Thread JonY via Mingw-w64-public
v13.0.0 is now released! Notable changes: * Added import libraries for msvcr40d.dll, msvcrtd.dll, msvcr70d.dll, msvcr71d.dll, msvcr80d.dll, msvcr100d.dll, msvcr110d.dll. * Better CRT API consistency between UCRT and MSVCRT, making many APIs available to earlier versions of the MSVCR* runtime as

<    1   2   3