Skip to content

Commit

Permalink
Bump used Android NDK to r27
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed Jul 19, 2024
1 parent 866be1e commit 5d3bbed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/3-build-cross/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
default: false
android_ndk_version:
required: false
default: r26d
default: r27
android_api_level:
required: false
default: 29
Expand Down Expand Up @@ -104,7 +104,7 @@ runs:
triple="$arch-linux-androideabi$apiLevel"
cmakeFlags+=' -DANDROID_ABI=armeabi-v7a'
elif [[ "$arch" == aarch64 ]]; then
# FIXME: as of NDK rc26d, libc.a has __tls_get_addr, but libc.so only since API level 30 (Android v11)
# FIXME: as of NDK r27, libc.a has __tls_get_addr, but libc.so only since API level 30 (Android v11)
apiLevel=30
triple="$arch-linux-android$apiLevel"
cmakeFlags+=' -DANDROID_ABI=arm64-v8a'
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# LDC master

#### Big news
- Android: NDK for prebuilt package bumped from r26d to r27. (#4711)

#### Platform support

Expand Down

0 comments on commit 5d3bbed

Please sign in to comment.