summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-5.2/0038-fix-g++-sysroot.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-07-24 13:11:28 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-27 12:28:00 +0100
commitfd91e710774d91bc5ff2902b7d9ec665c532dab4 (patch)
tree2a40513f24b430062b06b5de4cd29b598297bec5 /meta/recipes-devtools/gcc/gcc-5.2/0038-fix-g++-sysroot.patch
parent53caeebc716ae9caf6ca08fd46dc58232571cd38 (diff)
downloadpoky-fd91e710774d91bc5ff2902b7d9ec665c532dab4.tar.gz
gcc5: Upgrade from 5.1 to 5.2
This is second bugfix release in gcc5 series All backported patches are dropped no other patches needed any rework (From OE-Core rev: 2a212e56a814e5dc8a8bae4974b91109ed0486ef) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-5.2/0038-fix-g++-sysroot.patch')
-rw-r--r--meta/recipes-devtools/gcc/gcc-5.2/0038-fix-g++-sysroot.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-5.2/0038-fix-g++-sysroot.patch b/meta/recipes-devtools/gcc/gcc-5.2/0038-fix-g++-sysroot.patch
new file mode 100644
index 0000000000..f024dd5a2e
--- /dev/null
+++ b/meta/recipes-devtools/gcc/gcc-5.2/0038-fix-g++-sysroot.patch
@@ -0,0 +1,44 @@
1Portions of
2
3http://www.mail-archive.com/gcc-patches@gcc.gnu.org/msg26013.html
4
5are not upstreamed yet. So lets keep missing pieces.
6
7Upstream-Status: Pending
8
9Without this, compiling something simple like #include <limits> on target
10with c++ test.cpp fails unable to find the header. strace shows it looking in
11usr/include/xxxx rather than /usr/include/xxxx
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14
15Index: gcc-4.8.1/gcc/configure.ac
16===================================================================
17--- gcc-4.8.1.orig/gcc/configure.ac 2013-07-15 15:55:49.488399132 -0700
18+++ gcc-4.8.1/gcc/configure.ac 2013-07-15 16:02:31.772406679 -0700
19@@ -148,7 +148,9 @@
20 if test "${with_sysroot+set}" = set; then
21 gcc_gxx_without_sysroot=`expr "${gcc_gxx_include_dir}" : "${with_sysroot}"'\(.*\)'`
22 if test "${gcc_gxx_without_sysroot}"; then
23- gcc_gxx_include_dir="${gcc_gxx_without_sysroot}"
24+ if test x${with_sysroot} != x/; then
25+ gcc_gxx_include_dir="${gcc_gxx_without_sysroot}"
26+ fi
27 gcc_gxx_include_dir_add_sysroot=1
28 fi
29 fi
30Index: gcc-4.8.1/gcc/configure
31===================================================================
32--- gcc-4.8.1.orig/gcc/configure 2013-07-15 15:55:49.472399132 -0700
33+++ gcc-4.8.1/gcc/configure 2013-07-15 16:02:31.780406680 -0700
34@@ -3325,7 +3325,9 @@
35 if test "${with_sysroot+set}" = set; then
36 gcc_gxx_without_sysroot=`expr "${gcc_gxx_include_dir}" : "${with_sysroot}"'\(.*\)'`
37 if test "${gcc_gxx_without_sysroot}"; then
38- gcc_gxx_include_dir="${gcc_gxx_without_sysroot}"
39+ if test x${with_sysroot} != x/; then
40+ gcc_gxx_include_dir="${gcc_gxx_without_sysroot}"
41+ fi
42 gcc_gxx_include_dir_add_sysroot=1
43 fi
44 fi