]> git.tdb.fi Git - builder.git/blob - source/gnuobjccompiler.h
Combine the gnu and clang toolchains into SystemToolchain
[builder.git] / source / gnuobjccompiler.h
1 #ifndef GNUOBJCCOMPILER_H_
2 #define GNUOBJCCOMPILER_H_
3
4 #include "gnucompiler.h"
5
6 class GnuObjCCompiler: public GnuCompiler
7 {
8 public:
9         GnuObjCCompiler(Builder &, const Architecture &, const Msp::FS::Path & = Msp::FS::Path());
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