]> 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 45b152f3e76544acca2ba1a703494b11cf404579..5cdc34bd8a214d575cd8b5ed520354fcb237dbbc 100644 (file)
@@ -3,13 +3,22 @@
 
 #include "gnucompiler.h"
 
+/**
+The GNU C++ compiler, commonly known as g++.
+*/
 class GnuCxxCompiler: public GnuCompiler
 {
 public:
        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