From 4fa0d157bc43e5cef2db800099fc9bb3b7e10b76 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Fri, 14 Oct 2022 11:18:24 -0600 Subject: SerenityOS: Unset CMAKE_DL_LIBS because LibDl no longer exists Serenity's LibDl was merged into LibC to simplify the build and port infrastructure [1]. Set `CMAKE_DL_LIBS` to the empty string to match what other platforms do. Update the platform module added by commit 45ca894164 (SerenityOS: Add Platform module, 2022-01-02, v3.25.0-rc1~635^2). [1] https://github.com/SerenityOS/serenity/pull/14854 Issue: #23589 --- Modules/Platform/SerenityOS.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Platform/SerenityOS.cmake b/Modules/Platform/SerenityOS.cmake index 541620c..dc4f369 100644 --- a/Modules/Platform/SerenityOS.cmake +++ b/Modules/Platform/SerenityOS.cmake @@ -1,7 +1,7 @@ set(SERENITYOS 1) -set(CMAKE_DL_LIBS "-ldl") +set(CMAKE_DL_LIBS "") set(CMAKE_SHARED_LIBRARY_RPATH_ORIGIN_TOKEN "\$ORIGIN") set(CMAKE_SHARED_LIBRARY_SUFFIX ".so") -- cgit v0.12