From f7031d7f87c0e159fa111c05d87d1d2d2892c734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Fr=C3=B6jdh?= Date: Wed, 12 Feb 2025 10:52:55 +0100 Subject: [PATCH] Update CMakeLists.txt Removed flto=auto which caused issues with gcc 8.5 --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6cab73a..c068360 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -244,7 +244,6 @@ target_compile_options( -Wvla -Wdouble-promotion -Werror=return-type #important can cause segfault in optimzed builds - -flto=auto ) endif() #GCC/Clang specific @@ -442,4 +441,4 @@ if(AARE_MASTER_PROJECT) set(CMAKE_INSTALL_DIR "share/cmake/${PROJECT_NAME}") set(PROJECT_LIBRARIES aare-core aare-compiler-flags ) include(cmake/package_config.cmake) -endif() \ No newline at end of file +endif()