diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-09-08 06:17:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-09-08 06:17:08 +0200 |
commit | 6f6b82d00051587fa3496d0bc3f4fe1ff512dda3 (patch) | |
tree | 8492b6b7ccd17a38b5b9e01b2ef77782fec9697a /libbuild2/cc/module.hxx | |
parent | 17c1214943959b304ab5cdcccacec8a70c7a6c0f (diff) |
Manually extract library search paths from LIBRARY_PATH for Clang
Unlike GCC, Clang does not incorporate the LIBRARY_PATH environment variable
value into the -print-search-dirs output.
Diffstat (limited to 'libbuild2/cc/module.hxx')
-rw-r--r-- | libbuild2/cc/module.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libbuild2/cc/module.hxx b/libbuild2/cc/module.hxx index 2a8611b..dc929dd 100644 --- a/libbuild2/cc/module.hxx +++ b/libbuild2/cc/module.hxx @@ -115,18 +115,18 @@ namespace build2 // Defined in gcc.cxx. // pair<dir_paths, size_t> - gcc_header_search_dirs (const process_path&, scope&) const; + gcc_header_search_dirs (const compiler_info&, scope&) const; pair<dir_paths, size_t> - gcc_library_search_dirs (const process_path&, scope&) const; + gcc_library_search_dirs (const compiler_info&, scope&) const; // Defined in msvc.cxx. // pair<dir_paths, size_t> - msvc_header_search_dirs (const process_path&, scope&) const; + msvc_header_search_dirs (const compiler_info&, scope&) const; pair<dir_paths, size_t> - msvc_library_search_dirs (const process_path&, scope&) const; + msvc_library_search_dirs (const compiler_info&, scope&) const; }; class LIBBUILD2_CC_SYMEXPORT module: public build2::module, |