We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7208af9 commit 97affa7Copy full SHA for 97affa7
.ci/docker/common/install_openssl-ppc64le.sh
@@ -0,0 +1,23 @@
1
+#!/bin/bash
2
+set -e
3
+
4
+# Define OpenSSL version
5
+OPENSSL_VERSION="1.1.1k"
6
7
+# Download and extract OpenSSL
8
+wget https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz
9
+tar -xzf openssl-${OPENSSL_VERSION}.tar.gz
10
+cd openssl-${OPENSSL_VERSION}
11
12
+# Configure OpenSSL (configure with static libraries)
13
+./config no-shared --prefix=/opt/openssl
14
15
+# Build and install OpenSSL
16
+make -j$(nproc)
17
+make install
18
19
+# Clean up the build directory
20
+cd ..
21
+rm -rf openssl-${OPENSSL_VERSION} openssl-${OPENSSL_VERSION}.tar.gz
22
23
+echo "OpenSSL ${OPENSSL_VERSION} installed successfully."
0 commit comments