X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flink.cpp;h=95dfaa64ef6582615a8fe28927d804e855fc614a;hb=f5d3127099bc41f986094eb98732849ee9bfb748;hp=88ee97a8595e1c5668f2e712b150ae6c895271ac;hpb=329dc80e392faf7354338621e73dba1880fc767d;p=builder.git diff --git a/source/link.cpp b/source/link.cpp index 88ee97a..95dfaa6 100644 --- a/source/link.cpp +++ b/source/link.cpp @@ -5,7 +5,8 @@ Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ -#include +#include +#include #include "builder.h" #include "component.h" #include "executable.h" @@ -25,9 +26,11 @@ Link::Link(Builder &b, const Executable &exe): { const Component &comp=exe.get_component(); + work_dir=comp.get_package().get_source(); + //XXX Determine whether to use g++ or gcc string tool="LXX"; - argv.push_back(builder.get_architecture(comp.get_package().get_arch()).get_tool(tool)); + 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"); @@ -41,7 +44,7 @@ Link::Link(Builder &b, const Executable &exe): argv.push_back("-L"+*i); argv.push_back("-o"); - argv.push_back(exe.get_name()); + argv.push_back(relative(exe.get_name(), work_dir).str()); const TargetList &deps=exe.get_depends(); for(TargetList::const_iterator i=deps.begin(); i!=deps.end(); ++i) { @@ -50,7 +53,7 @@ Link::Link(Builder &b, const Executable &exe): tgt=tgt->get_depends().front(); if(dynamic_cast(tgt)) - argv.push_back((*i)->get_name()); + 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)) @@ -59,11 +62,11 @@ Link::Link(Builder &b, const Executable &exe): argv.push_back("-l"+syslib->get_libname()); } - Path::Path epath=exe.get_name(); + FS::Path epath=exe.get_name(); if(!builder.get_dry_run()) - Path::mkpath(epath.subpath(0, epath.size()-1), 0755); + FS::mkpath(FS::dirname(epath), 0755); - announce(comp.get_package().get_name(), tool, relative(epath, comp.get_package().get_source()).str()); + announce(comp.get_package().get_name(), tool, relative(epath, work_dir).str()); launch(); }