Open
Conversation
- Add pi5 CPU enum with cortex-a76+nocrypto compiler flags - Add pi5_64 target for 64-bit ARM engine builds - Update README with Pi 5 build configuration and docs
The Cortex-A76 in Raspberry Pi 5 supports crypto extensions, so there's no need to disable them like on Pi3/Pi4.
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.
Summary
cortex-a76+nocryptocompiler flagsDetails
The Raspberry Pi 5 uses a BCM2712 SoC with Cortex-A76 cores (ARMv8.2-A architecture). This PR adds support for building CPU-tuned engine binaries optimized for the Pi 5.
Compiler flags
GCC tuning differences
cortexa72tuning modelneoversen1tuning model with additional features (F16, DOTPROD, RCPC)New build jobs
build engine (for: pi5-64, flavor: profile)build engine (for: pi5-64, flavor: release)Note: Using
+nocryptofor consistency with Pi 3/Pi 4 builds, though the A76 in Pi 5 does support crypto extensions.