Fix 16 KB alignment of Rust wheels - #1456
Merged
Merged
Conversation
Unlike the C/C++ compilers, rustc invokes the linker itself and ignores LDFLAGS, so the 16 KB max-page-size alignment (set in android-env.sh) has to be forwarded explicitly. Without this the Rust .so is linked with the default 4 KB alignment and fails to load on 16 KB page-size devices.
This was referenced Jun 13, 2026
Member
|
Thanks, I've now released 16 KB-compatible builds of cryptography 42.0.8 for Python 3.13. This is the same version as before but with a different build number, so to make your app pick it up, you'll need to either force a full rebuild, or make any change in the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Unlike the C/C++ compilers, rustc invokes the linker itself and ignores LDFLAGS, so the 16 KB max-page-size alignment (set in android-env.sh) has to be forwarded explicitly. Without this the Rust .so is linked with the default 4 KB alignment and fails to load on 16 KB page-size devices.
Verified on the Android Studio emulator with the https://github.com/emanuele-f/PCAPdroid-mitm/releases/download/v2.0/PCAPdroid-mitm_v2.0_x86_64.apk APK, using the Android 16 KB x86_64 API 37 image.
Related commits: