X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flink.cpp;h=f775158cea53d73ab9b9f676b49b77f4f59fe0cb;hb=be8a901dfc026f61db46d5d64a41cecc619bc97d;hp=7d37ac4f619685ccaf4ffea257953480cad805a5;hpb=0f5283a54fd188072eca23fbd980a43c6c869913;p=builder.git diff --git a/source/link.cpp b/source/link.cpp index 7d37ac4..f775158 100644 --- a/source/link.cpp +++ b/source/link.cpp @@ -25,6 +25,8 @@ 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_current_arch().get_tool(tool)); @@ -41,7 +43,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 +52,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)) @@ -63,7 +65,7 @@ Link::Link(Builder &b, const Executable &exe): if(!builder.get_dry_run()) mkpath(epath.subpath(0, epath.size()-1), 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(); }