aboutsummaryrefslogtreecommitdiff
path: root/libbutl/target-triplet.mxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-12-04 15:28:42 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-12-04 15:28:42 +0200
commit8de41f3d54c265b9fcbcd3df943b1049f17e662e (patch)
treea4f4c947f4ce5dddcc4139a572e66672de19acf3 /libbutl/target-triplet.mxx
parentae93579cf9b706a79085e5d694785a0a1189b60e (diff)
Recognize and handle Clang's <cpu>-pc-windows-msvc target triplet
Diffstat (limited to 'libbutl/target-triplet.mxx')
-rw-r--r--libbutl/target-triplet.mxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/libbutl/target-triplet.mxx b/libbutl/target-triplet.mxx
index 0b2c40a..b0b7291 100644
--- a/libbutl/target-triplet.mxx
+++ b/libbutl/target-triplet.mxx
@@ -92,6 +92,7 @@ LIBBUTL_MODEXPORT namespace butl
// x86_64-unknown-linux-gnu x86_64 linux-gnu
// x86_64-linux-gnux32 x86_64 linux-gnux32
// x86_64-microsoft-win32-msvc14.0 x86_64 microsoft win32-msvc 14.0
+ // x86_64-pc-windows-msvc x86_64 windows-msvc
//
// Similar to version splitting, for certain commonly-used targets we also
// derive the "target class" which can be used as a shorthand, more
@@ -102,7 +103,7 @@ LIBBUTL_MODEXPORT namespace butl
// linux *-*-linux-*
// macos *-apple-darwin*
// bsd *-*-(freebsd|openbsd|netbsd)*
- // windows *-*-win32-* | *-*-mingw32
+ // windows *-*-win32-* | *-*-windows-* | *-*-mingw32
//
// References:
//