X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.cpp;h=ff98644ec53a6711ed3e63910a0876bd6447dc40;hb=632361796a7ddadf8a726526c937fab22281fb7b;hp=636def98a295f318e0926cec71b39a277b7f3e21;hpb=05a2b9dabd01414e9e9a91f9d69babaca4ccb32d;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp index 636def9..ff98644 100644 --- a/source/binary.cpp +++ b/source/binary.cpp @@ -1,43 +1,38 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2010 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) + FileTarget(b, &c.get_package(), generate_target_path(c)) { - buildable = true; + component = &c; for(list::const_iterator i=objs.begin(); i!=objs.end(); ++i) add_depend(*i); } void Binary::find_depends() { - LibMode libmode = comp.get_package().get_library_mode(); + if(!component) + return; + + const SourcePackage &spkg = component->get_package(); + LibMode libmode = spkg.get_library_mode(); if(dynamic_cast(this)) libmode = DYNAMIC; list queue; list dep_libs; - queue.push_back(&comp); + queue.push_back(component); while(!queue.empty()) { const Component *c = queue.front(); @@ -48,17 +43,17 @@ void Binary::find_depends() const list &libs = c->get_build_info().libs; for(StringList::const_iterator i=libs.begin(); i!=libs.end(); ++i) { - Target *lib = builder.get_library(*i, libpath, libmode); + Target *lib = builder.get_vfs().find_library(*i, libpath, libmode); if(lib) { dep_libs.push_back(lib); lib = lib->get_real_target(); if(StaticLibrary *stlib = dynamic_cast(lib)) - queue.push_back(&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, name)); + builder.problem(spkg.get_name(), format("Couldn't find library %s for %s", *i, name)); } } @@ -76,11 +71,6 @@ void Binary::find_depends() 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();