| ... | ... | @@ -289,12 +289,12 @@ const QueuedJobs = struct { |
| 289 | 289 | compiler_rt_obj: bool = false, |
| 290 | 290 | fuzzer_lib: bool = false, |
| 291 | 291 | update_builtin_zig: bool, |
| 292 | | musl_crt_file: [@typeInfo(musl.CrtFile).@"enum".fields.len]bool = [1]bool{false} ** @typeInfo(musl.CrtFile).@"enum".fields.len, |
| 293 | | glibc_crt_file: [@typeInfo(glibc.CrtFile).@"enum".fields.len]bool = [1]bool{false} ** @typeInfo(glibc.CrtFile).@"enum".fields.len, |
| 292 | musl_crt_file: [@typeInfo(musl.CrtFile).@"enum".fields.len]bool = @splat(false), |
| 293 | glibc_crt_file: [@typeInfo(glibc.CrtFile).@"enum".fields.len]bool = @splat(false), |
| 294 | 294 | /// one of WASI libc static objects |
| 295 | | wasi_libc_crt_file: [@typeInfo(wasi_libc.CrtFile).@"enum".fields.len]bool = [1]bool{false} ** @typeInfo(wasi_libc.CrtFile).@"enum".fields.len, |
| 295 | wasi_libc_crt_file: [@typeInfo(wasi_libc.CrtFile).@"enum".fields.len]bool = @splat(false), |
| 296 | 296 | /// one of the mingw-w64 static objects |
| 297 | | mingw_crt_file: [@typeInfo(mingw.CrtFile).@"enum".fields.len]bool = [1]bool{false} ** @typeInfo(mingw.CrtFile).@"enum".fields.len, |
| 297 | mingw_crt_file: [@typeInfo(mingw.CrtFile).@"enum".fields.len]bool = @splat(false), |
| 298 | 298 | /// all of the glibc shared objects |
| 299 | 299 | glibc_shared_objects: bool = false, |
| 300 | 300 | /// libunwind.a, usually needed when linking libc |