X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flink.cpp;h=7d37ac4f619685ccaf4ffea257953480cad805a5;hb=0f5283a54fd188072eca23fbd980a43c6c869913;hp=8b4c56421089e34d8bee43ffbd378c28cfb1566d;hpb=4fcc283a4bb1f695bd124006906bcdaba053193f;p=builder.git diff --git a/source/link.cpp b/source/link.cpp index 8b4c564..7d37ac4 100644 --- a/source/link.cpp +++ b/source/link.cpp @@ -1,10 +1,21 @@ +/* $Id$ + +This file is part of builder +Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include #include "builder.h" #include "component.h" #include "executable.h" +#include "install.h" #include "link.h" #include "objectfile.h" #include "package.h" +#include "sharedlibrary.h" +#include "staticlibrary.h" +#include "systemlibrary.h" using namespace std; using namespace Msp; @@ -14,31 +25,45 @@ Link::Link(Builder &b, const Executable &exe): { const Component &comp=exe.get_component(); - argv.push_back("g++"); - - if(comp.get_type()==Component::LIBRARY) + //XXX Determine whether to use g++ or gcc + string tool="LXX"; + argv.push_back(builder.get_current_arch().get_tool(tool)); + + if(comp.get_type()==Component::LIBRARY || comp.get_type()==Component::MODULE) argv.push_back("-shared"); + else if(comp.get_package().get_library_mode()==ALL_STATIC) + argv.push_back("-static"); const BuildInfo &binfo=comp.get_build_info(); for(list::const_iterator i=binfo.ldflags.begin(); i!=binfo.ldflags.end(); ++i) argv.push_back(*i); for(list::const_iterator i=binfo.libpath.begin(); i!=binfo.libpath.end(); ++i) argv.push_back("-L"+*i); - for(list::const_iterator i=binfo.libs.begin(); i!=binfo.libs.end(); ++i) - argv.push_back("-l"+*i); - + argv.push_back("-o"); argv.push_back(exe.get_name()); - const list &deps=exe.get_depends(); - for(list::const_iterator i=deps.begin(); i!=deps.end(); ++i) - if(dynamic_cast(*i)) + const TargetList &deps=exe.get_depends(); + for(TargetList::const_iterator i=deps.begin(); i!=deps.end(); ++i) + { + Target *tgt=*i; + if(dynamic_cast(tgt)) + tgt=tgt->get_depends().front(); + + if(dynamic_cast(tgt)) + argv.push_back((*i)->get_name()); + else if(SharedLibrary *shlib=dynamic_cast(tgt)) + argv.push_back("-l"+shlib->get_libname()); + else if(dynamic_cast(tgt)) argv.push_back((*i)->get_name()); + else if(SystemLibrary *syslib=dynamic_cast(tgt)) + argv.push_back("-l"+syslib->get_libname()); + } - Path::Path epath=exe.get_name(); + Path epath=exe.get_name(); if(!builder.get_dry_run()) - Path::mkpath(epath.subpath(0, epath.size()-1), 0755); + mkpath(epath.subpath(0, epath.size()-1), 0755); - announce(comp.get_package().get_name(), "LINK", relative(epath, comp.get_package().get_source()).str()); + announce(comp.get_package().get_name(), tool, relative(epath, comp.get_package().get_source()).str()); launch(); }