From e90ab4526245f4f16eb5469a98a0308778bb4e2c Mon Sep 17 00:00:00 2001 From: Stephan Hageboeck Date: Mon, 2 Mar 2026 09:16:25 +0100 Subject: [PATCH] Test removing -O0 for zebra code. --- misc/minicern/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/minicern/CMakeLists.txt b/misc/minicern/CMakeLists.txt index 66542f68ce3cb..93a737c443e85 100644 --- a/misc/minicern/CMakeLists.txt +++ b/misc/minicern/CMakeLists.txt @@ -15,6 +15,6 @@ target_link_libraries(minicern ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}) # Disable optimization since it some cases was causing crashes. # Disable warnings, since what has worked for 40 years... # (see https://sft.its.cern.ch/jira/browse/ROOT-9179 for the warnings) -set_target_properties(minicern PROPERTIES COMPILE_FLAGS "-O0 -w") +#set_target_properties(minicern PROPERTIES COMPILE_FLAGS "-O0 -w") # set_target_properties(minicern PROPERTIES COMPILE_FLAGS "-fsanitize=undefined -fsanitize=address") # target_link_options(minicern BEFORE PUBLIC -fsanitize=undefined PUBLIC -fsanitize=address)