From 1952fb2399b0a117d50ee70eef93515b6a938ef9 Mon Sep 17 00:00:00 2001 From: Johan Engelen Date: Fri, 12 Jul 2024 12:29:34 +0200 Subject: [PATCH] musl no longer needs linking with libunwind --- runtime/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index b392acb8bb..1af2de9315 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -133,9 +133,6 @@ if("${C_SYSTEM_LIBS}" STREQUAL "AUTO") set(C_SYSTEM_LIBS m c) elseif("${TARGET_SYSTEM}" MATCHES "Linux") set(C_SYSTEM_LIBS m pthread rt dl) - if("${TARGET_SYSTEM}" MATCHES "musl") - list(APPEND C_SYSTEM_LIBS "unwind") - endif() elseif("${TARGET_SYSTEM}" MATCHES "FreeBSD") set(C_SYSTEM_LIBS m pthread execinfo z) else()