| ... | @@ -45,17 +45,6 @@ debug_log_scopes: []const []const u8 = &.{}, | ... | @@ -45,17 +45,6 @@ debug_log_scopes: []const []const u8 = &.{}, |
| 45 | /// Set to 0 to disable stack collection. | 45 | /// Set to 0 to disable stack collection. |
| 46 | debug_stack_frames_count: u8 = 8, | 46 | debug_stack_frames_count: u8 = 8, |
| 47 | | 47 | |
| 48 | /// Experimental. Use system Darling installation to run cross compiled macOS build artifacts. | | |
| 49 | enable_darling: bool = false, | | |
| 50 | /// Use system QEMU installation to run cross compiled foreign architecture build artifacts. | | |
| 51 | enable_qemu: bool = false, | | |
| 52 | /// Darwin. Use Rosetta to run x86_64 macOS build artifacts on arm64 macOS. | | |
| 53 | enable_rosetta: bool = false, | | |
| 54 | /// Use system Wasmtime installation to run cross compiled wasm/wasi build artifacts. | | |
| 55 | enable_wasmtime: bool = false, | | |
| 56 | /// Use system Wine installation to run cross compiled Windows build artifacts. | | |
| 57 | enable_wine: bool = false, | | |
| 58 | | | |
| 59 | dep_prefix: []const u8 = "", | 48 | dep_prefix: []const u8 = "", |
| 60 | | 49 | |
| 61 | modules: std.array_hash_map.String(*Module), | 50 | modules: std.array_hash_map.String(*Module), |
| ... | @@ -388,11 +377,6 @@ fn createChild( | ... | @@ -388,11 +377,6 @@ fn createChild( |
| 388 | .default_step = undefined, | 377 | .default_step = undefined, |
| 389 | .top_level_steps = .{}, | 378 | .top_level_steps = .{}, |
| 390 | .debug_log_scopes = parent.debug_log_scopes, | 379 | .debug_log_scopes = parent.debug_log_scopes, |
| 391 | .enable_darling = parent.enable_darling, | | |
| 392 | .enable_qemu = parent.enable_qemu, | | |
| 393 | .enable_rosetta = parent.enable_rosetta, | | |
| 394 | .enable_wasmtime = parent.enable_wasmtime, | | |
| 395 | .enable_wine = parent.enable_wine, | | |
| 396 | .dep_prefix = parent.fmt("{s}{s}.", .{ parent.dep_prefix, dep_name }), | 380 | .dep_prefix = parent.fmt("{s}{s}.", .{ parent.dep_prefix, dep_name }), |
| 397 | .modules = .empty, | 381 | .modules = .empty, |
| 398 | .named_writefiles = .empty, | 382 | .named_writefiles = .empty, |