-
-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2223 from mavlink/pr-absl-fix
Fix illegal instruction on RPi 4
- Loading branch information
Showing
3 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
diff --git a/absl/random/internal/platform.h b/absl/random/internal/platform.h | ||
index d779f481..ea30118f 100644 | ||
--- a/absl/random/internal/platform.h | ||
+++ b/absl/random/internal/platform.h | ||
@@ -116,10 +116,10 @@ | ||
|
||
// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053c/IHI0053C_acle_2_0.pdf | ||
// Rely on NEON+CRYPTO extensions for ARM. | ||
-#if defined(__ARM_NEON) && defined(__ARM_FEATURE_CRYPTO) | ||
-#undef ABSL_HAVE_ACCELERATED_AES | ||
-#define ABSL_HAVE_ACCELERATED_AES 1 | ||
-#endif | ||
+//#if defined(__ARM_NEON) && defined(__ARM_FEATURE_CRYPTO) | ||
+//#undef ABSL_HAVE_ACCELERATED_AES | ||
+//#define ABSL_HAVE_ACCELERATED_AES 1 | ||
+//#endif | ||
|
||
#endif | ||
|
This file contains 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