From 64f4a9adbf33b0c60f97cf82010e3eb2ec288e06 Mon Sep 17 00:00:00 2001 From: Alex Richert Date: Tue, 7 Nov 2023 11:05:44 -0800 Subject: [PATCH] disable asan for fftpack.F --- src/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7cbb4120..27c53c69 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -26,6 +26,8 @@ if(BUILD_DEPRECATED) sptgpsd.f sptgptd.f sptgptsd.f sptgptvd.f sptrund.f sptrunl.f spvar.f) endif() +set_source_files_properties(fftpack.F PROPERTIES COMPILE_FLAGS -fno-sanitize=all) + # Build _4, _d, and/or _8 depending on options provided to CMake foreach(kind ${kinds})