mirror of https://github.com/qt/qt5.git
Provisioning: Install Valgrind on Ubuntu 22.04 and openSUSE 15.4
Valgrind is needed for testlib benchlibcallgrind selftest. Valgrind is installed on Red Hat by default but needs to be separately installed on Ubuntu and openSUSE. Change-Id: I4cdfca512fe3efe9338a75cadc20454ff989fcae Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Heikki Halmet <heikki.halmet@qt.io>
This commit is contained in:
parent
195a438395
commit
982f0a4657
|
@ -211,6 +211,8 @@ installPackages+=(libpoppler-cpp-dev)
|
|||
# Needed for QtCore
|
||||
installPackages+=(libdouble-conversion-dev)
|
||||
installPackages+=(libpcre2-dev)
|
||||
# Needed for testlib selftests
|
||||
installPackages+=(valgrind)
|
||||
# Needed for qtgampepad
|
||||
installPackages+=(libsdl2-2.0)
|
||||
installPackages+=(libsdl2-dev)
|
||||
|
|
|
@ -96,6 +96,9 @@ sudo zypper -nq install autoconf libcurl-devel libexpat-devel
|
|||
# OpenSSL 3
|
||||
sudo zypper -nq install openssl-3
|
||||
|
||||
# Valgrind (Needed for testlib selftests)
|
||||
sudo zypper -nq install valgrind-devel
|
||||
|
||||
gccVersion="$(gcc --version |grep gcc |cut -b 17-23)"
|
||||
echo "GCC = $gccVersion" >> versions.txt
|
||||
|
||||
|
|
Loading…
Reference in New Issue