Toolchain: Fix cmake definition for CMAKE_DL_LIBS

We don't have libdl (yet) so update the CMAKE_DL_LIBRARY
definition to match.
This commit is contained in:
Gunnar Beutner 2021-04-17 11:02:47 +02:00 committed by Andreas Kling
parent 90f8bc7297
commit 7edfe02dff

View file

@ -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")