From e3c39170ad3adab87d121375d0341fad1c3f6bc2 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Mon, 10 Jun 2024 19:03:31 -0300 Subject: [PATCH] Re-enable harfbuzz duplicate symbol workaround for now as my gcc 13 setup triggers it --- src/printer/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/printer/CMakeLists.txt b/src/printer/CMakeLists.txt index 9fc555965..274226a5a 100644 --- a/src/printer/CMakeLists.txt +++ b/src/printer/CMakeLists.txt @@ -28,7 +28,7 @@ target_link_libraries(86Box PkgConfig::FREETYPE) if(STATIC_BUILD) # if(QT) # Qt provides its own version of harfbuzz which leads to duplicated symbols. - # target_link_options(86Box PRIVATE "LINKER:--allow-multiple-definition") + target_link_options(86Box PRIVATE "LINKER:--allow-multiple-definition") # endif() target_link_libraries(86Box -static ${FREETYPE_STATIC_LIBRARIES}) endif()