| author | |
| committer | |
| log | 88e066bb7b69d065758fa05442de6e317625df68 |
| tree | cb8cc13782aa29f2dc7579acf1fbb2521a29e457 |
| parent | 940b9bccc2cba5df617112415fa745fde7002891 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Build/Configuration.zig+1-1| ... | ... | @@ -2696,7 +2696,7 @@ pub const TargetQuery = struct { |
| 2696 | 2696 | null, |
| 2697 | 2697 | .android_api_level = tq.android_api_level.value, |
| 2698 | 2698 | .abi = tq.flags.abi.unwrap(), |
| 2699 | .dynamic_linker = .init(if (tq.dynamic_linker.value) |s| s.slice(c) else null), | |
| 2699 | .dynamic_linker = if (tq.dynamic_linker.value) |s| .init(s.slice(c)) else null, | |
| 2700 | 2700 | .ofmt = tq.flags.object_format.unwrap(), |
| 2701 | 2701 | }; |
| 2702 | 2702 | } |