Re: [Mingw-w64-public] [PATCH 00/17] ARM64 support in MinGW, v3

2017-08-21 Thread Martin Storsjö
On Sun, 20 Aug 2017, Martin Storsjö wrote: This is the third round of patches adding initial support for ARM64. Since the previous round, some def files have been cleaned up and shared, and this architecture now only uses def files from lib-common so far. Many of the patches were previously re

[Mingw-w64-public] [Project News|New Builds]

2017-08-21 Thread niXman
Hi, The new builds of MinGW-W64 based on GCC-7.2.0 is uploaded. MinGW-w64 master branch is used. 32-bit: posix-sjlj: https://sf.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/7.2.0/threads-posix/sjlj/i686-7.2.0-release-posix-sjlj-rt_v6-rev0.7z posi

Re: [Mingw-w64-public] [PATCH 08/27] crt: Unify crypt32.def for lib64 and libarm32

2017-08-21 Thread Kai Tietz via Mingw-w64-public
Well, I don't think it is necessary to provide them. Thanks, Kai 2017-08-21 15:00 GMT+02:00 Martin Storsjö : > Hi, > > On Mon, 21 Aug 2017, Kai Tietz via Mingw-w64-public wrote: > >> Hello, >> >> I am not sure, if we might have users depending on those ordinal >> import ... I doubt it ... so > >

Re: [Mingw-w64-public] [PATCH 08/27] crt: Unify crypt32.def for lib64 and libarm32

2017-08-21 Thread Martin Storsjö
On Mon, 21 Aug 2017, Martin Storsjö wrote: Hi, On Mon, 21 Aug 2017, Kai Tietz via Mingw-w64-public wrote: Hello, I am not sure, if we might have users depending on those ordinal import ... I doubt it ... so These are already pushed - OK'd by JonY in https://sourceforge.net/p/mingw-w64/mai

Re: [Mingw-w64-public] [PATCH 27/27] crt: Merge lib32's msvcrt.def.in into lib-common

2017-08-21 Thread Kai Tietz via Mingw-w64-public
21 up to 27 are ok. Please go ahead and apply to master. Thanks, Kai 2017-08-17 14:14 GMT+02:00 Martin Storsjö : > Where in doubt, where there were non-obvious differences between > the lib32 and lib64 versions, I've kept the definitions separate > instead of trying to unify them too much. (This

Re: [Mingw-w64-public] [PATCH 20/27] crt: Unify rpcrt4.def for lib64 and libarm32

2017-08-21 Thread Kai Tietz via Mingw-w64-public
Patches 11 up to 20 are looking fine. Please apply. Thanks, Kai 2017-08-17 14:14 GMT+02:00 Martin Storsjö : > Signed-off-by: Martin Storsjö > --- > mingw-w64-crt/{lib64 => lib-common}/rpcrt4.def | 36 +- > mingw-w64-crt/libarm32/rpcrt4.def | 534 > - > 2

Re: [Mingw-w64-public] [PATCH 08/27] crt: Unify crypt32.def for lib64 and libarm32

2017-08-21 Thread Martin Storsjö
Hi, On Mon, 21 Aug 2017, Kai Tietz via Mingw-w64-public wrote: Hello, I am not sure, if we might have users depending on those ordinal import ... I doubt it ... so These are already pushed - OK'd by JonY in https://sourceforge.net/p/mingw-w64/mailman/message/36003392/. If the ordinals wer

Re: [Mingw-w64-public] [PATCH 06/27] crt: Unify bcrypt.def for lib64 and libarm32

2017-08-21 Thread Kai Tietz via Mingw-w64-public
Patch files 04 up to 10 are ok. Please go ahead and apply. Thanks, Kai 2017-08-17 14:14 GMT+02:00 Martin Storsjö : > Keep functions from both previous versions. > > Signed-off-by: Martin Storsjö > --- > mingw-w64-crt/{lib64 => lib-common}/bcrypt.def | 8 ++-- > mingw-w64-crt/libarm32/bcrypt.de

Re: [Mingw-w64-public] [PATCH 03/27] crt: Share a def file where lib64 has got a superset of the functions in libarm32

2017-08-21 Thread Kai Tietz via Mingw-w64-public
Hi, patch is ok. Thanks, Kai 2017-08-17 14:14 GMT+02:00 Martin Storsjö : > Include the C++ function definitions only on x86_64, since they were > only present in the lib64 def file. > > Signed-off-by: Martin Storsjö > --- > mingw-w64-crt/Makefile.am | 6 ++-- > .../c

Re: [Mingw-w64-public] [PATCH 08/27] crt: Unify crypt32.def for lib64 and libarm32

2017-08-21 Thread Kai Tietz via Mingw-w64-public
Hello, I am not sure, if we might have users depending on those ordinal import ... I doubt it ... so 02 - 03 patches are ok. Please go ahead and apply. Thanks, Ka 2017-08-17 14:14 GMT+02:00 Martin Storsjö : > Signed-off-by: Martin Storsjö > --- > mingw-w64-crt/{libarm32 => lib-common}/crypt32.d

Re: [Mingw-w64-public] [PATCH 01/27] crt: Include the def file in libwindowscodecs.a

2017-08-21 Thread Kai Tietz via Mingw-w64-public
Hello, patch is ok. Please go ahead and apply. Thanks, Kai 2017-08-17 14:14 GMT+02:00 Martin Storsjö : > Previously, we didn't actually ever include the def file in this library. > > Signed-off-by: Martin Storsjö > --- > mingw-w64-crt/Makefile.am | 3 +++ > mingw-w64-crt/lib32/Makefil

Re: [Mingw-w64-public] [PATCH 12/17] crtexe: Skip __initenv on arm64 just as on arm

2017-08-21 Thread JonY via Mingw-w64-public
On 08/20/2017 05:16 AM, Martin Storsjö wrote: > On Sun, 20 Aug 2017, JonY via Mingw-w64-public wrote: > >> On 08/19/2017 09:26 PM, Martin Storsjö wrote: >>> mainret = wmain (argc, argv, envp); >>> #else >>> -#ifndef __arm__ >>> +#if !defined(__arm__) && !defined(__aarch64__) >>> __inite