]> git.tdb.fi Git - builder.git/commitdiff
Prepare tools before querying their system path in the VFS
authorMikko Rasa <tdb@tdb.fi>
Fri, 1 Dec 2017 09:18:24 +0000 (11:18 +0200)
committerMikko Rasa <tdb@tdb.fi>
Fri, 1 Dec 2017 09:18:24 +0000 (11:18 +0200)
source/virtualfilesystem.cpp
source/virtualfilesystem.h

index 869a1e3899c4c3d4adfd6ff06da83fde142230d9..820fb5b670bfc600a6df879bdc2c15f26ef39452 100644 (file)
@@ -35,13 +35,15 @@ void VirtualFileSystem::register_path(const FS::Path &path, FileTarget *t)
        builder.get_logger().log("vfs", format("Path %s registered to %s", path, t->get_name()));
 }
 
-FileTarget *VirtualFileSystem::find_header(const string &name, const Tool *tool, const SearchPath &path, bool use_syspath)
+FileTarget *VirtualFileSystem::find_header(const string &name, Tool *tool, const SearchPath &path, bool use_syspath)
 {
        if(!tool)
                tool = builder.get_toolchain().get_tool_for_suffix(FS::extpart(FS::basename(name)), true);
        if(!tool)
                return 0;
 
+       tool->prepare();
+
        list<FS::Path> combined_path(path.begin(), path.end());
        if(use_syspath)
        {
@@ -74,7 +76,8 @@ FileTarget *VirtualFileSystem::find_library(const string &lib, const SearchPath
        list<FS::Path> combined_path(path.begin(), path.end());
        if(use_syspath)
        {
-               const Tool &linker = builder.get_toolchain().get_tool("LINK");
+               Tool &linker = builder.get_toolchain().get_tool("LINK");
+               linker.prepare();
                const Tool::SearchPath &syspath = linker.get_system_path();
                combined_path.insert(combined_path.end(), syspath.begin(), syspath.end());
        }
index 90151fe86983163cd87edb61ad5624e08707db80..a3327de2490001c1f3e3c349ac284e66fb9c7611 100644 (file)
@@ -42,7 +42,7 @@ public:
        /** Locates a source file.  If a file is found but no target is associated
        with it, a new package-less target is created with the appropriate tool.  If
        use_syspath is true, the system path reported by the tool is also searched. */
-       FileTarget *find_header(const std::string &, const Tool *, const SearchPath &, bool use_syspath = true);
+       FileTarget *find_header(const std::string &, Tool *, const SearchPath &, bool use_syspath = true);
 
        /** Locates a library.  The library name should be the same as what would be
        used in linking with the library.  If a file is found but no target is