]> git.tdb.fi Git - builder.git/blob - source/sharedlibrary.cpp
More generic system for installing targets under different names
[builder.git] / source / sharedlibrary.cpp
1 #include <msp/fs/utils.h>
2 #include <msp/strings/format.h>
3 #include "builder.h"
4 #include "component.h"
5 #include "sharedlibrary.h"
6 #include "sourcepackage.h"
7
8 using namespace std;
9 using namespace Msp;
10
11 SharedLibrary::SharedLibrary(Builder &b, const Msp::FS::Path &p):
12         Binary(b, p)
13 {
14         libname = FS::basepart(FS::basename(path));
15         if(!libname.compare(0, 3, "lib"))
16                 libname = libname.substr(3);
17 }
18
19 SharedLibrary::SharedLibrary(Builder &b, const Component &c, const list<ObjectFile *> &objs):
20         Binary(b, c, generate_filename(c), objs),
21         libname(c.get_name())
22 {
23         install_location = "lib";
24         if(component->get_type()==Component::MODULE)
25                 install_location /= package->get_name();
26
27         const string &version = component->get_package().get_version();
28         if(!version.empty())
29         {
30                 string::size_type i = 0;
31                 for(unsigned dots=0; i<version.size(); ++i)
32                         if(version[i]=='.' && ++dots>=2)
33                                 break;
34
35                 soname = format("%s.%s", FS::basename(path), version.substr(0, i));
36                 install_filename = soname;
37         }
38 }
39
40 string SharedLibrary::generate_filename(const Component &comp)
41 {
42         if(comp.get_type()==Component::MODULE)
43                 return comp.get_name()+".m";
44         else
45         {
46                 const Architecture &arch = comp.get_package().get_builder().get_current_arch();
47                 return arch.get_shared_library_patterns().front().apply(comp.get_name());
48         }
49 }