builder.get_logger().log("vfs", format("Path %s registered to %s", path, t->get_name()));
}
-FileTarget *VirtualFileSystem::find_header(const string &name, const SearchPath &path)
+FileTarget *VirtualFileSystem::find_header(const string &name, const SearchPath &path, bool use_syspath)
{
// 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();
list<FS::Path> combined_path(path.begin(), path.end());
- combined_path.insert(combined_path.end(), syspath.begin(), syspath.end());
+ if(use_syspath)
+ {
+ const Tool::SearchPath &syspath = tool->get_system_path();
+ combined_path.insert(combined_path.end(), syspath.begin(), syspath.end());
+ }
for(list<FS::Path>::const_iterator i=combined_path.begin(); i!=combined_path.end(); ++i)
{
return 0;
}
-FileTarget *VirtualFileSystem::find_library(const string &lib, const SearchPath &path, BuildInfo::LibraryMode mode)
+FileTarget *VirtualFileSystem::find_library(const string &lib, const SearchPath &path, BuildInfo::LibraryMode mode, bool use_syspath)
{
- const Tool &linker = builder.get_toolchain().get_tool("LINK");
- const Tool::SearchPath &syspath = linker.get_system_path();
-
list<FS::Path> combined_path(path.begin(), path.end());
- combined_path.insert(combined_path.end(), syspath.begin(), syspath.end());
+ if(use_syspath)
+ {
+ const Tool &linker = builder.get_toolchain().get_tool("LINK");
+ const Tool::SearchPath &syspath = linker.get_system_path();
+ combined_path.insert(combined_path.end(), syspath.begin(), syspath.end());
+ }
const Architecture &arch = builder.get_current_arch();
void register_path(const Msp::FS::Path &, FileTarget *);
/** 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. */
- FileTarget *find_header(const std::string &, const SearchPath &);
+ 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 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
associated with it, a new package-less target of appropriate type is
- created. */
- FileTarget *find_library(const std::string &, const SearchPath &, BuildInfo::LibraryMode);
+ created. If use_syspath is true, the system path reported by the LINK tool
+ is also searched. */
+ FileTarget *find_library(const std::string &, const SearchPath &, BuildInfo::LibraryMode, bool use_syspath = true);
/** Locates a binary. The normal search path for binaries is used (usually
this means the PATH environment variable). If a file is found but no target