]> git.tdb.fi Git - builder.git/blobdiff - source/gnucxxcompiler.h
Update cross prefix for windows architecture
[builder.git] / source / gnucxxcompiler.h
index bebb7b7616e4cf9e4657cc5601d44838c9357856..491307ecc7fb9f59ede6acea0903106a48d53c87 100644 (file)
@@ -3,10 +3,19 @@
 
 #include "gnucompiler.h"
 
+/**
+The GNU C++ compiler, commonly known as g++.
+*/
 class GnuCxxCompiler: public GnuCompiler
 {
 public:
-       GnuCxxCompiler(Builder &);
+       GnuCxxCompiler(Builder &, const Architecture &, const Msp::FS::Path & = Msp::FS::Path());
+
+       virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
+       virtual Target *create_source(const Msp::FS::Path &) const;
+
+protected:
+       virtual void do_prepare();
 };
 
 #endif