X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucxxcompiler.h;h=491307ecc7fb9f59ede6acea0903106a48d53c87;hb=407b96515a5246384847d1835a2d69704e941ea1;hp=bebb7b7616e4cf9e4657cc5601d44838c9357856;hpb=338eefb513953ae55e8e3614c009c242ba8ad74e;p=builder.git diff --git a/source/gnucxxcompiler.h b/source/gnucxxcompiler.h index bebb7b7..491307e 100644 --- a/source/gnucxxcompiler.h +++ b/source/gnucxxcompiler.h @@ -3,10 +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