| author | |
| committer | |
| log | a418c595464470a74f99f019cf735b6ee778cd3f |
| tree | 2316f2fd74496575c2d230749379e5ad84c14582 |
| parent | a0cd4c0f327a484879cf5d538bdbfd3392759402 |
This happened from cherry-picking bug fixes from master branch.1 files changed, 1 insertions(+), 1 deletions(-)
src/link/MachO.zig+1-1| ... | ... | @@ -382,7 +382,7 @@ pub fn createEmpty(gpa: Allocator, options: link.Options) !*MachO { |
| 382 | 382 | // ABI such as aarch64-ios-simulator, etc. |
| 383 | 383 | const requires_adhoc_codesig = cpu_arch == .aarch64 and (os_tag == .macos or abi == .simulator); |
| 384 | 384 | const use_stage1 = build_options.is_stage1 and options.use_stage1; |
| 385 | const needs_prealloc = !(use_stage1 or options.cache_mode == .whole); | |
| 385 | const needs_prealloc = !use_stage1; | |
| 386 | 386 | |
| 387 | 387 | self.* = .{ |
| 388 | 388 | .base = .{ |