Skip to content

Commit

Permalink
OpenSSL 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
217heidai committed Oct 23, 2024
1 parent 1f847f6 commit 7778119
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_arm64-v8a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: arm64-v8a
OPENSSL_VERSION: 3.3.2
OPENSSL_VERSION: 3.4.0
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_armeabi-v7a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: armeabi-v7a
OPENSSL_VERSION: 3.3.2
OPENSSL_VERSION: 3.4.0
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: x86
OPENSSL_VERSION: 3.3.2
OPENSSL_VERSION: 3.4.0
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: x86_64
OPENSSL_VERSION: 3.3.2
OPENSSL_VERSION: 3.4.0
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Added `-fPIC` to fix linking error.
## ChangeLog
| Date | Content |
|-----------|----------------------------------------------------------------------|
| 2024.10.23 | OpenSSL 3.4.0 |
| 2024.09.04 | OpenSSL 3.3.2 |
| 2024.06.05 | OpenSSL 3.3.1 |
| 2024.04.10 | OpenSSL 3.3.0 |
Expand Down
4 changes: 2 additions & 2 deletions openssl_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

WORK_PATH=$(cd "$(dirname "$0")";pwd)
ANDROID_NDK_PATH=${WORK_PATH}/android-ndk-r20b
OPENSSL_SOURCES_PATH=${WORK_PATH}/openssl-3.3.2
OPENSSL_SOURCES_PATH=${WORK_PATH}/openssl-3.4.0
ANDROID_TARGET_API=$1
ANDROID_TARGET_ABI=$2
OUTPUT_PATH=${WORK_PATH}/openssl_3.3.2_${ANDROID_TARGET_ABI}
OUTPUT_PATH=${WORK_PATH}/openssl_3.4.0_${ANDROID_TARGET_ABI}
export CXXFLAGS="-fPIC"
export CPPFLAGS="-DANDROID -fPIC"

Expand Down

0 comments on commit 7778119

Please sign in to comment.