X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.cpp;h=81124b9465fef1102c5bddd4e66494139e4f47f6;hb=2f1e3b296bb8a2c4fcb73d7339cf7d0d6f9d1459;hp=b3f018488347fc090d57839a0a0cc7344eaf40e2;hpb=16bda19cc87b5064daad9955f0ebb5ac5be7dec7;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp index b3f0184..81124b9 100644 --- a/source/binary.cpp +++ b/source/binary.cpp @@ -12,23 +12,31 @@ 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, 0, p) +{ } + +Binary::Binary(Builder &b, const Component &c, const std::string &p, const list &objs): + FileTarget(b, &c.get_package(), c.get_package().get_out_dir()/p) { + 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(); @@ -46,10 +54,10 @@ void Binary::find_depends() 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)); } } @@ -63,31 +71,4 @@ void Binary::find_depends() if(last) add_depend(*i); } - - deps_ready = true; -} - -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); }