X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flink.cpp;h=5cee28753405a5158cdf5abfa6d6fdf69fa00aee;hb=43bd25ffcb0b4f7882773f4676b209a99cb73c04;hp=25713e17f8acc26a21566fafef22e4de4c8d9e14;hpb=242c55b17e6608b29a77ca17a5b677e202a3ca90;p=builder.git diff --git a/source/link.cpp b/source/link.cpp index 25713e1..5cee287 100644 --- a/source/link.cpp +++ b/source/link.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include #include #include "builder.h" @@ -21,15 +14,15 @@ Distributed under the LGPL using namespace std; using namespace Msp; -Link::Link(Builder &b, const Executable &exe): +Link::Link(Builder &b, const Binary &bin): ExternalAction(b) { - const Component &comp=exe.get_component(); + const Component &comp = bin.get_component(); - work_dir=comp.get_package().get_source(); + work_dir = comp.get_package().get_source(); //XXX Determine whether to use g++ or gcc - string tool="LXX"; + string tool = "LXX"; argv.push_back(builder.get_current_arch().get_tool(tool)); if(comp.get_type()==Component::LIBRARY || comp.get_type()==Component::MODULE) @@ -37,36 +30,36 @@ Link::Link(Builder &b, const Executable &exe): else if(comp.get_package().get_library_mode()==ALL_STATIC) argv.push_back("-static"); - const BuildInfo &binfo=comp.get_build_info(); + if(const SharedLibrary *lib = dynamic_cast(&bin)) + if(!lib->get_soname().empty()) + argv.push_back("-Wl,-soname,"+lib->get_soname()); + + 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); argv.push_back("-o"); - argv.push_back(relative(exe.get_name(), work_dir).str()); - const TargetList &deps=exe.get_depends(); + argv.push_back(relative(bin.get_path(), work_dir).str()); + const TargetList &deps = bin.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(); + Target *tgt = (*i)->get_real_target(); - if(dynamic_cast(tgt)) - argv.push_back(relative((*i)->get_name(), work_dir).str()); - 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()); + if(ObjectFile *obj = dynamic_cast(tgt)) + argv.push_back(relative(obj->get_path(), work_dir).str()); + else if(StaticLibrary *stlib = dynamic_cast(tgt)) + argv.push_back(stlib->get_path().str()); + else if(Library *lib = dynamic_cast(tgt)) + argv.push_back("-l"+lib->get_libname()); } - FS::Path epath=exe.get_name(); + FS::Path binpath = bin.get_path(); if(!builder.get_dry_run()) - FS::mkpath(FS::dirname(epath), 0755); + FS::mkpath(FS::dirname(binpath), 0755); - announce(comp.get_package().get_name(), tool, relative(epath, work_dir).str()); + announce(comp.get_package().get_name(), tool, relative(binpath, work_dir).str().substr(2)); launch(); }