fix: aarch64: allow RHEL7 gcc 4.8.5-11
authorMichael Jeanson <mjeanson@efficios.com>
Mon, 5 Jun 2023 17:58:16 +0000 (13:58 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 5 Jun 2023 19:45:46 +0000 (15:45 -0400)
The patch for GCC upstream bug 63293[1] was backported in RHEL7 gcc
4.8.5-11 package, allow building with this version.

[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63293

Change-Id: Ib5d8ef3c292a691167c5c4834c1e0bfdfe5b56b3
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
include/urcu/arch/aarch64.h

index 9e2f1ffdb6d09ee93c12692a77db3866a69de9e3..2da43d162d66e3d034042c7785c0470b8e8b6b60 100644 (file)
@@ -44,9 +44,17 @@ extern "C" {
 
 /*
  * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63293
+ *
+ * Backported in RHEL7 gcc 4.8.5-11
  */
+#if defined(URCU_GCC_VERSION) && defined(__GNUC_RH_RELEASE__)
+# if (URCU_GCC_VERSION == 40805) && (__GNUC_RH_RELEASE__ >= 11)
+#  define URCU_GCC_PATCHED_63293
+# endif
+#endif
+
 #ifdef URCU_GCC_VERSION
-# if URCU_GCC_VERSION < 50100
+# if URCU_GCC_VERSION < 50100 && !defined(URCU_GCC_PATCHED_63293)
 #  error Your gcc version performs unsafe access to deallocated stack
 # endif
 #endif
This page took 0.026766 seconds and 4 git commands to generate.