aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-07-17 22:51:23 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-09-24 19:57:28 -0700
commitf49a54745ba67a4226cbe706727fb6817b64b1aa (patch)
tree198d12d258999dd7f081fdb6acb07978dffe11e8 /build.zig
parent91b0adc4c15a273b7a8a94371941a3f3f7fd2232 (diff)
downloadzig-f49a54745ba67a4226cbe706727fb6817b64b1aa.tar.gz
zig-f49a54745ba67a4226cbe706727fb6817b64b1aa.zip
compiler: update aro and translate-c to latest; delete clang translate-c
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig6
1 files changed, 0 insertions, 6 deletions
diff --git a/build.zig b/build.zig
index b4bf474057..e217e9e274 100644
--- a/build.zig
+++ b/build.zig
@@ -732,13 +732,7 @@ fn addCompilerMod(b: *std.Build, options: AddCompilerModOptions) *std.Build.Modu
.root_source_file = b.path("lib/compiler/aro/aro.zig"),
});
- const aro_translate_c_mod = b.createModule(.{
- .root_source_file = b.path("lib/compiler/aro_translate_c.zig"),
- });
-
- aro_translate_c_mod.addImport("aro", aro_mod);
compiler_mod.addImport("aro", aro_mod);
- compiler_mod.addImport("aro_translate_c", aro_translate_c_mod);
return compiler_mod;
}