From 7edfe02dffeaa904585189f8ba361b3e4f89dccc Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sat, 17 Apr 2021 11:02:47 +0200 Subject: [PATCH] Toolchain: Fix cmake definition for CMAKE_DL_LIBS We don't have libdl (yet) so update the CMAKE_DL_LIBRARY definition to match. --- Toolchain/CMake/Platform/SerenityOS.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Toolchain/CMake/Platform/SerenityOS.cmake b/Toolchain/CMake/Platform/SerenityOS.cmake index ddf5c4a1ad..23eeccf124 100644 --- a/Toolchain/CMake/Platform/SerenityOS.cmake +++ b/Toolchain/CMake/Platform/SerenityOS.cmake @@ -1,4 +1,4 @@ -set(CMAKE_DL_LIBS "dl") +set(CMAKE_DL_LIBS "") set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "-Wl,-rpath,") set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP ":") set(CMAKE_SHARED_LIBRARY_RPATH_ORIGIN_TOKEN "\$ORIGIN")