authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-06-03 16:22:13-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-06-29 23:50:18-07:00
log38992fc017f11ec39769043ff309c25dba819760
tree6e6c06d9ca5bdf856ccce9bc5b22693e51e85bf4
parenta04f90c35b116ede4d81c8f03f08d0f79a908dea

env: remove build_command

it's a regular jit cmd now

1 files changed, 0 insertions(+), 5 deletions(-)

src/dev.zig-5
......@@ -76,7 +76,6 @@ pub const Env = enum {
7676 .test_command,
7777 .run_command,
7878 .ar_command,
79 .build_command,
8079 .clang_command,
8180 .stdio_listen,
8281 .build_import_lib,
......@@ -162,7 +161,6 @@ pub const Env = enum {
162161 else => Env.ast_gen.supports(feature),
163162 },
164163 .@"aarch64-linux" => switch (feature) {
165 .build_command,
166164 .stdio_listen,
167165 .incremental,
168166 .aarch64_backend,
......@@ -179,7 +177,6 @@ pub const Env = enum {
179177 else => Env.sema.supports(feature),
180178 },
181179 .@"powerpc-linux" => switch (feature) {
182 .build_command,
183180 .stdio_listen,
184181 .incremental,
185182 .x86_64_backend,
......@@ -210,7 +207,6 @@ pub const Env = enum {
210207 else => Env.sema.supports(feature),
211208 },
212209 .@"x86_64-linux" => switch (feature) {
213 .build_command,
214210 .stdio_listen,
215211 .incremental,
216212 .legalize,
......@@ -251,7 +247,6 @@ pub const Feature = enum {
251247 test_command,
252248 run_command,
253249 ar_command,
254 build_command,
255250 clang_command,
256251 cc_command,
257252 translate_c_command,