diff options
author | Jack Lloyd <[email protected]> | 2020-02-18 06:43:27 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-02-18 06:43:27 -0500 |
commit | 7e95eb153b2ba16764b0307b7aa429e53f5722ec (patch) | |
tree | 668a45308fd3cec879645e8aaf9307fe6606ed80 /src/scripts/ci/setup_travis.sh | |
parent | 39e9fffd6a44d7e868ac39c56f28d21cefcfb8e8 (diff) | |
parent | 88967ef754260947864d618fdbd86a873f6050d9 (diff) |
Merge GH #2277 Avoid double free in PKCS8::load_key under Clang 8
Diffstat (limited to 'src/scripts/ci/setup_travis.sh')
-rwxr-xr-x | src/scripts/ci/setup_travis.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/scripts/ci/setup_travis.sh b/src/scripts/ci/setup_travis.sh index 52b9a759a..a59cf0859 100755 --- a/src/scripts/ci/setup_travis.sh +++ b/src/scripts/ci/setup_travis.sh @@ -24,6 +24,10 @@ if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get -qq update sudo apt-get install g++-4.8 + elif [ "$TARGET" = "clang8" ]; then + sudo apt-get -qq update + sudo apt-get install clang-8 + elif [ "$TARGET" = "cross-i386" ]; then sudo apt-get -qq update sudo apt-get install g++-multilib linux-libc-dev libc6-dev-i386 |