diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-20 11:19:28 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-20 11:26:05 +0200 |
commit | 0353b231d51ab7ea5ead98ac838e7c2ba1b0df89 (patch) | |
tree | c5b0794512587a1062de97153df6f0b236f928d3 /libbuild2/cc/common.hxx | |
parent | 834152a6e3f3e8459b53e49370bfdd82685a700d (diff) |
Track changes to environment in cc rules
Diffstat (limited to 'libbuild2/cc/common.hxx')
-rw-r--r-- | libbuild2/cc/common.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libbuild2/cc/common.hxx b/libbuild2/cc/common.hxx index 612d081..758c675 100644 --- a/libbuild2/cc/common.hxx +++ b/libbuild2/cc/common.hxx @@ -170,6 +170,8 @@ namespace build2 const string& tsys; // x.target.system const string& tclass; // x.target.class + const string& env_checksum; // config_module::env_checksum + bool modules; // x.features.modules bool symexport; // x.features.symexport @@ -230,6 +232,7 @@ namespace build2 const process_path& path, const strings& mode, const target_triplet& tgt, + const string& env_cs, bool fm, bool fs, const dir_paths& sld, @@ -250,6 +253,7 @@ namespace build2 cmaj (mj), cmin (mi), cpath (path), cmode (mode), ctgt (tgt), tsys (ctgt.system), tclass (ctgt.class_), + env_checksum (env_cs), modules (fm), symexport (fs), importable_headers (nullptr), |