X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flink.cpp;h=14a7d46df7bd77749427c3793c71239c6b8b4bd1;hb=4d0d003b022943d8a0e39ba19078bab8d32d8857;hp=0d94e5ab62251c14c4a49ffea687cfb3ab3d3077;hpb=4f78d9f016482ce1ac7d726852e33e07c090df1b;p=builder.git diff --git a/source/link.cpp b/source/link.cpp index 0d94e5a..14a7d46 100644 --- a/source/link.cpp +++ b/source/link.cpp @@ -1,3 +1,10 @@ +/* $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" @@ -19,11 +26,12 @@ 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++"); - - if(comp.get_type()==Component::LIBRARY) + string tool="LXX"; + argv.push_back(builder.get_architecture(comp.get_package().get_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_config().get_option("staticlibs").value=="all") + else if(comp.get_package().get_library_mode()==ALL_STATIC) argv.push_back("-static"); const BuildInfo &binfo=comp.get_build_info(); @@ -31,7 +39,7 @@ Link::Link(Builder &b, const Executable &exe): 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(exe.get_name()); const TargetList &deps=exe.get_depends(); @@ -51,11 +59,11 @@ Link::Link(Builder &b, const Executable &exe): 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(); }