From 2a740622482cf59ac0c00f60231df5b6988af4b6 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Thu, 15 Oct 2020 15:32:59 -0400 Subject: Azure pipelines: fix test-sanitizers job --- azure-pipelines/test-sanitizers | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'azure-pipelines') diff --git a/azure-pipelines/test-sanitizers b/azure-pipelines/test-sanitizers index 465b9a94..476f198a 100755 --- a/azure-pipelines/test-sanitizers +++ b/azure-pipelines/test-sanitizers @@ -2,11 +2,12 @@ set -e sudo apt-get update sudo apt-get -y install \ - autoconf build-essential zlib1g-dev libjpeg-dev libgnutls28-dev + autoconf build-essential zlib1g-dev libjpeg-dev libgnutls28-dev libssl-dev ./configure \ CFLAGS="-fsanitize=address -fsanitize=undefined -g" \ CXXFLAGS="-fsanitize=address -fsanitize=undefined -g" \ LDFLAGS="-fsanitize=address -fsanitize=undefined" \ + CC=clang CXX="clang++ --std=c++11" \ --enable-crypto-native --enable-crypto-openssl --enable-crypto-gnutls \ --enable-werror --disable-shared --enable-show-failed-test-output make -j$(nproc) -k -- cgit v1.2.3-54-g00ecf