X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flink.cpp;h=a7ea2c55df4374fc1149fedc0b4eaf4dc922785b;hb=654de39b62a9a58fd8e1b5a557361d628345788b;hp=7cbdc03c84db1b0b7dbaaa4f96d54fcfc6935d74;hpb=1a46151c99a406123c4ddfc797a7841baf3e4cc2;p=builder.git diff --git a/source/link.cpp b/source/link.cpp index 7cbdc03..a7ea2c5 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; @@ -15,25 +26,37 @@ Link::Link(Builder &b, const Executable &exe): const Component &comp=exe.get_component(); //XXX Determine whether to use g++ or gcc - argv.push_back("g++"); + argv.push_back(builder.get_tool("LDXX", comp.get_package().get_arch())); - if(comp.get_type()==Component::LIBRARY) + 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 TargetList &deps=exe.get_depends(); for(TargetList::const_iterator i=deps.begin(); i!=deps.end(); ++i) - if(dynamic_cast(*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(); if(!builder.get_dry_run())