X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucxxcompiler.h;h=491307ecc7fb9f59ede6acea0903106a48d53c87;hb=8f8f10fe41bbb68866e8fb05f8cbab0b325dc7da;hp=45b152f3e76544acca2ba1a703494b11cf404579;hpb=25a315f3cb5805614c513ac762ea1bd512ce82cb;p=builder.git diff --git a/source/gnucxxcompiler.h b/source/gnucxxcompiler.h index 45b152f..491307e 100644 --- a/source/gnucxxcompiler.h +++ b/source/gnucxxcompiler.h @@ -3,13 +3,19 @@ #include "gnucompiler.h" +/** +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