X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvirtualfilesystem.cpp;h=fe0159e857d61892ee7cc055bacedcc40d00b303;hb=dc4b917034c9d3718f07139e2f0f3631a080c6f3;hp=be646cdbb9c494afab313bd46ef56fb5add140d3;hpb=7e5ac6af8987bf12f3e338d00e96e8cb74f3534b;p=builder.git diff --git a/source/virtualfilesystem.cpp b/source/virtualfilesystem.cpp index be646cd..fe0159e 100644 --- a/source/virtualfilesystem.cpp +++ b/source/virtualfilesystem.cpp @@ -5,7 +5,7 @@ #include "csourcefile.h" #include "misc.h" #include "sharedlibrary.h" -#include "systemlibrary.h" +#include "staticlibrary.h" #include "virtualfilesystem.h" using namespace std; @@ -158,50 +158,44 @@ FileTarget *VirtualFileSystem::get_header(const FS::Path &fn) FileTarget *VirtualFileSystem::get_library(const string &lib, const FS::Path &path, LibMode mode) { - // Populate a list of candidate filenames - StringList candidates; - const Architecture &arch = builder.get_current_arch(); + + /* Try dynamic libraries only if library mode permits it */ if(mode!=ALL_STATIC) { - // XXX Should probably let the Architecture populate the list - if(arch.get_system()=="windows") + FS::Path fn = try_patterns(path, arch.get_shared_library_patterns(), lib); + if(!fn.empty()) { - candidates.push_back("lib"+lib+".dll"); - candidates.push_back(lib+".dll"); + FileTarget *tgt = get_target(fn); + if(!tgt) + return new SharedLibrary(builder, fn); + else if(mode==DYNAMIC || !tgt->get_package()) + return tgt; } - else - candidates.push_back("lib"+lib+".so"); } /* Static libraries are always considered, since sometimes shared versions may not be available */ - candidates.push_back("lib"+lib+".a"); - if(arch.get_system()=="windows") - candidates.push_back("lib"+lib+".dll.a"); - - for(StringList::iterator i=candidates.begin(); i!=candidates.end(); ++i) + FS::Path fn = try_patterns(path, arch.get_static_library_patterns(), lib); + if(!fn.empty()) { - FS::Path full = path/ *i; - FileTarget *tgt = get_target(full); - - if(tgt) - { - Target *real_tgt = tgt->get_real_target(); - - /* Ignore dynamic libraries from local packages unless library mode is - DYNAMIC */ - if(dynamic_cast(real_tgt) && mode!=DYNAMIC) - continue; - else if(tgt) - return tgt; - } - else if(FS::is_reg(full)) - { - tgt = new SystemLibrary(builder, full.str()); + if(FileTarget *tgt = get_target(fn)) return tgt; - } + else + return new StaticLibrary(builder, fn); } return 0; } + +FS::Path VirtualFileSystem::try_patterns(const FS::Path &dir, const list &patterns, const string &base) +{ + for(list::const_iterator i=patterns.begin(); i!=patterns.end(); ++i) + { + FS::Path full = dir/i->apply(base); + if(get_target(full) || FS::is_reg(full)) + return full; + } + + return FS::Path(); +}