diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-07-16 09:05:04 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-07-16 09:05:04 +0200 |
commit | 51ab0a979c5c53defd5eda9fa997b2abfd0d4f7d (patch) | |
tree | a7be7d7a9c8956efc8f9cc81ab7e7576fe78668b /libbuild2/cc/common.hxx | |
parent | bca2aa388e690d1e575d890cf15e0dc9632728f7 (diff) |
Save original compiler path/mode in {c,cxx}.config.path/mode
It turns out that when propagating {c,cxx}.config in tests we don't want to
propagate any options (such as *.std) that have been folded into our project's
mode.
Diffstat (limited to 'libbuild2/cc/common.hxx')
-rw-r--r-- | libbuild2/cc/common.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbuild2/cc/common.hxx b/libbuild2/cc/common.hxx index 781fcf5..bf971ab 100644 --- a/libbuild2/cc/common.hxx +++ b/libbuild2/cc/common.hxx @@ -56,6 +56,8 @@ namespace build2 const variable& x_path; // Compiler process path. const variable& x_mode; // Compiler mode options. + const variable& x_c_path; // Compiler path as configured. + const variable& x_c_mode; // Compiler mode as configured. const variable& x_sys_lib_dirs; // System library search directories. const variable& x_sys_inc_dirs; // System header search directories. |