Re: [Mingw-w64-public] [PATCH 2/2] crt: Add new ioring apis

2024-10-09 Thread LIU Hao
在 2024-10-08 22:59, Biswapriyo Nath 写道: From 1d8a4bda25f77848a01a161440e892ade3eec046 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Tue, 8 Oct 2024 14:56:48 + Subject: [PATCH 2/2] crt: Add new ioring apis Signed-off-by: Biswapriyo Nath --- mingw-w64-crt/lib-common/kernel32.def.in |

Re: [Mingw-w64-public] [PATCH] Use gitattributes to force LF line endings on shell scripts

2024-10-09 Thread LIU Hao
在 2024-10-08 23:00, Antonin Décimo 写道: Otherwise bash errors with errors such as ./configure: line 17: $'\r': command not found ./configure: line 33: syntax error near unexpected token `newline' '/configure: line 33: ` ;; Signed-off-by: Antonin Décimo --- .gitattributes

Re: [Mingw-w64-public] [PATCH 1/4] headers: Fix compile warning: D2DERR_* redefined

2024-10-09 Thread Martin Storsjö
On Sat, 28 Sep 2024, Pali Rohár wrote: Hello Martin, could you look also at this change? I would somewhat hope that someone else could tend to this patch - the crt patches are more than enough work to review... // Martin ___ Mingw-w64-public mail

Re: [Mingw-w64-public] [PATCH] crt: Remove _ftime_s symbol alias from msvcrt.def.in

2024-10-09 Thread Martin Storsjö
On Sat, 28 Sep 2024, Pali Rohár wrote: Header file sys/timeb_s.h defines _ftime_s only as a macro which expands either to _ftime32_s or _ftime64_s based on _USE_32BIT_TIME_T setting. MS VC++ 2005+ header files also defines only _ftime_s as a macro and do not provide any _ftime_s function declara

Re: [Mingw-w64-public] [PATCH 1/5] crt: Use common mingw-w64 implementation of _get_output_format() also for UCRT builds

2024-10-09 Thread Martin Storsjö
On Sat, 28 Sep 2024, Pali Rohár wrote: Pre-msvcr80.dll builds, including msvcrt.dll builds use _get_output_format() implementation from mingw-w64 output_format.c source file. Use it also for UCRT builds instead of current stub in ucrt_compat.c. --- mingw-w64-crt/Makefile.am| 1 + mingw-w6

[Mingw-w64-public] [PATCH] crt: Add new APIs in cfgmgr32 import library

2024-10-09 Thread Biswapriyo Nath
From 5a837cf11dce680077fd4b4b87f5f2d2820e70fd Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Wed, 9 Oct 2024 16:18:45 + Subject: [PATCH] crt: Add new APIs in cfgmgr32 import library Signed-off-by: Biswapriyo Nath --- mingw-w64-crt/lib-common/cfgmgr32.def | 6 - mingw-w64-crt/lib

Re: [Mingw-w64-public] [PATCH] Use gitattributes to force LF line endings on shell scripts

2024-10-09 Thread Antonin Décimo
> > +# Set the default behavior, in case people don't have core.autocrlf set. > > +* text=auto > > Would you prefer `autocrlf=input` to `autocrlf=auto`? Not necessarily, were there ever unwanted CRLF or LF being committed to the repository? What really matters to me are unwanted CRLF when checking

Re: [Mingw-w64-public] location paths of system libraries is not printed by -print-file-name

2024-10-09 Thread Marius Mikučionis
On Wed, 9 Oct 2024 at 03:06, LIU Hao wrote: > 在 2024-10-08 23:00, Marius Mikučionis 写道: > > Yes, but it does not specify how linked: statically or dynamically. It > is useful in both cases. > > This feature is important when diagnosing the build system (which > library exactly the compiler is > >

Re: [Mingw-w64-public] Wrong base class for ICompositorInterop in windows.ui.composition.interop.idl

2024-10-09 Thread Biswapriyo Nath
This issue has been fixed in this upstream commit https://gitlab.winehq.org/wine/wine/-/commit/7aa07d32e7549eccb85478115d4f5b0d2830028f. It will be imported to mingw-w64 soon. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net http

[Mingw-w64-public] [PATCH] headers: Add new symbols in tbs.h

2024-10-09 Thread Biswapriyo Nath
From b72109e4b76b2c81d5fba3c9dc7698a60385c99e Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Thu, 10 Oct 2024 06:22:56 + Subject: [PATCH] headers: Add new symbols in tbs.h Fixes https://github.com/mingw-w64/mingw-w64/issues/62 Signed-off-by: Biswapriyo Nath --- mingw-w64-headers/inc

Re: [Mingw-w64-public] [PATCH] Use gitattributes to force LF line endings on shell scripts

2024-10-09 Thread LIU Hao
在 2024-10-09 23:37, Antonin Décimo 写道: Not necessarily, were there ever unwanted CRLF or LF being committed to the repository? What really matters to me are unwanted CRLF when checking out files. The rest could be left to the user. I chose `autocrlf=auto` as it is GitHub suggested default. Fran

Re: [Mingw-w64-public] [PATCH 1/4] headers: Fix compile warning: D2DERR_* redefined

2024-10-09 Thread LIU Hao
在 2024-10-10 04:45, Martin Storsjö 写道: On Sat, 28 Sep 2024, Pali Rohár wrote: Hello Martin, could you look also at this change? I would somewhat hope that someone else could tend to this patch - the crt patches are more than enough work to review... The change looks good to me. Although