mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-22 21:06:53 +08:00
This change will split common folder to four different folders: Linux, Unix, Windows and MacOS. Each of these folders includes scripts which are common for their operating system familes Task-number: QTQAINFRA-1451 Change-Id: Ic93b2183052335dee875d1452b21e38d268b6474 Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@qt.io>
12 lines
360 B
Bash
Executable File
12 lines
360 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
. $BASEDIR/../common/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"
|