]> git.tdb.fi Git - builder.git/blob - source/androidcxxcompiler.h
Combine the gnu and clang toolchains into SystemToolchain
[builder.git] / source / androidcxxcompiler.h
1 #ifndef ANDROIDCXXCOMPILER_H_
2 #define ANDROIDCXXCOMPILER_H_
3
4 #include "gnucxxcompiler.h"
5
6 class AndroidNdk;
7
8 class AndroidCxxCompiler: public GnuCxxCompiler
9 {
10 private:
11         const AndroidNdk &ndk;
12
13 public:
14         AndroidCxxCompiler(Builder &, const Architecture &, const AndroidNdk &);
15
16 protected:
17         virtual void do_prepare();
18 };
19
20 #endif