diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-07 09:41:13 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-07 09:41:13 +0200 |
commit | 4d43fc686427252367576bb1a37724bb45958358 (patch) | |
tree | ccc5bef784457788a1ff5c5f93c39f5b9090b107 /libbuild2/cc/guess.hxx | |
parent | a90eecb47438303ae3f6409276f8d9bb77c9f6fc (diff) |
Pass MSVC system library search paths to linker if LIB envvar is unset
Diffstat (limited to 'libbuild2/cc/guess.hxx')
-rw-r--r-- | libbuild2/cc/guess.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libbuild2/cc/guess.hxx b/libbuild2/cc/guess.hxx index 3677cc7..a8784fc 100644 --- a/libbuild2/cc/guess.hxx +++ b/libbuild2/cc/guess.hxx @@ -215,6 +215,11 @@ namespace build2 string runtime; string c_stdlib; string x_stdlib; + + // System library/header search paths, if extracted at the guess stage. + // + optional<dir_paths> sys_lib_dirs; + optional<dir_paths> sys_inc_dirs; }; // In a sense this is analagous to the language standard which we handle |