]> git.tdb.fi Git - builder.git/blobdiff - source/gnucxxcompiler.h
Don't print the configuration header in help for empty configuration
[builder.git] / source / gnucxxcompiler.h
index 760994f78ab5cedfd60598c3d8965e2c85ab0d61..5cdc34bd8a214d575cd8b5ed520354fcb237dbbc 100644 (file)
@@ -3,12 +3,22 @@
 
 #include "gnucompiler.h"
 
+/**
+The GNU C++ compiler, commonly known as g++.
+*/
 class GnuCxxCompiler: public GnuCompiler
 {
 public:
-       GnuCxxCompiler(Builder &);
+       GnuCxxCompiler(Builder &, const Architecture &);
+private:
+       void query_version();
 
+public:
        virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
+       virtual Target *create_source(const Msp::FS::Path &) const;
+
+private:
+       virtual void do_prepare();
 };
 
 #endif