From 73cdc27ea54e6de8ead71ccf33f8e47e68290f5c Mon Sep 17 00:00:00 2001 From: Vincent Rabaud Date: Thu, 1 Feb 2024 15:13:48 +0100 Subject: [PATCH] Remove forced address sanitizer flags. (#1986) --- ext/fuzztest.cmd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/fuzztest.cmd b/ext/fuzztest.cmd index bb0e05c106..eb545d0baf 100755 --- a/ext/fuzztest.cmd +++ b/ext/fuzztest.cmd @@ -12,6 +12,8 @@ cd fuzztest : # There is no tagged release as of 2024/01/26. Pick the earliest commit that fixes the : # undefined reference to LLVMFuzzerRunDriver when building ubsan tests. git checkout a53a2083e7df08749ea26b5960c05a9bffa186c2 +sed -i 's/-fsanitize=address//g' ./cmake/FuzzTestFlagSetup.cmake +sed -i 's/-DADDRESS_SANITIZER//g' ./cmake/FuzzTestFlagSetup.cmake : # fuzztest is built by the main CMake project through add_subdirectory as recommended at: : # https://github.com/google/fuzztest/blob/main/doc/quickstart-cmake.md