From b287c37c651d54669032e3e4685b4423409e4d00 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Sun, 21 Jun 2020 19:09:20 +0200 Subject: [PATCH] Do not use -Wl,--as-needed with emscripten. On some platform, fmt is using the following link flag: ```cmake target_link_libraries(fmt -Wl,--as-needed) ``` This is not supported by wasm-ld as of today. This patch stop using it when compiling using emscripten. Bug: https://github.com/fmtlib/fmt/issues/1736 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b89367f4..d8dd862c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -223,7 +223,7 @@ if (CMAKE_BUILD_TYPE STREQUAL "Debug") endif () if (BUILD_SHARED_LIBS) - if (UNIX AND NOT APPLE AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "SunOS") + if (UNIX AND NOT APPLE AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "SunOS" AND NOT EMSCRIPTEN) # Fix rpmlint warning: # unused-direct-shlib-dependency /usr/lib/libformat.so.1.1.0 /lib/libm.so.6. target_link_libraries(fmt -Wl,--as-needed)