summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/TLpatches/patch-03-gcc-atomic
blob: d982bcb6664992cda2cda6b7d01e5c1e07552dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
	It seems gcc-4.4 uses external calls.

Index: source/common/putilimp.h
===================================================================
--- source/common/putilimp.h	(revision 43491)
+++ source/common/putilimp.h	(working copy)
@@ -193,7 +193,7 @@
     /* Use the predefined value. */
 #elif U_PLATFORM == U_PF_MINGW
     #define U_HAVE_GCC_ATOMICS 0
-#elif U_GCC_MAJOR_MINOR >= 404 || defined(__clang__)
+#elif U_GCC_MAJOR_MINOR >= 405 || defined(__clang__)
     /* TODO: Intel icc and IBM xlc on AIX also support gcc atomics.  (Intel originated them.)
      *       Add them for these compilers.
      * Note: Clang sets __GNUC__ defines for version 4.2, so misses the 4.4 test here.