]> git.tdb.fi Git - builder.git/blobdiff - source/gnucompiler.h
Don't treat using deprecated declarations as errors
[builder.git] / source / gnucompiler.h
index af3761bcfa62de57535332503edbac10955b286b..cd6aa52b6c8b73ca96b459c2d549554972d54137 100644 (file)
@@ -13,11 +13,16 @@ appropriate type.
 class GnuCompiler: public Tool
 {
 protected:
-       GnuCompiler(Builder &, const Architecture &, const std::string &);
+       std::string version;
+
+       GnuCompiler(Builder &, const Architecture &, const std::string &, const Msp::FS::Path & = Msp::FS::Path());
 
 public:
        virtual Target *create_target(const std::list<Target *> &, const std::string &);
        virtual std::string create_build_signature(const BuildInfo &) const;
+protected:
+       virtual void do_prepare();
+public:
        virtual Task *run(const Target &) const;
 };