diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-08-24 11:51:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-08-24 11:51:20 +0200 |
commit | 3bfd12396f6ad66d2864e9fb5ba8be2e531a4e63 (patch) | |
tree | 6dfe3184fd070530f3c708633e591bdffeea0371 /libbuild2/cc | |
parent | b86c1d8d2e0be140f6854d869e07139ff3c4221c (diff) |
Use representation when passing target_triplet as hint
Diffstat (limited to 'libbuild2/cc')
-rw-r--r-- | libbuild2/cc/guess.cxx | 2 | ||||
-rw-r--r-- | libbuild2/cc/init.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/cc/guess.cxx b/libbuild2/cc/guess.cxx index 8fe4769..c0d04ef 100644 --- a/libbuild2/cc/guess.cxx +++ b/libbuild2/cc/guess.cxx @@ -2372,7 +2372,7 @@ namespace build2 tt.vendor = "microsoft"; tt.system = "win32-msvc"; tt.version = msvc_runtime_version (msvc_compiler_version (mi.msvc_ver)); - t = tt.string (); + t = tt.representation (); // Add the MSVC information to the signature and checksum. // diff --git a/libbuild2/cc/init.cxx b/libbuild2/cc/init.cxx index 6791190..bb50d07 100644 --- a/libbuild2/cc/init.cxx +++ b/libbuild2/cc/init.cxx @@ -304,7 +304,7 @@ namespace build2 // Note that all these variables have already been registered. // h.assign ("config.bin.target") = - cast<target_triplet> (rs["cc.target"]).string (); + cast<target_triplet> (rs["cc.target"]).representation (); if (auto l = extra.hints["config.bin.pattern"]) h.assign ("config.bin.pattern") = cast<string> (l); |