summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/liburcu/liburcu/Revert-Blacklist-ARM-gcc-4.8.0-4.8.1-4.8.2.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2015-12-17 16:18:54 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-28 09:25:15 +0000
commit7fc306600553e3fdd9e96626a79b8c71dcf94c4c (patch)
tree06651e47b043cfea9b38a29f0231d6f667231b5e /meta/recipes-support/liburcu/liburcu/Revert-Blacklist-ARM-gcc-4.8.0-4.8.1-4.8.2.patch
parent10d14bcad423cd2e52c16893e5e5f37cfa95f192 (diff)
downloadpoky-7fc306600553e3fdd9e96626a79b8c71dcf94c4c.tar.gz
liburcu: update to 0.9.1
Remove all patches: one of them is fixing a problem with gcc 4.8 that is no longer in use, and the other two are backports. LICENSE checksum has changed, but visually the text has stayed the same. (From OE-Core rev: 1bdaf210c2d4361948903a3af5cb98eda8860b85) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/liburcu/liburcu/Revert-Blacklist-ARM-gcc-4.8.0-4.8.1-4.8.2.patch')
-rw-r--r--meta/recipes-support/liburcu/liburcu/Revert-Blacklist-ARM-gcc-4.8.0-4.8.1-4.8.2.patch47
1 files changed, 0 insertions, 47 deletions
diff --git a/meta/recipes-support/liburcu/liburcu/Revert-Blacklist-ARM-gcc-4.8.0-4.8.1-4.8.2.patch b/meta/recipes-support/liburcu/liburcu/Revert-Blacklist-ARM-gcc-4.8.0-4.8.1-4.8.2.patch
deleted file mode 100644
index 535a7384cb..0000000000
--- a/meta/recipes-support/liburcu/liburcu/Revert-Blacklist-ARM-gcc-4.8.0-4.8.1-4.8.2.patch
+++ /dev/null
@@ -1,47 +0,0 @@
1From 7b3df100346128d780f218b881d563d1fd12e310 Mon Sep 17 00:00:00 2001
2From: Jonathan Liu <net147@gmail.com>
3Date: Mon, 20 Oct 2014 13:46:10 +1100
4Subject: [PATCH] Revert "Blacklist ARM gcc 4.8.0, 4.8.1, 4.8.2"
5
6This reverts commit 4b79310aa3d408ba30fee02cc497a68072d38a99.
7OE-Core is using a patched GCC 4.8.2 which is able to compile liburcu
8properly.
9
10Upstream-Status: Inappropriate [OE specific]
11
12Signed-off-by: Jonathan Liu <net147@gmail.com>
13---
14 urcu/compiler.h | 19 -------------------
15 1 file changed, 19 deletions(-)
16
17diff --git a/urcu/compiler.h b/urcu/compiler.h
18index 1e30903..19534f0 100644
19--- a/urcu/compiler.h
20+++ b/urcu/compiler.h
21@@ -108,23 +108,4 @@
22
23 #define CAA_ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
24
25-/*
26- * Don't allow compiling with buggy compiler.
27- */
28-
29-#ifdef __GNUC__
30-# define URCU_GCC_VERSION (__GNUC__ * 10000 \
31- + __GNUC_MINOR__ * 100 \
32- + __GNUC_PATCHLEVEL__)
33-
34-/*
35- * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58854
36- */
37-# ifdef __ARMEL__
38-# if URCU_GCC_VERSION >= 40800 && URCU_GCC_VERSION <= 40802
39-# error Your gcc version produces clobbered frame accesses
40-# endif
41-# endif
42-#endif
43-
44 #endif /* _URCU_COMPILER_H */
45--
462.1.2
47