From 90b6ea19de89b30f592d6d8dfbfd616686627681 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 11 Oct 2023 08:14:31 +0200 Subject: Canonicalize Clang's *-w64-windows-gnu to *-w64-mingw32 (GH issue #288) Note that config.guess doesn't recognize *-w64-windows-gnu as a valid target triplet: Invalid configuration 'x86_64-w64-windows-gnu': Kernel 'windows' not known to work with OS 'gnu'. --- tests/target-triplet/driver.cxx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests') diff --git a/tests/target-triplet/driver.cxx b/tests/target-triplet/driver.cxx index 30153a1..8c08a90 100644 --- a/tests/target-triplet/driver.cxx +++ b/tests/target-triplet/driver.cxx @@ -74,6 +74,10 @@ main () "i686-w64-mingw32", "i686", "w64", "mingw32", "", "windows")); + assert (test ("x86_64-w64-windows-gnu", + "x86_64-w64-mingw32", + "x86_64", "w64", "mingw32", "", "windows")); + assert (test ("i686-lfs-linux-gnu", "i686-lfs-linux-gnu", "i686", "lfs", "linux-gnu", "", "linux")); -- cgit v1.1