Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-20 Thread LIU Hao
在 2022-03-20 16:39, Martin Storsjö 写道: Sure, moving it out elsewhere is an option too. I wouldn't entirely rule out putting it in mingw-w64-crt either, but we'd need to tweak the C++ compiler detection code - I haven't had time to try that yet. I recommend that we don't bring C++ into the

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-20 Thread Martin Storsjö
On Sun, 20 Mar 2022, LIU Hao wrote: 在 2022-03-20 12:50, Biswapriyo Nath 写道: If this comsupp library can not be integrated with main crt libraries, is it possible to add this library in mingw-w64-libraries folder and then add option (e.g. --enable-extras) in configure.ac to build from that folde

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-20 Thread LIU Hao
在 2022-03-20 12:50, Biswapriyo Nath 写道: If this comsupp library can not be integrated with main crt libraries, is it possible to add this library in mingw-w64-libraries folder and then add option (e.g. --enable-extras) in configure.ac to build from that folder? It is also what Microsoft people

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-19 Thread Biswapriyo Nath
If this comsupp library can not be integrated with main crt libraries, is it possible to add this library in mingw-w64-libraries folder and then add option (e.g. --enable-extras) in configure.ac to build from that folder? ___ Mingw-w64-public mailing li

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-17 Thread Jacek Caban
On 3/17/22 09:56, Martin Storsjö wrote: However, autotools does some dubious choices here. If I'm configuring a cross compiler, and I do have x86_64-w64-mingw32-gcc but I don't have x86_64-w64-mingw32-g++ because I built only with --enable-languages=c, the configure script does this detection

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-17 Thread Martin Storsjö
On Thu, 17 Mar 2022, LIU Hao wrote: 在 2022/3/16 23:25, Biswapriyo Nath 写道: As you wish. Here is the 2nd update. I suddenly realize this is C++ source. Thanks for catching this issue! This may pull in libstdc++ and libgcc (or libc++, whatever). Microsoft docs say this function returns a s

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-16 Thread LIU Hao
在 2022/3/16 23:25, Biswapriyo Nath 写道: As you wish. Here is the 2nd update. I suddenly realize this is C++ source. This may pull in libstdc++ and libgcc (or libc++, whatever). Microsoft docs say this function returns a string that the user has to `delete[]` so I suspect we can't rewrite this

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-16 Thread Biswapriyo Nath
As you wish. Here is the 2nd update. From f373089471ec8101d274851689ad65dde270f0e1 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Wed, 16 Mar 2022 19:20:27 +0530 Subject: [PATCH 1/2] crt: Add comsupp library Required for unrar project Signed-off-by: Biswapriyo Nath --- mingw-w64-crt/Make

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-16 Thread LIU Hao
在 2022-03-16 22:22, Biswapriyo Nath 写道: diff --git a/COPYING.MinGW-w64-runtime/COPYING.MinGW-w64-runtime.txt b/COPYING.MinGW-w64-runtime/COPYING.MinGW-w64-runtime.txt index ca6a077..dcf0807 100644 --- a/COPYING.MinGW-w64-runtime/COPYING.MinGW-w64-runtime.txt +++ b/COPYING.MinGW-w64-runtime/COPYI

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-16 Thread Biswapriyo Nath
Here are the updated patch files. From f373089471ec8101d274851689ad65dde270f0e1 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Wed, 16 Mar 2022 19:51:27 +0530 Subject: [PATCH 1/2] crt: Add comsupp library Required for unrar project Signed-off-by: Biswapriyo Nath --- mingw-w64-crt/Makefil

Re: [Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-12 Thread LIU Hao
在 2022-03-11 15:19, Biswapriyo Nath 写道: 0001-crt-Add-comsupp-library.patch From 809cd7851d20d423fc1e9dd9df6cd107d343d7fc Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Fri, 11 Mar 2022 12:47:59 +0530 Subject: [PATCH] crt: Add comsupp library Required for unrar project Signed-off-by: Bis

[Mingw-w64-public] [PATCH] crt: Add comsupp library

2022-03-10 Thread Biswapriyo Nath
From 809cd7851d20d423fc1e9dd9df6cd107d343d7fc Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Fri, 11 Mar 2022 12:47:59 +0530 Subject: [PATCH] crt: Add comsupp library Required for unrar project Signed-off-by: Biswapriyo Nath --- mingw-w64-crt/Makefile.am| 17 +++ mingw-w64-c