diff options
| author | practicalswift <[email protected]> | 2018-11-06 16:17:23 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-11-06 17:45:54 +0100 |
| commit | 4773fa820784592a9d4ffb43d09f0a49a7a4ad9d (patch) | |
| tree | 8f76e831f85e1d2d1189d58567e9069e86d0e3da | |
| parent | Add UBSan suppressions needed to pass test suite (diff) | |
| download | discoin-4773fa820784592a9d4ffb43d09f0a49a7a4ad9d.tar.xz discoin-4773fa820784592a9d4ffb43d09f0a49a7a4ad9d.zip | |
Add llvm-symbolizer directory to PATH. Needed to get symbolized stack traces from the sanitizers.
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rwxr-xr-x | .travis/test_03_before_install.sh | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index e221537d5..1bf560fc4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -107,7 +107,7 @@ jobs: - stage: test env: >- HOST=x86_64-unknown-linux-gnu - PACKAGES="clang python3-zmq qtbase5-dev qttools5-dev-tools libssl1.0-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libdb5.3++-dev libminiupnpc-dev libzmq3-dev libprotobuf-dev protobuf-compiler libqrencode-dev" + PACKAGES="clang llvm python3-zmq qtbase5-dev qttools5-dev-tools libssl1.0-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev libdb5.3++-dev libminiupnpc-dev libzmq3-dev libprotobuf-dev protobuf-compiler libqrencode-dev" NO_DEPENDS=1 GOAL="install" BITCOIN_CONFIG="--enable-zmq --with-incompatible-bdb --enable-glibc-back-compat --enable-reduce-exports --with-gui=qt5 CPPFLAGS=-DDEBUG_LOCKORDER --with-sanitizers=integer,undefined CC=clang CXX=clang++" diff --git a/.travis/test_03_before_install.sh b/.travis/test_03_before_install.sh index d091a67ca..3c9fcf3f9 100755 --- a/.travis/test_03_before_install.sh +++ b/.travis/test_03_before_install.sh @@ -7,6 +7,8 @@ export LC_ALL=C.UTF-8 PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g") +# Add llvm-symbolizer directory to PATH. Needed to get symbolized stack traces from the sanitizers. +PATH=$PATH:/usr/lib/llvm-6.0/bin/ export PATH BEGIN_FOLD () { |