aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/aho-corasick
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2019-03-05 22:51:29 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2019-03-05 22:51:29 +0000
commit9bfff1d4775e19ce85272f61aecd64ce69b6a98a (patch)
tree53cede6206a0159c27fcdbc8798ba425ade19cfa /contrib/aho-corasick
parentaa98ae97e6cdcc04519f1647ebe9e7aab6ea5388 (diff)
downloadrspamd-9bfff1d4775e19ce85272f61aecd64ce69b6a98a.tar.gz
rspamd-9bfff1d4775e19ce85272f61aecd64ce69b6a98a.zip
[Minor] Use less aggressive optimisation level
Diffstat (limited to 'contrib/aho-corasick')
-rw-r--r--contrib/aho-corasick/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/aho-corasick/CMakeLists.txt b/contrib/aho-corasick/CMakeLists.txt
index 93c51a146..fb0e70bbc 100644
--- a/contrib/aho-corasick/CMakeLists.txt
+++ b/contrib/aho-corasick/CMakeLists.txt
@@ -3,7 +3,7 @@ SET(AHOCORASICSRC acism_create.c
IF(ENABLE_FULL_DEBUG MATCHES "OFF")
if ("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_C_COMPILER_ID}" STREQUAL "GNU")
- SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O3")
+ SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2")
endif ()
ENDIF()