mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
Common shared folder includes scripts of files which are common for all operating system families. Changes under shared folder will trigger provisioning for all platforms Change-Id: I0789f87b76876d5f92673fe2f0e72d770e5f5ea4 Task-number: QTQAINFRA-1451 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
11 lines
366 B
Bash
Executable File
11 lines
366 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
. $BASEDIR/../common/shared/sw_versions.txt
|
|
VERSION=$libclang_version
|
|
URL="https://download.qt.io/development_releases/prebuilt/libclang/libclang-release_${VERSION//\./}-linux-Rhel7.2-gcc5.3-x86_64.7z"
|
|
SHA1="bbdbbc0296f42310077539b7247d285386119ef4"
|
|
|
|
$BASEDIR/../common/unix/libclang.sh "$URL" "$SHA1" "$VERSION"
|