]> git.tdb.fi Git - builder.git/blob - source/link.cpp
88ee97a8595e1c5668f2e712b150ae6c895271ac
[builder.git] / source / link.cpp
1 /* $Id$
2
3 This file is part of builder
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #include <msp/path/utils.h>
9 #include "builder.h"
10 #include "component.h"
11 #include "executable.h"
12 #include "install.h"
13 #include "link.h"
14 #include "objectfile.h"
15 #include "package.h"
16 #include "sharedlibrary.h"
17 #include "staticlibrary.h"
18 #include "systemlibrary.h"
19
20 using namespace std;
21 using namespace Msp;
22
23 Link::Link(Builder &b, const Executable &exe):
24         ExternalAction(b)
25 {
26         const Component &comp=exe.get_component();
27
28         //XXX Determine whether to use g++ or gcc
29         string tool="LXX";
30         argv.push_back(builder.get_architecture(comp.get_package().get_arch()).get_tool(tool));
31
32         if(comp.get_type()==Component::LIBRARY || comp.get_type()==Component::MODULE)
33                 argv.push_back("-shared");
34         else if(comp.get_package().get_library_mode()==ALL_STATIC)
35                 argv.push_back("-static");
36
37         const BuildInfo &binfo=comp.get_build_info();
38         for(list<string>::const_iterator i=binfo.ldflags.begin(); i!=binfo.ldflags.end(); ++i)
39                 argv.push_back(*i);
40         for(list<string>::const_iterator i=binfo.libpath.begin(); i!=binfo.libpath.end(); ++i)
41                 argv.push_back("-L"+*i);
42
43         argv.push_back("-o");
44         argv.push_back(exe.get_name());
45         const TargetList &deps=exe.get_depends();
46         for(TargetList::const_iterator i=deps.begin(); i!=deps.end(); ++i)
47         {
48                 Target *tgt=*i;
49                 if(dynamic_cast<Install *>(tgt))
50                         tgt=tgt->get_depends().front();
51
52                 if(dynamic_cast<ObjectFile *>(tgt))
53                         argv.push_back((*i)->get_name());
54                 else if(SharedLibrary *shlib=dynamic_cast<SharedLibrary *>(tgt))
55                         argv.push_back("-l"+shlib->get_libname());
56                 else if(dynamic_cast<StaticLibrary *>(tgt))
57                         argv.push_back((*i)->get_name());
58                 else if(SystemLibrary *syslib=dynamic_cast<SystemLibrary *>(tgt))
59                         argv.push_back("-l"+syslib->get_libname());
60         }
61
62         Path::Path epath=exe.get_name();
63         if(!builder.get_dry_run())
64                 Path::mkpath(epath.subpath(0, epath.size()-1), 0755);
65
66         announce(comp.get_package().get_name(), tool, relative(epath, comp.get_package().get_source()).str());
67
68         launch();
69 }