From 1eada8e08cd45c02f180af550cc43c097b9934ef Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Thu, 1 Jun 2023 21:58:23 +0100 Subject: [PATCH] scipy: enable fuzz introspector (#10437) --- projects/scipy/build.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/projects/scipy/build.sh b/projects/scipy/build.sh index 2819b5771..68e7624b7 100644 --- a/projects/scipy/build.sh +++ b/projects/scipy/build.sh @@ -15,6 +15,12 @@ # ############################################################################### +# Avoid native LTO compilation for the dependencies under Fuzz Introspector +if [ "$SANITIZER" == "introspector" ]; then + export CFLAGS="" + export CXXFLAGS="" +fi + git submodule update --init python3 -m pip install .