X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.cpp;h=6fd6161989f24450ca4352b60126f474d545f366;hb=93db1636eac4ded5d89555d4c7e06b2126c3e4b0;hp=08da59af1c82a4de868cfdb20381a60857d06321;hpb=04c316da6d5d90e43cba262f54d90ca231f703bf;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp index 08da59a..6fd6161 100644 --- a/source/binary.cpp +++ b/source/binary.cpp @@ -1,65 +1,58 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include -#include +#include #include "binary.h" #include "builder.h" #include "component.h" -#include "install.h" -#include "link.h" #include "objectfile.h" -#include "package.h" #include "sharedlibrary.h" +#include "sourcepackage.h" #include "staticlibrary.h" using namespace std; using namespace Msp; -Binary::Binary(Builder &b, const Component &c, const list &objs): - FileTarget(b, &c.get_package(), generate_target_path(c)), - comp(c) +Binary::Binary(Builder &b, const FS::Path &p): + FileTarget(b, p) +{ } + +Binary::Binary(Builder &b, const Component &c, const string &p, const list &objs): + FileTarget(b, c.get_package(), c.get_package().get_out_dir()/p) { - buildable = true; + component = &c; for(list::const_iterator i=objs.begin(); i!=objs.end(); ++i) - add_depend(*i); + add_dependency(**i); } -void Binary::find_depends() +void Binary::find_dependencies() { - LibMode libmode = comp.get_package().get_library_mode(); - if(dynamic_cast(this)) - libmode = DYNAMIC; + if(!component) + return; + + BuildInfo::LibraryMode libmode = component->get_build_info().libmode; list queue; list dep_libs; - queue.push_back(&comp); + queue.push_back(component); while(!queue.empty()) { const Component *c = queue.front(); queue.erase(queue.begin()); - const StringList &libpath = c->get_build_info().libpath; - - const list &libs = c->get_build_info().libs; - for(StringList::const_iterator i=libs.begin(); i!=libs.end(); ++i) + const BuildInfo &binfo = c->get_build_info(); + for(BuildInfo::WordList::const_iterator i=binfo.libs.begin(); i!=binfo.libs.end(); ++i) { - Target *lib = builder.get_library(*i, libpath, libmode); + Target *lib = builder.get_vfs().find_library(*i, binfo.libpath, libmode); if(lib) { dep_libs.push_back(lib); - if(Install *inst = dynamic_cast(lib)) - lib = &inst->get_source(); + lib = lib->get_real_target(); if(StaticLibrary *stlib = dynamic_cast(lib)) - queue.push_back(&stlib->get_component()); + if(stlib->get_component()) + queue.push_back(stlib->get_component()); } else - builder.problem(comp.get_package().get_name(), format("Couldn't find library %s for %s", *i, FS::basename(name))); + builder.problem(package->get_name(), format("Couldn't find library %s for %s", *i, name)); } } @@ -71,38 +64,6 @@ void Binary::find_depends() for(list::iterator j=i; (last && j!=dep_libs.end()); ++j) last = (j==i || *j!=*i); if(last) - add_depend(*i); - } - - deps_ready = true; -} - -Action *Binary::create_action() -{ - return new Link(builder, *this); -} - -FS::Path Binary::generate_target_path(const Component &c) -{ - const SourcePackage &pkg = c.get_package(); - string prefix, suffix; - const string &arch = pkg.get_builder().get_current_arch().get_name(); - - if(c.get_type()==Component::LIBRARY) - { - prefix = "lib"; - if(arch=="win32") - suffix = ".dll"; - else - suffix = ".so"; - } - else if(c.get_type()==Component::MODULE) - suffix = ".m"; - else if(c.get_type()==Component::PROGRAM) - { - if(arch=="win32") - suffix = ".exe"; + add_dependency(**i); } - - return pkg.get_out_dir()/(prefix+c.get_name()+suffix); }