aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/module.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-09-29 20:57:05 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2017-10-03 18:09:10 +0300
commit09839eea3a69e258555eb4ef6d05cd4799ccd7a0 (patch)
tree66fab0c85648740cca3ef282947e87bf95f8e183 /build2/cc/module.hxx
parent0fe0b18432621713f96c437dfa3c81d4e3ae8e36 (diff)
Extract system header search paths from GCC or compatible
Diffstat (limited to 'build2/cc/module.hxx')
-rw-r--r--build2/cc/module.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/build2/cc/module.hxx b/build2/cc/module.hxx
index 08f573b..928e16c 100644
--- a/build2/cc/module.hxx
+++ b/build2/cc/module.hxx
@@ -49,13 +49,22 @@ namespace build2
translate_std (const compiler_info&, scope&, const string*) const = 0;
strings tstd;
+ size_t sys_lib_dirs_extra; // First extra path (size if none).
+ size_t sys_inc_dirs_extra; // First extra path (size if none).
+
compiler_info ci; // Note: some members are moved from.
private:
dir_paths
+ gcc_header_search_paths (process_path&, scope&) const; // gcc.cxx
+
+ dir_paths
gcc_library_search_paths (process_path&, scope&) const; // gcc.cxx
dir_paths
+ msvc_header_search_paths (process_path&, scope&) const; // msvc.cxx
+
+ dir_paths
msvc_library_search_paths (process_path&, scope&) const; // msvc.cxx
private: