Skip to content

Commit

Permalink
Fix handling of default target with libc.
Browse files Browse the repository at this point in the history
  • Loading branch information
lerno committed Sep 25, 2024
1 parent a893291 commit b47201f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build/builder.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,11 @@ static LinkLibc libc_from_arch_os(ArchOsTarget target)
case OPENBSD_X64:
case WINDOWS_AARCH64:
case WINDOWS_X64:
case ARCH_OS_TARGET_DEFAULT:
return LINK_LIBC_ON;
case WASM32:
case WASM64:
case MCU_X86:
case ARCH_OS_TARGET_DEFAULT:
case ELF_AARCH64:
case ELF_RISCV32:
case ELF_RISCV64:
Expand Down

0 comments on commit b47201f

Please sign in to comment.