mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
link.MachO: fix merge conflict artifact
This happened from cherry-picking bug fixes from master branch.
This commit is contained in:
parent
a0cd4c0f32
commit
a418c59546
1 changed files with 1 additions and 1 deletions
|
|
@ -382,7 +382,7 @@ pub fn createEmpty(gpa: Allocator, options: link.Options) !*MachO {
|
|||
// ABI such as aarch64-ios-simulator, etc.
|
||||
const requires_adhoc_codesig = cpu_arch == .aarch64 and (os_tag == .macos or abi == .simulator);
|
||||
const use_stage1 = build_options.is_stage1 and options.use_stage1;
|
||||
const needs_prealloc = !(use_stage1 or options.cache_mode == .whole);
|
||||
const needs_prealloc = !use_stage1;
|
||||
|
||||
self.* = .{
|
||||
.base = .{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue