From 7fd9d94a9b6bf5904a042ea75eddeb40c7777cc2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 25 May 2020 23:07:13 +0200 Subject: [PATCH] Install libpcre3-dev for Linux builds This package contains the required PCRE library development files and may be already installed, as is apparently the case for amd64 systems, but also may not be, as when using s390x architecture. --- Tools/travis-linux-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/travis-linux-install.sh b/Tools/travis-linux-install.sh index c8347d27a..d5157086f 100755 --- a/Tools/travis-linux-install.sh +++ b/Tools/travis-linux-install.sh @@ -13,7 +13,7 @@ if [[ -n "$GCC" ]]; then travis_retry sudo apt-get install -qq g++-$GCC fi -travis_retry sudo apt-get -qq install libboost-dev +travis_retry sudo apt-get -qq install libboost-dev libpcre3-dev WITHLANG=$SWIGLANG