X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Farchitecture.cpp;h=fe0033891feb903867bc7eb037b8ca9d480c0943;hb=7e8d4dd11403234221a34848a69cff486dc72890;hp=a9434986a91170a3de3ef4c7e6462b7b2ee1c911;hpb=081e13e6f146d1685bdcb1ec1c82752f4c6d264d;p=builder.git diff --git a/source/architecture.cpp b/source/architecture.cpp index a943498..fe00338 100644 --- a/source/architecture.cpp +++ b/source/architecture.cpp @@ -126,6 +126,7 @@ Architecture::Architecture(Builder &b, const string &spec): even though technically they are linked statically. */ sharedlib_patterns.push_back(Pattern("lib%.dll.a")); staticlib_patterns.push_back(Pattern("lib%.a")); + staticlib_patterns.push_back(Pattern("%.lib")); executable_patterns.push_back(Pattern("%.exe")); } else @@ -154,6 +155,30 @@ bool Architecture::match_name(const string &pattern) const return !negate; } +string Architecture::best_match(const list &names) const +{ + string best; + unsigned best_size = 0; + for(list::const_iterator i=names.begin(); i!=names.end(); ++i) + if(match_name(*i)) + { + /* TODO Do full parse and alias resolution here? Otherwise x86 and + x86_64 are treated as equally good, even though the latter is more + specific. */ + unsigned size = 1; + for(string::const_iterator j=i->begin(); j!=i->end(); ++j) + size += (*j=='-'); + + if(size>best_size) + { + best = *i; + best_size = size; + } + } + + return best; +} + void Architecture::resolve_aliases(vector &parts) { for(unsigned i=0; i