X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcompile.cpp;h=fd802bbb54e76d2a960ae140e40003a174aa03a4;hb=1a46151c99a406123c4ddfc797a7841baf3e4cc2;hp=15aaee9e800477f30ebf475ca96ff4ce64928ff9;hpb=59ac0a44d6edf179c01604c6ced744873213f855;p=builder.git diff --git a/source/compile.cpp b/source/compile.cpp index 15aaee9..fd802bb 100644 --- a/source/compile.cpp +++ b/source/compile.cpp @@ -1,19 +1,23 @@ #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") { @@ -35,13 +39,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()); - Path::mkpath(object.subpath(0, object.size()-1), 0755); + if(!builder.get_dry_run()) + 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(); }