X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcompile.cpp;h=4960d42003dd563440ee126a6d517a2b6e495411;hb=0c83b922e56976a30506d9f8d43c9dcd38d573b5;hp=53802639dae7786675aff8e9ff994582bed2334b;hpb=0f5283a54fd188072eca23fbd980a43c6c869913;p=builder.git diff --git a/source/compile.cpp b/source/compile.cpp index 5380263..4960d42 100644 --- a/source/compile.cpp +++ b/source/compile.cpp @@ -1,16 +1,11 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include +#include +#include #include "builder.h" #include "buildinfo.h" #include "compile.h" #include "component.h" #include "objectfile.h" +#include "sourcefile.h" #include "sourcepackage.h" using namespace std; @@ -19,22 +14,25 @@ using namespace Msp; Compile::Compile(Builder &b, const ObjectFile &obj): ExternalAction(b) { - const Component &comp=obj.get_component(); + const Component &comp = obj.get_component(); + + work_dir = comp.get_package().get_source(); - const TargetList &deps=obj.get_depends(); - Path spath=deps.front()->get_name(); + FS::Path spath = obj.get_source().get_path(); - string ext=splitext(spath.str()).ext; - const char *tool=0; + string ext = FS::extpart(spath.str()); + const char *tool = 0; if(ext==".cpp" || ext==".cc") - tool="CXX"; + tool = "CXX"; else - tool="CC"; + tool = "CC"; argv.push_back(builder.get_current_arch().get_tool(tool)); argv.push_back("-c"); - const BuildInfo &binfo=comp.get_build_info(); + const BuildInfo &binfo = comp.get_build_info(); + for(list::const_iterator i=binfo.warnings.begin(); i!=binfo.warnings.end(); ++i) + argv.push_back("-W"+*i); for(list::const_iterator i=binfo.cflags.begin(); i!=binfo.cflags.end(); ++i) argv.push_back(*i); for(list::const_iterator i=binfo.incpath.begin(); i!=binfo.incpath.end(); ++i) @@ -42,15 +40,15 @@ Compile::Compile(Builder &b, const ObjectFile &obj): for(list::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i) argv.push_back("-D"+*i); - Path opath=obj.get_name(); + FS::Path opath = obj.get_path(); argv.push_back("-o"); - argv.push_back(opath.str()); - argv.push_back(spath.str()); + argv.push_back(relative(opath, work_dir).str()); + argv.push_back(relative(spath, work_dir).str()); if(!builder.get_dry_run()) - mkpath(opath.subpath(0, opath.size()-1), 0755); + FS::mkpath(FS::dirname(opath), 0755); - announce(comp.get_package().get_name(), tool, relative(opath, comp.get_package().get_source()).str()); + announce(comp.get_package().get_name(), tool, basename(opath)); launch(); }