mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-21 04:16:39 +08:00
I did not see this in the previous direct push. Change-Id: I620dcc7f1c562e5bd9e09d479a4a5b8598a970fb
10 lines
358 B
Bash
Executable File
10 lines
358 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
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"
|