I'm fine with the whole patch series. I wrote about one small cosmetic
issue which could be adjusted during applying series to git.
___
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/min
On Thursday 08 May 2025 16:40:47 Lasse Collin wrote:
> In double-byte character sets, the trail byte of a two-byte character
> can be a backslash. If such a two-byte character was at the end of
> the pathname, the trailing backslash was incorrectly removed.
>
> The code still removes only one trai
This change seems to break the 64bit msvcrt build for gcc:
x86_64-w64-mingw32\bin\ld.exe: ada/adaint.o:adaint.c:(.text+0x4375):
undefined reference to `fstat64'
Here a smaller reproducer:
$ cat x.c
#include
int main( void )
{
struct stat64 something;
fstat64(0, &something);
return 0;