X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Farchitecture.h;h=c1446b462949c662eb5f0b117f315f38a42c83f3;hb=d914c5f40ca1194e7fd6a2b30664ac4717e38786;hp=153230244f6aedfdce7fd6a5648619108fe93d12;hpb=3a61505c629d51f52343e7dfaaa936143557c3bf;p=builder.git diff --git a/source/architecture.h b/source/architecture.h index 1532302..c1446b4 100644 --- a/source/architecture.h +++ b/source/architecture.h @@ -29,6 +29,7 @@ private: std::string fpu; std::string system; unsigned bits; + std::string toolchain; std::string name; bool native; std::string cross_prefix; @@ -45,6 +46,7 @@ public: unsigned get_bits() const { return bits; } const std::string &get_cpu() const { return cpu; } const std::string &get_fpu() const { return fpu; } + const std::string &get_toolchain() const { return toolchain; } bool match_name(const std::string &) const; std::string best_match(const std::list &) const; bool is_native() const { return native; }