From b041acefe6a6b37d0b56d2bbdf8296d539b28b65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simo=20F=C3=A4lt?= Date: Wed, 20 Sep 2023 13:13:08 +0300 Subject: 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 --- .../90-install-static-openssl.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 coin/provisioning/qtci-linux-RHEL-8.4-x86_64/90-install-static-openssl.sh (limited to 'coin/provisioning') 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" -- cgit v1.2.3