ndk-build: Link and zipalign all libraries to 16KiB
#76
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.
https://developer.android.com/guide/practices/page-sizes
Since Android 15 devices are allowed to run with 16KiB pages which requires all ELF sections to be 16KiB aligned. In addition, when shared objects are placed uncompressed in the
.apkAndroid is able tommap()them directly out of the.zipfile as long as they are also 16KiB-aligned (otherwise they are decompressed to disk first). The latter step unfortunately requireszipalignfrombuild-tools 35.0.0as the-Pflag (to specifically align uncompressed shared objects) did not exist in older releases yet.There is no step that validates that user-libraries from e.g.
package.metadata.android.runtime_libshave 16KiB-aligned pages internally, but the Rust library from the crate that we compile and link viacargowill be configured to link using 16KiB alignment on NDK < r28; it has become the default since r28.