From 7d5d7eb9900dc207cf5733c2bc3b8adf1028d2e4 Mon Sep 17 00:00:00 2001 From: levlam Date: Mon, 27 Dec 2021 14:09:57 +0300 Subject: [PATCH] Fix tdweb building. --- CMake/TdSetUpCompiler.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMake/TdSetUpCompiler.cmake b/CMake/TdSetUpCompiler.cmake index 62013f52a..b31c7f049 100644 --- a/CMake/TdSetUpCompiler.cmake +++ b/CMake/TdSetUpCompiler.cmake @@ -60,6 +60,8 @@ function(td_set_up_compiler) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ffunction-sections -fdata-sections") if (CMAKE_SYSTEM_NAME STREQUAL "SunOS") set(TD_LINKER_FLAGS "-Wl,-z,ignore") + elseif (EMSCRIPTEN) + set(TD_LINKER_FLAGS "-Wl,--gc-sections") else() set(TD_LINKER_FLAGS "-Wl,--gc-sections -Wl,--exclude-libs,ALL") endif()