X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.cpp;h=fcf30f1d1fca03170f868ac7423ced7d37605683;hb=HEAD;hp=a06bd2031bbbf33e9607bd8184c04066153ae377;hpb=d6e5645659cc31231e6da5028ddd0e0aeca19218;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp deleted file mode 100644 index a06bd20..0000000 --- a/source/binary.cpp +++ /dev/null @@ -1,73 +0,0 @@ -#include -#include -#include "binary.h" -#include "builder.h" -#include "component.h" -#include "objectfile.h" -#include "sharedlibrary.h" -#include "sourcepackage.h" -#include "staticlibrary.h" - -using namespace std; -using namespace Msp; - -Binary::Binary(Builder &b, const FS::Path &p): - FileTarget(b, 0, 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) -{ - component = &c; - for(list::const_iterator i=objs.begin(); i!=objs.end(); ++i) - add_depend(*i); -} - -void Binary::find_depends() -{ - 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(component); - while(!queue.empty()) - { - const Component *c = queue.front(); - queue.erase(queue.begin()); - - const BuildInfo::PathList &libpath = c->get_build_info().libpath; - - const BuildInfo::WordList &libs = c->get_build_info().libs; - for(StringList::const_iterator i=libs.begin(); i!=libs.end(); ++i) - { - 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()); - } - else - builder.problem(spkg.get_name(), format("Couldn't find library %s for %s", *i, name)); - } - } - - /* Add only the last occurrence of each library to the actual dependencies. - This ensures that static library ordering is correct. */ - for(list::iterator i=dep_libs.begin(); i!=dep_libs.end(); ++i) - { - bool last = true; - for(list::iterator j=i; (last && j!=dep_libs.end()); ++j) - last = (j==i || *j!=*i); - if(last) - add_depend(*i); - } -}