From 6da04e04db14fa15412099e73bf73a7e65d3e797 Mon Sep 17 00:00:00 2001 From: nick black Date: Thu, 21 Oct 2021 05:11:18 -0400 Subject: [PATCH] [cmake] drop -fcx-limited-ops --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d09b258f9..a3d4e6557 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,8 +119,7 @@ endif() add_compile_options(-Wall -Wextra -W -Wshadow) # -ffast-math dies on NaNs we draw from libav (by -ffinite-math-only) add_compile_options(-fno-signed-zeros -fno-trapping-math -fassociative-math) -add_compile_options(-fno-math-errno -freciprocal-math) -add_compile_options(-funsafe-math-optimizations -fcx-limited-range) +add_compile_options(-fno-math-errno -freciprocal-math -funsafe-math-optimizations) add_compile_options(-fexceptions -fstrict-aliasing) if(${USE_ASAN})