We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 328a1b4 commit 5345b57Copy full SHA for 5345b57
1 file changed
IDE/Android/build.sh
@@ -32,9 +32,10 @@ fi
32
33
# Compile OpenSSL
34
if [ ! -e ${WORKSPACE}/openssl-install ]; then
35
+ OPENSSL_BRANCH=${OPENSSL_BRANCH:-"openssl-3.2.0"}
36
echo "=== Installing OpenSSL ==="
37
export OPENSSL_ALL_CIPHERS="-cipher ALL -ciphersuites TLS_AES_256_GCM_SHA384:TLS_AES_128_GCM_SHA256:TLS_AES_128_CCM_SHA256:TLS_AES_128_CCM_8_SHA256"
- git clone https://github.com/openssl/openssl.git ${WORKSPACE}/openssl-source && \
38
+ git clone https://github.com/openssl/openssl.git --branch=${OPENSSL_BRANCH} ${WORKSPACE}/openssl-source && \
39
cd ${WORKSPACE}/openssl-source && \
40
./Configure android-x86_64 --prefix=${WORKSPACE}/openssl-install && \
41
sed -i 's/-ldl//g' Makefile && \
0 commit comments