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 {...@@ -76,7 +76,6 @@ pub const Env = enum {
76 .test_command,76 .test_command,
77 .run_command,77 .run_command,
78 .ar_command,78 .ar_command,
79 .build_command,
80 .clang_command,79 .clang_command,
81 .stdio_listen,80 .stdio_listen,
82 .build_import_lib,81 .build_import_lib,
...@@ -162,7 +161,6 @@ pub const Env = enum {...@@ -162,7 +161,6 @@ pub const Env = enum {
162 else => Env.ast_gen.supports(feature),161 else => Env.ast_gen.supports(feature),
163 },162 },
164 .@"aarch64-linux" => switch (feature) {163 .@"aarch64-linux" => switch (feature) {
165 .build_command,
166 .stdio_listen,164 .stdio_listen,
167 .incremental,165 .incremental,
168 .aarch64_backend,166 .aarch64_backend,
...@@ -179,7 +177,6 @@ pub const Env = enum {...@@ -179,7 +177,6 @@ pub const Env = enum {
179 else => Env.sema.supports(feature),177 else => Env.sema.supports(feature),
180 },178 },
181 .@"powerpc-linux" => switch (feature) {179 .@"powerpc-linux" => switch (feature) {
182 .build_command,
183 .stdio_listen,180 .stdio_listen,
184 .incremental,181 .incremental,
185 .x86_64_backend,182 .x86_64_backend,
...@@ -210,7 +207,6 @@ pub const Env = enum {...@@ -210,7 +207,6 @@ pub const Env = enum {
210 else => Env.sema.supports(feature),207 else => Env.sema.supports(feature),
211 },208 },
212 .@"x86_64-linux" => switch (feature) {209 .@"x86_64-linux" => switch (feature) {
213 .build_command,
214 .stdio_listen,210 .stdio_listen,
215 .incremental,211 .incremental,
216 .legalize,212 .legalize,
...@@ -251,7 +247,6 @@ pub const Feature = enum {...@@ -251,7 +247,6 @@ pub const Feature = enum {
251 test_command,247 test_command,
252 run_command,248 run_command,
253 ar_command,249 ar_command,
254 build_command,
255 clang_command,250 clang_command,
256 cc_command,251 cc_command,
257 translate_c_command,252 translate_c_command,