From 09839eea3a69e258555eb4ef6d05cd4799ccd7a0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 29 Sep 2017 20:57:05 +0200 Subject: Extract system header search paths from GCC or compatible --- build2/cc/module.hxx | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'build2/cc/module.hxx') 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: -- cgit v1.1