
* backporting fix for building gcc >= 8.1.0 and gcc <= 9.2.0 with binutils 2.31 * removed trailing whitespace
38 lines
1.6 KiB
Diff
38 lines
1.6 KiB
Diff
From ce9568e9e9cf6094be30e748821421e703754ffc Mon Sep 17 00:00:00 2001
|
|
From: Jakub Jelinek <jakub@redhat.com>
|
|
Date: Fri, 8 Nov 2019 19:53:18 +0100
|
|
Subject: [PATCH] backport: re PR sanitizer/92154 (new glibc breaks arm
|
|
bootstrap due to libsanitizer)
|
|
|
|
Backported from mainline
|
|
2019-10-22 Tamar Christina <tamar.christina@arm.com>
|
|
|
|
PR sanitizer/92154
|
|
* sanitizer_common/sanitizer_platform_limits_posix.cc:
|
|
Cherry-pick compiler-rt revision r375220.
|
|
|
|
From-SVN: r277981
|
|
---
|
|
libsanitizer/ChangeLog | 9 +++++++++
|
|
.../sanitizer_common/sanitizer_platform_limits_posix.cc | 6 +++++-
|
|
2 files changed, 14 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc b/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc
|
|
index 6cd4a5bac8b0..06a605ff4670 100644
|
|
--- a/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc
|
|
+++ b/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc
|
|
@@ -1156,8 +1156,12 @@ CHECK_SIZE_AND_OFFSET(ipc_perm, uid);
|
|
CHECK_SIZE_AND_OFFSET(ipc_perm, gid);
|
|
CHECK_SIZE_AND_OFFSET(ipc_perm, cuid);
|
|
CHECK_SIZE_AND_OFFSET(ipc_perm, cgid);
|
|
-#if !defined(__aarch64__) || !SANITIZER_LINUX || __GLIBC_PREREQ (2, 21)
|
|
+#if (!defined(__aarch64__) || !SANITIZER_LINUX || __GLIBC_PREREQ (2, 21)) && \
|
|
+ !defined(__arm__)
|
|
/* On aarch64 glibc 2.20 and earlier provided incorrect mode field. */
|
|
+/* On Arm glibc 2.31 and later provide a different mode field, this field is
|
|
+ never used by libsanitizer so we can simply ignore this assert for all glibc
|
|
+ versions. */
|
|
CHECK_SIZE_AND_OFFSET(ipc_perm, mode);
|
|
#endif
|
|
|