| author | |
| committer | |
| log | 9ef236bc114fa859768d0837abe4e7e573ad22c8 |
| tree | 2118913ec76f4449dc5e57136bff7b3c3b28c2f7 |
| parent | 4af8a35ca91578615f1a6c7a3dc8c82cfd48fea3 |
2 files changed, 7 insertions(+), 0 deletions(-)
lib/compiler/Maker.zig+6| ... | ... | @@ -242,6 +242,12 @@ pub fn main(init: process.Init.Minimal) !void { |
| 242 | 242 | } |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | if (EnvVar.ZIG_BUILD_SUMMARY.get(&graph.environ_map)) |str| { | |
| 246 | if (stringToEnum(Summary, str)) |value| { | |
| 247 | summary = value; | |
| 248 | } | |
| 249 | } | |
| 250 | ||
| 245 | 251 | try configure_argv.ensureUnusedCapacity(arena, 16); |
| 246 | 252 | try cached_passthru_configure.ensureUnusedCapacity(arena, 16); |
| 247 | 253 |
lib/std/zig.zig+1| ... | ... | @@ -763,6 +763,7 @@ pub const EnvVar = enum { |
| 763 | 763 | ZIG_LIBC, |
| 764 | 764 | ZIG_BUILD_ERROR_STYLE, |
| 765 | 765 | ZIG_BUILD_MULTILINE_ERRORS, |
| 766 | ZIG_BUILD_SUMMARY, | |
| 766 | 767 | ZIG_VERBOSE_LINK, |
| 767 | 768 | ZIG_VERBOSE_CC, |
| 768 | 769 | ZIG_VERBOSE_CMD, |