X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucompiler.cpp;h=ec1959afae67cfaf3a3f4a82e25e8a8c748f1a7a;hb=43d1143e6dc6bbf3797dbaae42d4bfce3dea5d88;hp=06ad5a9d7e0037735cbc89c18bb2709bd7053070;hpb=b1c51196b34f644e821f351c2acdb48619aed2e3;p=builder.git diff --git a/source/gnucompiler.cpp b/source/gnucompiler.cpp index 06ad5a9..ec1959a 100644 --- a/source/gnucompiler.cpp +++ b/source/gnucompiler.cpp @@ -14,22 +14,16 @@ using namespace std; using namespace Msp; GnuCompiler::GnuCompiler(Builder &b, const Architecture &a, const string &t, const string &c): - Tool(b, a, t) + Tool(b, a, t), + command(c) { - string command = c; - if(architecture->is_cross()) - command = format("%s-%s", architecture->get_cross_prefix(), command); - executable = builder.get_vfs().find_binary(command); - if(!executable) - builder.problem(string(), format("Can't find executable %s for tool %s", command, tag)); - if(architecture->is_native()) system_path.push_back("/usr/include"); else system_path.push_back("/usr/"+architecture->get_cross_prefix()+"/include"); } -Target *GnuCompiler::create_target(const list &sources, const string &) const +Target *GnuCompiler::create_target(const list &sources, const string &) { if(sources.size()!=1) throw invalid_argument("GnuCCompiler::create_target"); @@ -58,6 +52,11 @@ string GnuCompiler::create_build_signature(const BuildInfo &binfo) const return result; } +void GnuCompiler::do_prepare() +{ + set_executable(command, true); +} + Task *GnuCompiler::run(const Target &target) const { const ObjectFile &object = dynamic_cast(target);