X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcompile.cpp;h=53802639dae7786675aff8e9ff994582bed2334b;hb=0f5283a54fd188072eca23fbd980a43c6c869913;hp=fd802bbb54e76d2a960ae140e40003a174aa03a4;hpb=1a46151c99a406123c4ddfc797a7841baf3e4cc2;p=builder.git diff --git a/source/compile.cpp b/source/compile.cpp index fd802bb..5380263 100644 --- a/source/compile.cpp +++ b/source/compile.cpp @@ -1,10 +1,17 @@ +/* $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" +#include "sourcepackage.h" using namespace std; using namespace Msp; @@ -15,22 +22,18 @@ Compile::Compile(Builder &b, const ObjectFile &obj): const Component &comp=obj.get_component(); const TargetList &deps=obj.get_depends(); - Path::Path spath=deps.front()->get_name(); + Path spath=deps.front()->get_name(); - string ext=Path::splitext(spath.str()).ext; + string ext=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_current_arch().get_tool(tool)); argv.push_back("-c"); - + const BuildInfo &binfo=comp.get_build_info(); for(list::const_iterator i=binfo.cflags.begin(); i!=binfo.cflags.end(); ++i) argv.push_back(*i); @@ -38,14 +41,14 @@ Compile::Compile(Builder &b, const ObjectFile &obj): argv.push_back("-I"+*i); for(list::const_iterator i=binfo.defines.begin(); i!=binfo.defines.end(); ++i) argv.push_back("-D"+*i); - - Path::Path opath=obj.get_name(); + + Path opath=obj.get_name(); argv.push_back("-o"); argv.push_back(opath.str()); argv.push_back(spath.str()); if(!builder.get_dry_run()) - Path::mkpath(opath.subpath(0, opath.size()-1), 0755); + mkpath(opath.subpath(0, opath.size()-1), 0755); announce(comp.get_package().get_name(), tool, relative(opath, comp.get_package().get_source()).str());