]> git.tdb.fi Git - builder.git/blob - source/gnucompiler.h
Make tools architecture-aware and restore cross-compilation functionality
[builder.git] / source / gnucompiler.h
1 #ifndef GNUCOMPILER_H_
2 #define GNUCOMPILER_H_
3
4 #include "tool.h"
5
6 class GnuCompiler: public Tool
7 {
8 protected:
9         GnuCompiler(Builder &, const Architecture &, const std::string &, const std::string &);
10
11 public:
12         virtual Target *create_target(const std::list<Target *> &, const std::string &) const;
13         virtual Task *run(const Target &) const;
14 };
15
16 #endif