7 Common base class for GNU compilers. Turns SourceFiles into ObjectFiles.
9 Since invocation is mostly the same for all language frontends, most of the
10 logic is here and the individual tools only handle creating source files of
13 class GnuCompiler: public Tool
19 GnuCompiler(Builder &, const Architecture &, const std::string &);
21 virtual Target *create_source(const Component &, const Msp::FS::Path &) const;
22 virtual Target *create_source(const Msp::FS::Path &) const;
23 virtual Target *create_target(const std::list<Target *> &, const std::string &);
24 virtual std::string create_build_signature(const BuildInfo &) const;
26 virtual void do_prepare();
27 void prepare_syspath();
28 void prepare_version();
29 void prepare_version(const std::string &);
31 virtual Task *run(const Target &) const;