X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcompile.cpp;h=67278d16bdb2457efa8694962f909891c58a1baa;hb=7aeaa4ba965f596edad438c02e345a8843f7469a;hp=d823c30a5ace4d90aab67ec050e9fa8cc1e2379f;hpb=f1c967215e6b08095bdf07518472beca3067ec37;p=builder.git diff --git a/source/compile.cpp b/source/compile.cpp index d823c30..67278d1 100644 --- a/source/compile.cpp +++ b/source/compile.cpp @@ -1,31 +1,37 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include "builder.h" #include "buildinfo.h" #include "compile.h" #include "component.h" +#include "objectfile.h" #include "package.h" using namespace std; using namespace Msp; -Compile::Compile(Builder &b, const Path::Path &s, const Path::Path &o, const Component &c): - ExternalAction(b), - source(s), - object(o), - comp(c) +Compile::Compile(Builder &b, const ObjectFile &obj): + ExternalAction(b) { - string ext=Path::splitext(source.str()).ext; + const Component &comp=obj.get_component(); + + const TargetList &deps=obj.get_depends(); + Path::Path spath=deps.front()->get_name(); + + string ext=Path::splitext(spath.str()).ext; const char *tool=0; if(ext==".cpp" || ext==".cc") - { tool="CXX"; - argv.push_back("g++"); - } else - { tool="CC"; - argv.push_back("gcc"); - } + + argv.push_back(builder.get_tool(tool, obj.get_package()->get_arch())); argv.push_back("-c"); const BuildInfo &binfo=comp.get_build_info(); @@ -36,14 +42,15 @@ Compile::Compile(Builder &b, const Path::Path &s, const Path::Path &o, const Com for(list::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i) argv.push_back("-D"+*i); + Path::Path opath=obj.get_name(); argv.push_back("-o"); - argv.push_back(object.str()); - argv.push_back(source.str()); + argv.push_back(opath.str()); + argv.push_back(spath.str()); if(!builder.get_dry_run()) - Path::mkpath(object.subpath(0, object.size()-1), 0755); + Path::mkpath(opath.subpath(0, opath.size()-1), 0755); - announce(comp.get_package().get_name(), tool, relative(object.str(), comp.get_package().get_source()).str()); + announce(comp.get_package().get_name(), tool, relative(opath, comp.get_package().get_source()).str()); launch(); }