summaryrefslogtreecommitdiff
path: root/meta/recipes-core/eglibc/eglibc-2.13/use-sysroot-cxx-headers.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-06-21 16:06:32 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-25 16:32:14 +0100
commit505d82df47628b72e2af6f73e7c33fbb9812fdd1 (patch)
tree7760da34c2013d5f2626694dbdf775d66e86080c /meta/recipes-core/eglibc/eglibc-2.13/use-sysroot-cxx-headers.patch
parenta78260d8d041e606ce4d10c0bb52f196dd27832e (diff)
downloadopenembedded-core-505d82df47628b72e2af6f73e7c33fbb9812fdd1.tar.gz
openembedded-core-505d82df47628b72e2af6f73e7c33fbb9812fdd1.tar.bz2
openembedded-core-505d82df47628b72e2af6f73e7c33fbb9812fdd1.zip
eglibc-2.13: Retire into toolchain layer
If anyone wants it add toolchain-layer from meta-openembedded repo to your setup Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc-2.13/use-sysroot-cxx-headers.patch')
-rw-r--r--meta/recipes-core/eglibc/eglibc-2.13/use-sysroot-cxx-headers.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-2.13/use-sysroot-cxx-headers.patch b/meta/recipes-core/eglibc/eglibc-2.13/use-sysroot-cxx-headers.patch
deleted file mode 100644
index c06eebfac4..0000000000
--- a/meta/recipes-core/eglibc/eglibc-2.13/use-sysroot-cxx-headers.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-build system of glibc currently adds the cxx headers path by detecting
-it using provided CXX and expects that they are installed w.r.t to standard
-installation location but in OE we install and use cxx headers from target
-sysroot therefore that code needs to be adapted for OE
-
-Upstream-Status: Inappropriate [OE-specific]
-
--Khem
-
-
---- a/configure.in
-+++ b/configure.in
-@@ -1118,9 +1118,8 @@ if test -n "$sysheaders"; then
- SYSINCLUDES="$SYSINCLUDES \
- -isystem `echo $sysheaders | sed 's/:/ -isystem /g'`"
- if test -n "$CXX"; then
-- cxxversion=`$CXX -dumpversion 2>&AS_MESSAGE_LOG_FD` &&
- cxxmachine=`$CXX -dumpmachine 2>&AS_MESSAGE_LOG_FD` &&
-- cxxheaders=`$CXX -print-file-name=../../../../include/c++/`"$cxxversion" &&
-+ cxxheaders=`$CXX -print-sysroot`"$prefix/include/c++" &&
- CXX_SYSINCLUDES="-isystem $cxxheaders \
- -isystem $cxxheaders/$cxxmachine -isystem $cxxheaders/backward"
- fi
---- a/configure
-+++ b/configure
-@@ -5544,9 +5544,8 @@ if test -n "$sysheaders"; then
- SYSINCLUDES="$SYSINCLUDES \
- -isystem `echo $sysheaders | sed 's/:/ -isystem /g'`"
- if test -n "$CXX"; then
-- cxxversion=`$CXX -dumpversion 2>&5` &&
- cxxmachine=`$CXX -dumpmachine 2>&5` &&
-- cxxheaders=`$CXX -print-file-name=../../../../include/c++/`"$cxxversion" &&
-+ cxxheaders=`$CXX -print-sysroot`"$prefix/include/c++" &&
- CXX_SYSINCLUDES="-isystem $cxxheaders \
- -isystem $cxxheaders/$cxxmachine -isystem $cxxheaders/backward"
- fi