Re: [extern] Re: [PATCH 1/2] libstdc++: Support UNC paths on MinGW in fs::path

2025-05-10 Thread Johannes Grunenberg
On 10/05/2025 15:09, Jonathan Wakely wrote: > Please confirm that you're using it that way (and not just adding it > because others do so). Yes, that's how I'm using it.

[PATCH 2/2] libstdc++: Extend tests for UNC paths on MinGW

2025-05-10 Thread Johannes Grunenberg
/decompose/root_path.cc: Test for Windows paths. * testsuite/27_io/filesystem/path/decompose/stem.cc: Test for Windows paths. * testsuite/27_io/filesystem/path/generation/relative.cc: Test for Windows paths. Signed-off-by: Johannes Grunenberg --- .../filesystem

[PATCH 1/2] libstdc++: Support UNC paths on MinGW in fs::path

2025-05-10 Thread Johannes Grunenberg
stem/path/query/is_absolute.cc: Test that UNC paths are absolute. Signed-off-by: Johannes Grunenberg --- libstdc++-v3/config/abi/pre/gnu.ver | 7 +++ libstdc++-v3/include/bits/fs_path.h | 13 - libstdc++-v3/src/c++17/fs_path.cc

[PATCH 0/2] libstdc++: Support UNC paths on MinGW in fs::path

2025-05-10 Thread Johannes Grunenberg
rations on UNC paths after this patch, since some of them (like fs::canonical) break with UNC paths. Johannes Grunenberg (2): libstdc++: Support UNC paths on MinGW in fs::path libstdc++: Extend tests for UNC paths on MinGW libstdc++-v3/config/abi/pre/gnu.ver | 7 +++ libstdc++-