X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fvirtualfilesystem.cpp;h=75f935d505e4c4388c9d1073c1de0ec7a01786a6;hb=dceec8d95c63aaf4d8d4b367c9846caf9e32a6bf;hp=fe0159e857d61892ee7cc055bacedcc40d00b303;hpb=dc4b917034c9d3718f07139e2f0f3631a080c6f3;p=builder.git diff --git a/source/virtualfilesystem.cpp b/source/virtualfilesystem.cpp index fe0159e..75f935d 100644 --- a/source/virtualfilesystem.cpp +++ b/source/virtualfilesystem.cpp @@ -40,15 +40,13 @@ void VirtualFileSystem::register_path(const FS::Path &path, FileTarget *t) targets.insert(TargetMap::value_type(path.str(), t)); } -FileTarget *VirtualFileSystem::find_header(const string &include, const FS::Path &from, const list &path) +FileTarget *VirtualFileSystem::find_header(const string &name, const SearchPath &path) { string hash(8, 0); - if(include[0]=='\"') - update_hash(hash, from.str()); for(list::const_iterator i=path.begin(); i!=path.end(); ++i) update_hash(hash, *i); - string id = hash+include; + string id = hash+name; TargetMap::iterator i = include_cache.find(id); if(i!=include_cache.end()) return i->second; @@ -77,9 +75,8 @@ FileTarget *VirtualFileSystem::find_header(const string &include, const FS::Path cxx_ver = "-"; } - string fn = include.substr(1); if(builder.get_verbose()>=5) - IO::print("Looking for include %s from %s with path %s\n", fn, from, join(path.begin(), path.end())); + 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(); @@ -91,12 +88,10 @@ FileTarget *VirtualFileSystem::find_header(const string &include, const FS::Path syspath.push_back((FS::Path("/usr/include/c++/")/cxx_ver).str()); FileTarget *tgt = 0; - if(include[0]=='\"') - tgt = get_header(FS::Path(from)/fn); - for(list::const_iterator j=path.begin(); (!tgt && j!=path.end()); ++j) - tgt = get_header(FS::Path(*j)/fn); - for(list::const_iterator j=syspath.begin(); (!tgt && j!=syspath.end()); ++j) - tgt = get_header(FS::Path(*j)/fn); + 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); include_cache.insert(TargetMap::value_type(id, tgt));