X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvirtualfilesystem.cpp;h=0ada219aabdae0b4b55d443a558fd4187327836b;hb=8b9f2196ec0a930992614f174b7970c2ed523699;hp=d5cf909e5f7c284d6121917b4f82f51ab2cea273;hpb=4facd021514ab372c23b1b132d6b4b62baa4efbf;p=builder.git diff --git a/source/virtualfilesystem.cpp b/source/virtualfilesystem.cpp index d5cf909..0ada219 100644 --- a/source/virtualfilesystem.cpp +++ b/source/virtualfilesystem.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include "builder.h" @@ -6,6 +7,7 @@ #include "misc.h" #include "sharedlibrary.h" #include "staticlibrary.h" +#include "tool.h" #include "virtualfilesystem.h" using namespace std; @@ -54,27 +56,24 @@ FileTarget *VirtualFileSystem::find_header(const string &name, const SearchPath if(builder.get_verbose()>=5) IO::print("Looking for header %s with path %s\n", name, join(path.begin(), path.end())); - SearchPath syspath; - const Architecture &arch = builder.get_current_arch(); - if(arch.is_native()) - syspath.push_back("/usr/include"); - else - syspath.push_back("/usr/"+arch.get_cross_prefix()+"/include"); - if(cxx_ver!="-") - syspath.push_back((FS::Path("/usr/include/c++/")/cxx_ver).str()); + // XXX This will cause trouble with multiple architectures in a single build + const Tool *tool = builder.get_toolchain().get_tool_for_suffix(FS::extpart(FS::basename(name)), true); + if(!tool) + return 0; + const Tool::SearchPath &syspath = tool->get_system_path(); FileTarget *tgt = 0; for(SearchPath::const_iterator j=path.begin(); (!tgt && j!=path.end()); ++j) - tgt = get_header(FS::Path(*j)/name); - for(SearchPath::const_iterator j=syspath.begin(); (!tgt && j!=syspath.end()); ++j) - tgt = get_header(FS::Path(*j)/name); + tgt = get_header(FS::Path(*j)/name, *tool); + for(Tool::SearchPath::const_iterator j=syspath.begin(); (!tgt && j!=syspath.end()); ++j) + tgt = get_header(FS::Path(*j)/name, *tool); include_cache.insert(TargetMap::value_type(id, tgt)); return tgt; } -FileTarget *VirtualFileSystem::find_library(const string &lib, const list &path, LibMode mode) +FileTarget *VirtualFileSystem::find_library(const string &lib, const SearchPath &path, LibMode mode) { string hash(8, 0); for(list::const_iterator i=path.begin(); i!=path.end(); ++i) @@ -85,27 +84,16 @@ FileTarget *VirtualFileSystem::find_library(const string &lib, const listsecond; - SearchPath syspath; - const Architecture &arch = builder.get_current_arch(); - if(arch.is_native()) - { - syspath.push_back("/lib"); - syspath.push_back("/usr/lib"); - if(arch.match_name("pc-32-linux")) - syspath.push_back("/usr/lib/i386-linux-gnu"); - else if(arch.match_name("pc-64-linux")) - syspath.push_back("/usr/lib/x86_64-linux-gnu"); - } - else - syspath.push_back("/usr/"+arch.get_cross_prefix()+"/lib"); + const Tool &linker = builder.get_toolchain().get_tool("LINK"); + const Tool::SearchPath &syspath = linker.get_system_path(); if(builder.get_verbose()>=5) IO::print("Looking for library %s with path %s\n", lib, join(path.begin(), path.end())); FileTarget *tgt = 0; - for(StringList::const_iterator j=path.begin(); (!tgt && j!=path.end()); ++j) + for(SearchPath::const_iterator j=path.begin(); (!tgt && j!=path.end()); ++j) tgt = get_library(lib, *j, mode); - for(StringList::iterator j=syspath.begin(); (!tgt && j!=syspath.end()); ++j) + for(Tool::SearchPath::const_iterator j=syspath.begin(); (!tgt && j!=syspath.end()); ++j) tgt = get_library(lib, *j, mode); library_cache.insert(TargetMap::value_type(id, tgt)); @@ -113,17 +101,14 @@ FileTarget *VirtualFileSystem::find_library(const string &lib, const list(tool.create_source(fn)); + return 0; }