diff options
author | fanquake <fanquake@gmail.com> | 2022-07-20 09:11:15 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-07-21 10:16:46 +0100 |
commit | cc5b39e44ec2133df32e059bbe124e33c0a23401 (patch) | |
tree | 5e8ad074b27f0875b0965349c0878971fb05cf5e /ci/test/00_setup_env_native_valgrind.sh | |
parent | d1e42659bbdd8da170542d8c638242cd94f71a7d (diff) |
ci: better pin to dwarf4 in valgrind job
Use `-gdwarf` and also set CFLAGS. I was seeing Valgrind issues otherwise.
Diffstat (limited to 'ci/test/00_setup_env_native_valgrind.sh')
-rwxr-xr-x | ci/test/00_setup_env_native_valgrind.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_native_valgrind.sh b/ci/test/00_setup_env_native_valgrind.sh index 7b714dff5c..d8c08fca39 100755 --- a/ci/test/00_setup_env_native_valgrind.sh +++ b/ci/test/00_setup_env_native_valgrind.sh @@ -14,4 +14,4 @@ export NO_DEPENDS=1 export TEST_RUNNER_EXTRA="--nosandbox --exclude feature_init,rpc_bind,feature_bind_extra" # Excluded for now, see https://github.com/bitcoin/bitcoin/issues/17765#issuecomment-602068547 export GOAL="install" # Temporarily pin dwarf 4, until valgrind can understand clang's dwarf 5 -export BITCOIN_CONFIG="--enable-zmq --with-incompatible-bdb --with-gui=no CC=clang CXX=clang++ CXXFLAGS='-fdebug-default-version=4'" # TODO enable GUI +export BITCOIN_CONFIG="--enable-zmq --with-incompatible-bdb --with-gui=no CC=clang CXX=clang++ CFLAGS='-gdwarf-4' CXXFLAGS='-gdwarf-4'" # TODO enable GUI |