aboutsummaryrefslogtreecommitdiff
path: root/ci/test/00_setup_env_native_fuzz_with_valgrind.sh
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2024-01-08 14:37:17 +0000
committerfanquake <fanquake@gmail.com>2024-01-16 09:51:19 +0000
commit1dc2c9b385f8345c588449848149b8e470653afc (patch)
treed393e36c8a095b7950dcf25acfef2fc72aad31c6 /ci/test/00_setup_env_native_fuzz_with_valgrind.sh
parent6cc2a38c1388b696e9c28a08c6bd9c93da4fa6b8 (diff)
downloadbitcoin-1dc2c9b385f8345c588449848149b8e470653afc.tar.xz
ci: cleanup C*FLAG usage in Valgrind jobs
This was being used to avoid a missing -O2. After the previous commits, this is no-longer an issue.
Diffstat (limited to 'ci/test/00_setup_env_native_fuzz_with_valgrind.sh')
-rwxr-xr-xci/test/00_setup_env_native_fuzz_with_valgrind.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh
index 1f60c46803..4f80d7ed42 100755
--- a/ci/test/00_setup_env_native_fuzz_with_valgrind.sh
+++ b/ci/test/00_setup_env_native_fuzz_with_valgrind.sh
@@ -16,5 +16,5 @@ export RUN_FUZZ_TESTS=true
export FUZZ_TESTS_CONFIG="--valgrind"
export GOAL="install"
# Temporarily pin dwarf 4, until using Valgrind 3.20 or later
-export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer CC='clang -gdwarf-4' CXX='clang++ -gdwarf-4'"
+export BITCOIN_CONFIG="--enable-fuzz --with-sanitizers=fuzzer CC=clang CXX=clang++ CFLAGS=-gdwarf-4 CXXFLAGS=-gdwarf-4"
export CCACHE_MAXSIZE=200M