X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Farchitecture.h;h=1f643dc325b4a1512170d95b50b22871b84de5bd;hb=7e5ac6af8987bf12f3e338d00e96e8cb74f3534b;hp=a205e5389998b854a6401dc83302095c2927a9b2;hpb=0f5283a54fd188072eca23fbd980a43c6c869913;p=builder.git diff --git a/source/architecture.h b/source/architecture.h index a205e53..1f643dc 100644 --- a/source/architecture.h +++ b/source/architecture.h @@ -1,42 +1,57 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef ARCHITECTURE_H_ #define ARCHITECTURE_H_ #include +#include "buildinfo.h" #include "misc.h" class Builder; +// XXX Add lib/exe prefix/suffix fields. Some archs may need multiple alternatives, how to handle this? class Architecture { public: class Loader: public Msp::DataFile::Loader { + private: + Architecture &arch; + public: Loader(Architecture &); Architecture &get_object() { return arch; } private: - Architecture &arch; - void tool(const std::string &t, const std::string &p); }; - Architecture(Builder &b, const std::string &n); +private: + Builder &builder; + std::string type; + std::string cpu; + std::string system; + unsigned bits; + std::string name; + bool native; + std::string cross_prefix; + StringMap tools; + +public: + Architecture(Builder &b, const std::string &spec); + + const std::string &get_name() const { return name; } + const std::string &get_system() const { return system; } + unsigned get_bits() const { return bits; } + const std::string &get_cpu() const { return cpu; } + bool match_name(const std::string &) const; + bool is_native() const { return native; } + void set_tool(const std::string &t, const std::string &p); + void set_cross_prefix(const std::string &); std::string get_tool(const std::string &t) const; - const std::string &get_name() const { return name; } - const std::string &get_prefix() const { return prefix; } + const std::string &get_cross_prefix() const { return cross_prefix; } + private: - Builder &builder; - std::string name; - std::string prefix; - StringMap tools; + std::string resolve_alias(const std::string &) const; + void parse_specification(const std::string &); }; typedef std::map ArchMap;