X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbinary.cpp;h=f245037b6b24abe35662b46ab04219dad5de7e7f;hb=451ef4f33b5a57dcb56bd7cb671bed359ac86247;hp=e7b5e818d4e42f3f78272347d1258ec7e883cb49;hpb=0d95fee118a3fcd78f153dca5721d9fe19b6f6bf;p=builder.git diff --git a/source/binary.cpp b/source/binary.cpp index e7b5e81..f245037 100644 --- a/source/binary.cpp +++ b/source/binary.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -13,17 +14,27 @@ using namespace std; using namespace Msp; -Binary::Binary(Builder &b, const FS::Path &p): - FileTarget(b, p) -{ } - -Binary::Binary(Builder &b, const Component &c, const string &p, const list &objs): +Binary::Binary(Builder &b, const Component &c, const string &p, const vector &objs): FileTarget(b, c.get_package(), c.get_package().get_output_directory()/p), objects(objs) { component = &c; - for(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; +} + +void Binary::collect_build_info(BuildInfo &binfo) const +{ + 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() @@ -31,60 +42,55 @@ void Binary::find_dependencies() if(!component) return; - list queue; - list dep_libs; - set missing_libs; - queue.push_back(component); - while(!queue.empty()) + vector static_libs; + vector shared_libs; + vector missing_libs; + find_dependencies(this, static_libs, shared_libs, missing_libs); + + for(Target *t: static_libs) + add_dependency(*t); + for(Target *t: shared_libs) + add_dependency(*t); + for(const string &m: missing_libs) + problems.push_back(format("Required library %s not found", m)); +} + +void Binary::find_dependencies(Target *tgt, vector &static_libs, vector &shared_libs, vector &missing_libs) +{ + BuildInfo 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(const string &l: binfo.libs) { - const Component *c = queue.front(); - queue.erase(queue.begin()); + if(l.size()>10 && !l.compare(l.size()-10, 10, ".framework")) + continue; - const BuildInfo &binfo = c->get_build_info(); - for(BuildInfo::WordList::const_iterator i=binfo.libs.begin(); i!=binfo.libs.end(); ++i) + BuildInfo::LibraryMode libmode = component->get_build_info().get_libmode_for(l); + Target *lib = builder.get_vfs().find_library(l, binfo.libpath, libmode); + if(lib) { - BuildInfo::LibraryMode libmode = component->get_build_info().get_libmode_for(*i); - Target *lib = builder.get_vfs().find_library(*i, binfo.libpath, libmode); - if(lib) + Target *real = lib->get_real_target(); + if(StaticLibrary *stlib = dynamic_cast(real)) { - 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()); - } - else - dep_libs.push_back(lib); + /* Keep only the last occurrence of each static library. This + ensures the order is correct for linking. */ + auto i = find(static_libs, stlib); + if(i!=static_libs.end()) + static_libs.erase(i); + static_libs.push_back(stlib); + find_dependencies(stlib, static_libs, shared_libs, missing_libs); } - else if(missing_libs.insert(*i).second) - problems.push_back(format("Required library %s not found", *i)); + else if(!any_equals(shared_libs, lib)) + shared_libs.push_back(lib); } + else if(!any_equals(missing_libs, l)) + missing_libs.push_back(l); } - - /* 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_dependency(**i); - } -} - -string Binary::create_build_signature() const -{ - set object_tools; - for(list::const_iterator i=objects.begin(); i!=objects.end(); ++i) - object_tools.insert((*i)->get_tool()); - - list sigs; - sigs.push_back(tool->create_build_signature(component->get_build_info())); - for(set::const_iterator i=object_tools.begin(); i!=object_tools.end(); ++i) - sigs.push_back((*i)->create_build_signature(component->get_build_info())); - sigs.sort(); - - return join(sigs.begin(), sigs.end(), ";"); }