X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcompile.cpp;h=61b17ad90807c65b0c85c649fbabe7c31a5cc6cc;hb=0ac8d6708b8c758fb89d97a0049d4a329990b83b;hp=02ae493ea1892a4002c320a88d4ab9997ade1634;hpb=57bdb055acb0453c75b22cb64f35cc0e817a2827;p=builder.git diff --git a/source/compile.cpp b/source/compile.cpp index 02ae493..61b17ad 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; @@ -17,22 +24,16 @@ Compile::Compile(Builder &b, const ObjectFile &obj): const TargetList &deps=obj.get_depends(); Path::Path spath=deps.front()->get_name(); - const string &prefix=b.get_arch_prefix(obj.get_package()->get_arch()); - string ext=Path::splitext(spath.str()).ext; const char *tool=0; if(ext==".cpp" || ext==".cc") - { tool="CXX"; - argv.push_back(prefix+"g++"); - } else - { tool="CC"; - argv.push_back(prefix+"gcc"); - } + + argv.push_back(builder.get_architecture(comp.get_package().get_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); @@ -40,7 +41,7 @@ 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(); argv.push_back("-o"); argv.push_back(opath.str());