]> git.tdb.fi Git - builder.git/blobdiff - source/gnucxxcompiler.h
Add build info to tools and use it to pass runtime libs
[builder.git] / source / gnucxxcompiler.h
index 53d2d2ac94df4b2775ab86172340cc13458edd17..04c1fb22b5b2d5c38d5a056edf289b028d7fda1f 100644 (file)
@@ -3,13 +3,19 @@
 
 #include "gnucompiler.h"
 
+/**
+The GNU C++ compiler, commonly known as g++.
+*/
 class GnuCxxCompiler: public GnuCompiler
 {
 public:
-       GnuCxxCompiler(Builder &);
+       GnuCxxCompiler(Builder &, const Architecture &);
 
        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