diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-06 09:01:32 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-05-06 09:01:32 +0200 |
commit | 272dbd99d21591b694ba608f8daea75806d5fcbc (patch) | |
tree | 38b543f56e407b9a53dbb29c1defc3f5689dcb78 | |
parent | 7037e788eaee494f6d5536e9a9f51bd1ce9a762d (diff) |
Fix default Clang C++ compiler name mis-guess
-rw-r--r-- | libbuild2/cc/guess.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/guess.cxx b/libbuild2/cc/guess.cxx index 09e14fa..b45a413 100644 --- a/libbuild2/cc/guess.cxx +++ b/libbuild2/cc/guess.cxx @@ -3323,7 +3323,7 @@ namespace build2 if (id.variant == "emscripten") s = "em++"; else - s = "clang"; + s = "clang++"; break; } case type::icc: s = "icpc"; break; |