aboutsummaryrefslogtreecommitdiff
path: root/libbutl
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl')
-rw-r--r--libbutl/target-triplet.cxx29
-rw-r--r--libbutl/target-triplet.mxx16
2 files changed, 37 insertions, 8 deletions
diff --git a/libbutl/target-triplet.cxx b/libbutl/target-triplet.cxx
index c2535b1..f59875f 100644
--- a/libbutl/target-triplet.cxx
+++ b/libbutl/target-triplet.cxx
@@ -71,11 +71,6 @@ namespace butl
if (l != p)
bad ("too many components");
-
- // Handle the none-* case here.
- //
- if (s.compare (l + 1, 5, "none-") == 0)
- l += 5;
}
else
{
@@ -170,4 +165,28 @@ namespace butl
return r;
}
+
+ std::string target_triplet::
+ representation () const
+ {
+ std::string r (cpu);
+
+ {
+ if (!r.empty ()) r += '-';
+ r += vendor.empty () ? "unknown" : vendor.c_str ();
+ }
+
+ if (!system.empty ())
+ {
+ if (!r.empty ()) r += '-';
+ r += system;
+ }
+
+ if (!version.empty ())
+ {
+ r += version;
+ }
+
+ return r;
+ }
}
diff --git a/libbutl/target-triplet.mxx b/libbutl/target-triplet.mxx
index e68bc68..41c0cb5 100644
--- a/libbutl/target-triplet.mxx
+++ b/libbutl/target-triplet.mxx
@@ -61,8 +61,10 @@ LIBBUTL_MODEXPORT namespace butl
// trailing version, again, to make SYSTEM easier to compare to. For example,
// *-darwin14.5.0 becomes 'darwin' and '14.5.0'.
//
- // Again, to make things more regular, if the first component in SYSTEM is
- // none, then it is removed (so *-none-eabi becomes just 'eabi').
+ // Note also that sometimes the first component in SYSTEM can be 'none' (to
+ // indicate the absence of an operating system) which is ambigous with the
+ // vendor (for example, arm-none-eabi). We currently don't try to deal with
+ // that (that is, you will need to specify arm-unknown-none-eabi).
//
// Values for two-component systems (e.g., linux-gnu) that don't specify
// VENDOR explicitly are inherently ambiguous: is 'linux' VENDOR or part of
@@ -121,12 +123,20 @@ LIBBUTL_MODEXPORT namespace butl
std::string version;
std::string class_;
- // Assemble and returning the canonical (i.e., the one we round-trip)
+ // Assemble and returning the canonical (i.e., without unknown vendor)
// target triplet string.
//
+ // Note: not necessarily round-tripp'able, see representation().
+ //
std::string
string () const;
+ // Return a round-tripp'able target triplet string that always contains
+ // the vendor.
+ //
+ std::string
+ representation () const;
+
bool
empty () const {return cpu.empty ();}