]> git.tdb.fi Git - builder.git/blob - source/gnucxxcompiler.h
Make tools architecture-aware and restore cross-compilation functionality
[builder.git] / source / gnucxxcompiler.h
1 #ifndef GNUCXXCOMPILER_H_
2 #define GNUCXXCOMPILER_H_
3
4 #include "gnucompiler.h"
5
6 class GnuCxxCompiler: public GnuCompiler
7 {
8 public:
9         GnuCxxCompiler(Builder &, const Architecture &);
10
11         virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
12         virtual Target *create_source(const Msp::FS::Path &) const;
13 };
14
15 #endif