aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-02-09 13:38:42 -0800
committerGitHub <noreply@github.com>2024-02-09 13:38:42 -0800
commit54bbc73f8502fe073d385361ddb34a43d12eec39 (patch)
tree6eb554a4639f2c05bdfa5fc94553edc7f5df1650 /src/Compilation.zig
parentd3cf911a803912a5aabe7a8d130c8b6468b95ff1 (diff)
parent318e9cdaaae2f01c1a6e5db9cf66fe875821787e (diff)
downloadzig-54bbc73f8502fe073d385361ddb34a43d12eec39.tar.gz
zig-54bbc73f8502fe073d385361ddb34a43d12eec39.zip
Merge pull request #18712 from Vexu/std.options
std: make options a struct instance instead of a namespace
Diffstat (limited to 'src/Compilation.zig')
-rw-r--r--src/Compilation.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig
index d2ed241960..8d7d3ea8b1 100644
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -1613,7 +1613,6 @@ pub fn create(gpa: Allocator, arena: Allocator, options: CreateOptions) !*Compil
hash.add(options.config.use_lib_llvm);
hash.add(options.config.dll_export_fns);
hash.add(options.config.is_test);
- hash.add(options.config.test_evented_io);
hash.addOptionalBytes(options.test_filter);
hash.addOptionalBytes(options.test_name_prefix);
hash.add(options.skip_linker_dependencies);
@@ -2476,7 +2475,6 @@ fn addNonIncrementalStuffToCacheManifest(
try addModuleTableToCacheHash(gpa, arena, &man.hash, mod.root_mod, mod.main_mod, .{ .files = man });
// Synchronize with other matching comments: ZigOnlyHashStuff
- man.hash.add(comp.config.test_evented_io);
man.hash.addOptionalBytes(comp.test_filter);
man.hash.addOptionalBytes(comp.test_name_prefix);
man.hash.add(comp.skip_linker_dependencies);