From b83f9dce6f754431b5e1d5ad9aa19c80fd86edeb Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 13 Apr 2022 18:36:14 +0200 Subject: [PATCH] Comment -O3 for no GCC optimizations --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c0a3fe3f..e3518a74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ ENDIF(LEGACY_RENDERER MATCHES true) IF(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG) message(STATUS "Configuring Hyprland in Debug with CMake!") ELSE() - add_compile_options(-O3) + # add_compile_options(-O3) # may crash for some message(STATUS "Configuring Hyprland in Release with CMake!") ENDIF(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)