diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-12-21 12:08:31 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-09 13:39:12 +0000 |
commit | de1a1cf76e22246bc772f584142e0de357f196eb (patch) | |
tree | 634fbd2c4d41c19756540b9faa85c10be9eaebaa /meta/recipes-devtools/gcc/gcc-6.3/0002-uclibc-conf.patch | |
parent | cfa8b1ed6fb20d7a4a80b9b938e1810ac450da51 (diff) | |
download | poky-de1a1cf76e22246bc772f584142e0de357f196eb.tar.gz |
gcc6: Upgrade to 6.3.0
6.3.0 is a bugfix release in gcc 6 series
(From OE-Core rev: 36ffcd1d7d2ab9dcc91e9c09623a6613a248bc69)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-6.3/0002-uclibc-conf.patch')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-6.3/0002-uclibc-conf.patch | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-6.3/0002-uclibc-conf.patch b/meta/recipes-devtools/gcc/gcc-6.3/0002-uclibc-conf.patch new file mode 100644 index 0000000000..4d284ef862 --- /dev/null +++ b/meta/recipes-devtools/gcc/gcc-6.3/0002-uclibc-conf.patch | |||
@@ -0,0 +1,53 @@ | |||
1 | From 4efc5a258c812875743647d756f75c93c4d514a5 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 29 Mar 2013 08:38:25 +0400 | ||
4 | Subject: [PATCH 02/46] uclibc-conf | ||
5 | |||
6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | --- | ||
10 | contrib/regression/objs-gcc.sh | 4 ++++ | ||
11 | libjava/classpath/ltconfig | 4 ++-- | ||
12 | 2 files changed, 6 insertions(+), 2 deletions(-) | ||
13 | |||
14 | diff --git a/contrib/regression/objs-gcc.sh b/contrib/regression/objs-gcc.sh | ||
15 | index 60b0497..6dc7ead 100755 | ||
16 | --- a/contrib/regression/objs-gcc.sh | ||
17 | +++ b/contrib/regression/objs-gcc.sh | ||
18 | @@ -106,6 +106,10 @@ if [ $H_REAL_TARGET = $H_REAL_HOST -a $H_REAL_TARGET = i686-pc-linux-gnu ] | ||
19 | then | ||
20 | make all-gdb all-dejagnu all-ld || exit 1 | ||
21 | make install-gdb install-dejagnu install-ld || exit 1 | ||
22 | +elif [ $H_REAL_TARGET = $H_REAL_HOST -a $H_REAL_TARGET = i686-pc-linux-uclibc ] | ||
23 | + then | ||
24 | + make all-gdb all-dejagnu all-ld || exit 1 | ||
25 | + make install-gdb install-dejagnu install-ld || exit 1 | ||
26 | elif [ $H_REAL_TARGET = $H_REAL_HOST ] ; then | ||
27 | make bootstrap || exit 1 | ||
28 | make install || exit 1 | ||
29 | diff --git a/libjava/classpath/ltconfig b/libjava/classpath/ltconfig | ||
30 | index d318957..df55950 100755 | ||
31 | --- a/libjava/classpath/ltconfig | ||
32 | +++ b/libjava/classpath/ltconfig | ||
33 | @@ -603,7 +603,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` | ||
34 | |||
35 | # Transform linux* to *-*-linux-gnu*, to support old configure scripts. | ||
36 | case $host_os in | ||
37 | -linux-gnu*) ;; | ||
38 | +linux-gnu*|linux-uclibc*) ;; | ||
39 | linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'` | ||
40 | esac | ||
41 | |||
42 | @@ -1247,7 +1247,7 @@ linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*) | ||
43 | ;; | ||
44 | |||
45 | # This must be Linux ELF. | ||
46 | -linux-gnu*) | ||
47 | +linux*) | ||
48 | version_type=linux | ||
49 | need_lib_prefix=no | ||
50 | need_version=no | ||
51 | -- | ||
52 | 2.8.2 | ||
53 | |||