X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucxxcompiler.h;h=5cdc34bd8a214d575cd8b5ed520354fcb237dbbc;hb=2d765e850b2360940111cbd522af659cc3c4aef7;hp=45b152f3e76544acca2ba1a703494b11cf404579;hpb=25a315f3cb5805614c513ac762ea1bd512ce82cb;p=builder.git diff --git a/source/gnucxxcompiler.h b/source/gnucxxcompiler.h index 45b152f..5cdc34b 100644 --- a/source/gnucxxcompiler.h +++ b/source/gnucxxcompiler.h @@ -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