aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2023-09-20 13:13:08 +0300
committerSimo Fält <simo.falt@qt.io>2023-09-28 07:12:04 +0000
commitb041acefe6a6b37d0b56d2bbdf8296d539b28b65 (patch)
treeb06be689187c1909b65bac8a14cdc6bb50ff7011 /coin/provisioning
parent703af6a36ffa09fec3ccddeec565ac56f7770bbf (diff)
IFW: Enable static build on Linux
It seems the RHEL can't detect static openssl libs among the shared libs, so we need to install additional version of openssl, where we have only archives. Task-number: QTIFW-3158 Change-Id: I0c65da6f3c3f9ed2e9c627390622b81dccd36bf6 Reviewed-by: Katja Marttila <katja.marttila@qt.io>
Diffstat (limited to 'coin/provisioning')
-rwxr-xr-xcoin/provisioning/qtci-linux-RHEL-8.4-x86_64/90-install-static-openssl.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/coin/provisioning/qtci-linux-RHEL-8.4-x86_64/90-install-static-openssl.sh b/coin/provisioning/qtci-linux-RHEL-8.4-x86_64/90-install-static-openssl.sh
new file mode 100755
index 00000000..4f0442d7
--- /dev/null
+++ b/coin/provisioning/qtci-linux-RHEL-8.4-x86_64/90-install-static-openssl.sh
@@ -0,0 +1,22 @@
+#!/usr/bin/env bash
+# Copyright (C) 2021 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+set -ex
+
+# This is required to allow static linking of ifw
+os="$1"
+SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
+# shellcheck source=../common/unix/DownloadURL.sh
+source "${BASH_SOURCE%/*}/../common/unix/DownloadURL.sh"
+# shellcheck source=../common/unix/SetEnvVar.sh
+source "${BASH_SOURCE%/*}/../common/unix/SetEnvVar.sh"
+
+targetFile="/tmp/openssl-$version.tar.gz"
+downloadFile="http://ci-files01-hki.intra.qt.io/input/openssl/openssl-3.0.7-static-only.tar.gz"
+sha="82376a9e2440a47a83eb861cbf9363b28630a120"
+DownloadURL "$downloadFile" "$downloadFile" "$sha" "$targetFile"
+
+cd $HOME
+tar -xzf "$targetFile"
+SetEnvVar "STATIC_OPENSSL_HOME" "$HOME/static-openssl"