| ... | ... | @@ -45,17 +45,6 @@ debug_log_scopes: []const []const u8 = &.{}, |
| 45 | 45 | /// Set to 0 to disable stack collection. |
| 46 | 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 | 48 | dep_prefix: []const u8 = "", |
| 60 | 49 | |
| 61 | 50 | modules: std.array_hash_map.String(*Module), |
| ... | ... | @@ -388,11 +377,6 @@ fn createChild( |
| 388 | 377 | .default_step = undefined, |
| 389 | 378 | .top_level_steps = .{}, |
| 390 | 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 | 380 | .dep_prefix = parent.fmt("{s}{s}.", .{ parent.dep_prefix, dep_name }), |
| 397 | 381 | .modules = .empty, |
| 398 | 382 | .named_writefiles = .empty, |