X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucxxcompiler.h;h=491307ecc7fb9f59ede6acea0903106a48d53c87;hb=74ea8208bb1aa1d9afc9657a4cdfac6714241887;hp=760994f78ab5cedfd60598c3d8965e2c85ab0d61;hpb=7e5ac6af8987bf12f3e338d00e96e8cb74f3534b;p=builder.git diff --git a/source/gnucxxcompiler.h b/source/gnucxxcompiler.h index 760994f..491307e 100644 --- a/source/gnucxxcompiler.h +++ b/source/gnucxxcompiler.h @@ -3,12 +3,19 @@ #include "gnucompiler.h" +/** +The GNU C++ compiler, commonly known as g++. +*/ class GnuCxxCompiler: public GnuCompiler { public: - GnuCxxCompiler(Builder &); + 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