Kaydet (Commit) 9590650a authored tarafından Caolán McNamara's avatar Caolán McNamara

gcc atomics only definitely available >= gcc 4.4.4

Change-Id: I77580411eabe4375d86670debb4a5770f7873c14
üst bdbd8d80
--- misc/icu/source/common/putilimp.h
+++ misc/build/icu/source/common/putilimp.h
@@ -175,7 +175,7 @@
*/
#ifdef U_HAVE_GCC_ATOMICS
/* Use the predefined value. */
-#elif defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 401)
+#elif defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 404)
# define U_HAVE_GCC_ATOMICS 1
#else
# define U_HAVE_GCC_ATOMICS 0
......@@ -53,6 +53,7 @@ PATCH_FILES=\
icu4c-warnings.patch \
icu4c.9313.cygwin.patch \
icu4c-macosx.patch \
icu4c-interlck.patch \
.IF "$(OS)"=="ANDROID"
PATCH_FILES+=\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment