]> git.tdb.fi Git - builder.git/blob - source/gnucxxcompiler.h
Combine the gnu and clang toolchains into SystemToolchain
[builder.git] / source / gnucxxcompiler.h
1 #ifndef GNUCXXCOMPILER_H_
2 #define GNUCXXCOMPILER_H_
3
4 #include "gnucompiler.h"
5
6 /**
7 The GNU C++ compiler, commonly known as g++.
8 */
9 class GnuCxxCompiler: public GnuCompiler
10 {
11 public:
12         GnuCxxCompiler(Builder &, const Architecture &, const Msp::FS::Path & = Msp::FS::Path());
13
14         virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
15         virtual Target *create_source(const Msp::FS::Path &) const;
16
17 protected:
18         virtual void do_prepare();
19 };
20
21 #endif