X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnulinker.cpp;h=9f6230e481f2f0260275d19d9a88e2ff4a41e46e;hb=HEAD;hp=4276397b23c863b5ead37a90e5ca1b64af7cce84;hpb=abb2336c34b94abc0508a00f07afdf85d7c78951;p=builder.git diff --git a/source/gnulinker.cpp b/source/gnulinker.cpp deleted file mode 100644 index 4276397..0000000 --- a/source/gnulinker.cpp +++ /dev/null @@ -1,167 +0,0 @@ -#include -#include -#include -#include -#include -#include "builder.h" -#include "component.h" -#include "executable.h" -#include "externaltask.h" -#include "gnucompiler.h" -#include "gnulinker.h" -#include "objectfile.h" -#include "sharedlibrary.h" -#include "sourcepackage.h" -#include "staticlibrary.h" - -using namespace std; -using namespace Msp; - -GnuLinker::GnuLinker(Builder &b, const Architecture &a): - Tool(b, a, "LINK") -{ - input_suffixes.push_back(".o"); - input_suffixes.push_back(".a"); - - if(architecture->is_native()) - { - system_path.push_back("/lib"); - system_path.push_back("/usr/lib"); - if(architecture->match_name("pc-32-linux")) - system_path.push_back("/usr/lib/i386-linux-gnu"); - else if(architecture->match_name("pc-64-linux")) - system_path.push_back("/usr/lib/x86_64-linux-gnu"); - } - else - system_path.push_back("/usr/"+architecture->get_cross_prefix()+"/lib"); - - default_linker = new Linker(*this, "CC"); - cxx_linker = new Linker(*this, "CXX"); -} - -GnuLinker::~GnuLinker() -{ - delete default_linker; - delete cxx_linker; -} - -Target *GnuLinker::create_target(const list &sources, const string &arg) const -{ - if(sources.empty()) - throw invalid_argument("GnuLinker::create_target"); - list objs; - Linker *linker = default_linker; - for(list::const_iterator i=sources.begin(); i!=sources.end(); ++i) - { - if(ObjectFile *obj = dynamic_cast(*i)) - { - objs.push_back(obj); - if(obj->get_tool()->get_tag()=="CXX") - linker = cxx_linker; - } - else - throw invalid_argument("GnuLinker::create_target"); - } - - const Component &comp = *objs.front()->get_component(); - Binary *bin = 0; - if(arg=="shared") - bin = new SharedLibrary(builder, comp, objs); - else - bin = new Executable(builder, comp, objs); - bin->set_tool(*linker); - return bin; -} - -Task *GnuLinker::run(const Target &) const -{ - throw logic_error("GnuLinker should not be run directly"); -} - - -GnuLinker::Linker::Linker(GnuLinker &p, const string &compiler_tag): - SubTool(p) -{ - const Tool &compiler = builder.get_toolchain().get_tool(compiler_tag); - if(dynamic_cast(&compiler)) - executable = compiler.get_executable(); - else - { - string command; - if(compiler_tag=="CC") - command = "gcc"; - else if(compiler_tag=="CXX") - command = "g++"; - else - throw invalid_argument("GnuLinker::Linker::Linker"); - if(architecture->is_cross()) - command = format("%s-%s", architecture->get_cross_prefix(), command); - executable = builder.get_vfs().find_binary(command); - } -} - -Target *GnuLinker::Linker::create_target(const list &sources, const string &arg) const -{ - return parent.create_target(sources, arg); -} - -Task *GnuLinker::Linker::run(const Target &target) const -{ - const Binary &bin = dynamic_cast(target); - - vector argv; - argv.push_back(executable->get_path().str()); - - const Component &comp = *bin.get_component(); - - if(const SharedLibrary *shlib = dynamic_cast(&bin)) - { - argv.push_back("-shared"); - argv.push_back("-fPIC"); - if(!shlib->get_soname().empty()) - argv.push_back("-Wl,-soname,"+shlib->get_soname()); - } - - const BuildInfo &binfo = comp.get_build_info(); - for(BuildInfo::PathList::const_iterator i=binfo.libpath.begin(); i!=binfo.libpath.end(); ++i) - argv.push_back("-L"+i->str()); - if(binfo.strip) - argv.push_back("-s"); - if(binfo.threads) - argv.push_back("-pthread"); - - const Architecture &native_arch = builder.get_native_arch(); - if(architecture->get_bits()!=native_arch.get_bits()) - argv.push_back(format("-m%d", architecture->get_bits())); - - FS::Path work_dir = comp.get_package().get_source(); - - argv.push_back("-o"); - argv.push_back(relative(bin.get_path(), work_dir).str()); - - bool static_link_ok = (binfo.libmode<=BuildInfo::STATIC); - - const Target::Dependencies &depends = target.get_depends(); - for(Target::Dependencies::const_iterator i=depends.begin(); i!=depends.end(); ++i) - { - Target *tgt = (*i)->get_real_target(); - - 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(SharedLibrary *shlib = dynamic_cast(tgt)) - { - argv.push_back("-l"+shlib->get_libname()); - static_link_ok = false; - } - } - - if(static_link_ok) - argv.push_back("-static"); - - if(!builder.get_dry_run()) - FS::mkpath(FS::dirname(bin.get_path()), 0755); - - return new ExternalTask(argv, work_dir); -}