X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.cpp;h=2d0a409c5f2c53835fd38f6457e8fcccabb37ee6;hb=e89616b514c77e189b93d5a46aa5a5a72e34c3cb;hp=aa75b4599a52486614cd7c8df74a6a3f40bab2ab;hpb=43bd25ffcb0b4f7882773f4676b209a99cb73c04;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp index aa75b45..2d0a409 100644 --- a/source/binary.cpp +++ b/source/binary.cpp @@ -3,55 +3,60 @@ #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); } 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(); queue.erase(queue.begin()); - const StringList &libpath = c->get_build_info().libpath; + const BuildInfo::PathList &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::WordList &libs = c->get_build_info().libs; + for(BuildInfo::WordList::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)); } } @@ -65,36 +70,4 @@ void Binary::find_depends() 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 &sys = pkg.get_builder().get_current_arch().get_system(); - - if(c.get_type()==Component::LIBRARY) - { - prefix = "lib"; - if(sys=="windows") - suffix = ".dll"; - else - suffix = ".so"; - } - else if(c.get_type()==Component::MODULE) - suffix = ".m"; - else if(c.get_type()==Component::PROGRAM) - { - if(sys=="windows") - suffix = ".exe"; - } - - return pkg.get_out_dir()/(prefix+c.get_name()+suffix); }