summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2016-02-18 16:25:27 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2016-02-18 17:44:24 +0100
commit8d12b6a15d10b11f361f4914be5d42c32a019f66 (patch)
tree598cc9f3740c71ecc927f08595d0ef5c27460981
parent86d2f1364a42f8fdd34842275d8e3d221989eb4f (diff)
downloadOSELAS.Toolchain-8d12b6a15d10b11f361f4914be5d42c32a019f66.tar.gz
OSELAS.Toolchain-8d12b6a15d10b11f361f4914be5d42c32a019f66.tar.xz
gcc: add fix when building with newer host tools
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--patches/gcc-4.6.2/0004-ira_allocno_object_iter_cond-Avoid-out-of-bound-arra.patch36
-rw-r--r--patches/gcc-4.6.2/0103-cfns-fix-mismatch-in-gnu_inline-attributes.patch64
-rw-r--r--patches/gcc-4.6.2/series4
-rw-r--r--patches/gcc-linaro-4.6-2011.11/series2
4 files changed, 105 insertions, 1 deletions
diff --git a/patches/gcc-4.6.2/0004-ira_allocno_object_iter_cond-Avoid-out-of-bound-arra.patch b/patches/gcc-4.6.2/0004-ira_allocno_object_iter_cond-Avoid-out-of-bound-arra.patch
new file mode 100644
index 0000000..85045a9
--- /dev/null
+++ b/patches/gcc-4.6.2/0004-ira_allocno_object_iter_cond-Avoid-out-of-bound-arra.patch
@@ -0,0 +1,36 @@
+From: rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
+Date: Thu, 19 Apr 2012 12:44:07 +0000
+Subject: [PATCH] ira_allocno_object_iter_cond: Avoid out-of-bound array
+ access.
+
+ 2012-04-19 Richard Guenther <rguenther@suse.de>
+
+ * ira-int.h (ira_allocno_object_iter_cond): Avoid out-of-bound
+ array access.
+
+
+git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186590 138bc75d-0d04-0410-961f-82ee72b054a4
+---
+ gcc/ira-int.h | 9 +++++++--
+ 1 file changed, 7 insertions(+), 2 deletions(-)
+
+diff --git a/gcc/ira-int.h b/gcc/ira-int.h
+index 049a07f..a58f0ca 100644
+--- a/gcc/ira-int.h
++++ b/gcc/ira-int.h
+@@ -1123,8 +1123,13 @@ static inline bool
+ ira_allocno_object_iter_cond (ira_allocno_object_iterator *i, ira_allocno_t a,
+ ira_object_t *o)
+ {
+- *o = ALLOCNO_OBJECT (a, i->n);
+- return i->n++ < ALLOCNO_NUM_OBJECTS (a);
++ int n = i->n++;
++ if (n < ALLOCNO_NUM_OBJECTS (a))
++ {
++ *o = ALLOCNO_OBJECT (a, n);
++ return true;
++ }
++ return false;
+ }
+
+ /* Loop over all objects associated with allocno A. In each
diff --git a/patches/gcc-4.6.2/0103-cfns-fix-mismatch-in-gnu_inline-attributes.patch b/patches/gcc-4.6.2/0103-cfns-fix-mismatch-in-gnu_inline-attributes.patch
new file mode 100644
index 0000000..d4a1fb2
--- /dev/null
+++ b/patches/gcc-4.6.2/0103-cfns-fix-mismatch-in-gnu_inline-attributes.patch
@@ -0,0 +1,64 @@
+From: unknown author <unknown.author@example.com>
+Date: Thu, 6 Aug 2015 23:47:06 -0400
+Subject: [PATCH] cfns: fix mismatch in gnu_inline attributes
+
+Since the 3.0.3 release of gperf (made in May 2007), the generated func
+has had the gnu_inline attribute applied to it. The gcc source however
+has not been updated to include that which has lead to a mismatch.
+
+In practice, this hasn't been an issue for two reasons:
+(1) Before gcc-5, the default standard was (gnu) C89, and gcc does not
+warn or throw an error in this mode.
+(2) Starting with gcc-4.8, the compiler driver used to build gcc was
+changed to C++, and g++ does not warn or throw an error in this mode.
+
+This error does show up though when using gcc-5 to build gcc-4.7 or
+older as then the default is (gnu) C11 and the C compiler driver is
+used. That failure looks like:
+In file included from .../gcc-4.7.4/gcc/cp/except.c:990:0:
+cfns.gperf: At top level:
+cfns.gperf:101:1: error: 'gnu_inline' attribute present on 'libc_name_p'
+cfns.gperf:26:14: error: but not here
+
+Whether the compiler should always emit this error regardless of the
+active standard or compiler driver is debatable (I think it should be
+consistent -- either always do it or never do it).
+
+2015-08-06 Mike Frysinger <vapier@gentoo.org>
+
+ * cfns.gperf [__GNUC__, __GNUC_STDC_INLINE__]: Apply the
+ __gnu_inline__ attribute.
+ * cfns.h: Regenerated.
+---
+ gcc/cp/cfns.gperf | 3 +++
+ gcc/cp/cfns.h | 3 +++
+ 2 files changed, 6 insertions(+)
+
+diff --git a/gcc/cp/cfns.gperf b/gcc/cp/cfns.gperf
+index ef1ed08..ba0c487 100644
+--- a/gcc/cp/cfns.gperf
++++ b/gcc/cp/cfns.gperf
+@@ -22,6 +22,9 @@ __inline
+ static unsigned int hash (const char *, unsigned int);
+ #ifdef __GNUC__
+ __inline
++#ifdef __GNUC_STDC_INLINE__
++__attribute__ ((__gnu_inline__))
++#endif
+ #endif
+ const char * libc_name_p (const char *, unsigned int);
+ %}
+diff --git a/gcc/cp/cfns.h b/gcc/cp/cfns.h
+index 62cdfab..2fb9b46 100644
+--- a/gcc/cp/cfns.h
++++ b/gcc/cp/cfns.h
+@@ -53,6 +53,9 @@ __inline
+ static unsigned int hash (const char *, unsigned int);
+ #ifdef __GNUC__
+ __inline
++#ifdef __GNUC_STDC_INLINE__
++__attribute__ ((__gnu_inline__))
++#endif
+ #endif
+ const char * libc_name_p (const char *, unsigned int);
+ /* maximum key range = 391, duplicates = 0 */
diff --git a/patches/gcc-4.6.2/series b/patches/gcc-4.6.2/series
index 8686b3c..57c2a61 100644
--- a/patches/gcc-4.6.2/series
+++ b/patches/gcc-4.6.2/series
@@ -4,10 +4,12 @@
0001-Volatile-bitfields-vs.-inline-asm-memory-constraints.patch
0002-Fix-compilation-with-host-gcc-4.7.patch
0003-PR-tree-optimization-52445.patch
+0004-ira_allocno_object_iter_cond-Avoid-out-of-bound-arra.patch
#tag:OSELAS.toolchain --start-number 100
0100-no-host-includes.patch
0101-arm-softfloat.patch
0102-fix-arith_adjacentmem-LDM-splitting-code.patch
+0103-cfns-fix-mismatch-in-gnu_inline-attributes.patch
#tag:uclibc --start-number 200
0200-also-match-uclibc-when-checking-host-os.patch
0201-missing-execinfo.h.patch
@@ -18,4 +20,4 @@
0301-flatten-switch-stmt-into-if-else-chain-for-Os.patch
0302-libiberty-pic.patch
0303-libstdc-pic.patch
-# e97cb1c7f0f224e7da137eeea46040a3 - git-ptx-patches magic
+# fefa5a67515907e61a12490df03e814b - git-ptx-patches magic
diff --git a/patches/gcc-linaro-4.6-2011.11/series b/patches/gcc-linaro-4.6-2011.11/series
index a1123a9..e5ab2af 100644
--- a/patches/gcc-linaro-4.6-2011.11/series
+++ b/patches/gcc-linaro-4.6-2011.11/series
@@ -3,10 +3,12 @@
#tag:upstream --start-number 1
../gcc-4.6.2/0002-Fix-compilation-with-host-gcc-4.7.patch
../gcc-4.6.2/0003-PR-tree-optimization-52445.patch
+../gcc-4.6.2/0004-ira_allocno_object_iter_cond-Avoid-out-of-bound-arra.patch
#tag:OSELAS.toolchain --start-number 100
../gcc-4.6.2/0100-no-host-includes.patch
../gcc-4.6.2/0101-arm-softfloat.patch
../gcc-4.6.2/0102-fix-arith_adjacentmem-LDM-splitting-code.patch
+../gcc-4.6.2/0103-cfns-fix-mismatch-in-gnu_inline-attributes.patch
#tag:uclibc --start-number 200
../gcc-4.6.2/0200-also-match-uclibc-when-checking-host-os.patch
../gcc-4.6.2/0201-missing-execinfo.h.patch