X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.cpp;h=c8011d7c2a24c0cec015d751fca615fc8df23de4;hb=8f99b70eb78bdb5537afc77aa283961a2e825506;hp=079ae84995843d669f632789030e4bbb24bde69d;hpb=c51411c4b3ed4e6a0d8343b848db3dc736bc7857;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp index 079ae84..c8011d7 100644 --- a/source/binary.cpp +++ b/source/binary.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -22,8 +23,8 @@ Binary::Binary(Builder &b, const Component &c, const string &p, const list::const_iterator i=objects.begin(); i!=objects.end(); ++i) - add_dependency(**i); + for(ObjectFile *o: objects) + add_dependency(*o); nested_build_sig = true; arch_in_build_sig = true; @@ -31,11 +32,13 @@ Binary::Binary(Builder &b, const Component &c, const string &p, const list::const_iterator i=objects.begin(); i!=objects.end(); ++i) - if(const Tool *obj_tool = (*i)->get_tool()) + for(ObjectFile *o: objects) + if(const Tool *obj_tool = o->get_tool()) binfo.update_from(obj_tool->get_build_info()); Target::collect_build_info(binfo); + + binfo.update_from(static_binfo); } void Binary::find_dependencies() @@ -43,49 +46,52 @@ void Binary::find_dependencies() if(!component) return; - list queue; + list queue; list dep_libs; set missing_libs; - queue.push_back(component); - while(!queue.empty()) + queue.push_back(this); + for(auto j=queue.begin(); j!=queue.end(); ++j) { - queue.erase(queue.begin()); + Target *tgt = *j; BuildInfo binfo; - collect_build_info(binfo); + tgt->collect_build_info(binfo); + if(tgt!=this) + { + static_binfo.libpath.insert(static_binfo.libpath.end(), binfo.libpath.begin(), binfo.libpath.end()); + static_binfo.keep_symbols.insert(static_binfo.keep_symbols.end(), binfo.keep_symbols.begin(), binfo.keep_symbols.end()); + if(binfo.threads) + static_binfo.threads = true; + } - for(BuildInfo::WordList::const_iterator i=binfo.libs.begin(); i!=binfo.libs.end(); ++i) + auto insert_pos = j; + ++insert_pos; + for(const string &l: binfo.libs) { - if(i->size()>10 && !i->compare(i->size()-10, 10, ".framework")) + if(l.size()>10 && !l.compare(l.size()-10, 10, ".framework")) continue; - BuildInfo::LibraryMode libmode = component->get_build_info().get_libmode_for(*i); - Target *lib = builder.get_vfs().find_library(*i, binfo.libpath, libmode); + BuildInfo::LibraryMode libmode = component->get_build_info().get_libmode_for(l); + Target *lib = builder.get_vfs().find_library(l, binfo.libpath, libmode); if(lib) { Target *real = lib->get_real_target(); if(StaticLibrary *stlib = dynamic_cast(real)) - { - dep_libs.push_back(stlib); - if(stlib->get_component()) - queue.push_back(stlib->get_component()); - } + queue.insert(insert_pos, stlib); else dep_libs.push_back(lib); } - else if(missing_libs.insert(*i).second) - problems.push_back(format("Required library %s not found", *i)); + else if(missing_libs.insert(l).second) + problems.push_back(format("Required library %s not found", l)); } } + queue.pop_front(); + dep_libs.splice(dep_libs.begin(), queue); + /* 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) + for(auto i=dep_libs.begin(); i!=dep_libs.end(); ++i) + if(!any_of(next(i), dep_libs.end(), [i](Target *d){ return d==*i; })) add_dependency(**i); - } }