]> git.tdb.fi Git - builder.git/blobdiff - source/gnucxxcompiler.h
Recent versions of sigc++ require C++11
[builder.git] / source / gnucxxcompiler.h
index a764e89bdcc05923d0c5f4d31bedf15142f911f2..491307ecc7fb9f59ede6acea0903106a48d53c87 100644 (file)
@@ -9,10 +9,13 @@ The GNU C++ compiler, commonly known as g++.
 class GnuCxxCompiler: public GnuCompiler
 {
 public:
-       GnuCxxCompiler(Builder &, const Architecture &);
+       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