0001-Only-blacklist-ARM-gcc-4.8.0-and-4.8.1.patch 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. From 54d8fe7ae40902d6d38e670f4024092f53c14e1f Mon Sep 17 00:00:00 2001
  2. From: Samuel Martin <s.martin49@gmail.com>
  3. Date: Sat, 8 Mar 2014 13:19:14 +0100
  4. Subject: [PATCH] Only blacklist ARM gcc 4.8.0 and 4.8.1
  5. Since many ARM toolchain providers include the bug fix for PR58854 in
  6. their latest releases based on gcc-4.8.2, then only blacklist gcc 4.8.0
  7. and 4.8.1.
  8. Signed-off-by: Samuel Martin <s.martin49@gmail.com>
  9. [Fabrice: update for 0.13.0]
  10. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  11. ---
  12. urcu/compiler.h | 9 ++++++++-
  13. 1 file changed, 8 insertions(+), 1 deletion(-)
  14. diff --git a/include/urcu/arch/arm.h b/include/urcu/arch/arm.h
  15. index 1e30903..56115f1 100644
  16. --- a/include/urcu/arch/arm.h
  17. +++ b/include/urcu/arch/arm.h
  18. @@ -118,10 +118,17 @@
  19. */
  20. /*
  21. + * Official gcc releases from 4.8.0 to 4.8.2 have the following bug,
  22. + * however, many arm toolchain providers have the included the fix for
  23. + * their latest 4.8.2 releases.
  24. + * So, we only blacklist gcc 4.8.0 and 4.8.1.
  25. + * Unfortunately, this bug is not easy to test, so we rely on the
  26. + * knowledge of the user on its compiler.
  27. + *
  28. * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58854
  29. */
  30. #ifdef URCU_GCC_VERSION
  31. -# if URCU_GCC_VERSION >= 40800 && URCU_GCC_VERSION <= 40802
  32. +# if URCU_GCC_VERSION >= 40800 && URCU_GCC_VERSION <= 40801
  33. # error Your gcc version produces clobbered frame accesses
  34. # endif
  35. #endif
  36. --
  37. 1.9.0