mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
fix typo in target_can_exec logic
This commit is contained in:
parent
cd58b40011
commit
08708ea4dc
1 changed files with 1 additions and 1 deletions
|
|
@ -656,7 +656,7 @@ bool target_can_exec(const ZigTarget *host_target, const ZigTarget *guest_target
|
|||
return true;
|
||||
}
|
||||
|
||||
if (guest_target->os == ZigLLVM_Win32 && guest_target->os == ZigLLVM_Win32 &&
|
||||
if (guest_target->os == ZigLLVM_Win32 && host_target->os == ZigLLVM_Win32 &&
|
||||
host_target->arch.arch == ZigLLVM_x86_64 && guest_target->arch.arch == ZigLLVM_x86)
|
||||
{
|
||||
// 64-bit windows can run 32-bit programs
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue