diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index 3082f38d83..152981f46f 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -54,6 +54,9 @@ endif() option(BUILD_SHARED_LIBS "Build shared libraries instead of static libraries" ON) find_package(Threads REQUIRED) +# FIXME: This global link libraries is required to workaround linker issues (on some systems) +# from the Ladybird import. See https://github.com/SerenityOS/serenity/issues/16847 +link_libraries(Threads::Threads) if (ENABLE_LAGOM_CCACHE) include(setup_ccache)