summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-5.2/0043-libstdc-musl.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-11-18 17:10:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-12 23:42:54 +0000
commita2ea58bbd7a4cea9670b0a409df3a498ac2395fa (patch)
tree47f057f094c16556fc09e68632f3a5e30ee63268 /meta/recipes-devtools/gcc/gcc-5.2/0043-libstdc-musl.patch
parent37c74e24202a4e581c49c4b3e1e5facaa5f0c407 (diff)
downloadpoky-a2ea58bbd7a4cea9670b0a409df3a498ac2395fa.tar.gz
gcc: Add support for building musl configuration
Most of these patches are already in gcc 6.0/master but we still need them for older gcc, they have been tested in meta-musl for quite some time (From OE-Core rev: 30a0cc2ef72399b84da4903e697f258f79852fc9) 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-5.2/0043-libstdc-musl.patch')
-rw-r--r--meta/recipes-devtools/gcc/gcc-5.2/0043-libstdc-musl.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-5.2/0043-libstdc-musl.patch b/meta/recipes-devtools/gcc/gcc-5.2/0043-libstdc-musl.patch
new file mode 100644
index 0000000000..048e481dce
--- /dev/null
+++ b/meta/recipes-devtools/gcc/gcc-5.2/0043-libstdc-musl.patch
@@ -0,0 +1,32 @@
1Upstream-Status: Pending
2Signed-off-by: Khem Raj <raj.khem@gmail.com>
3
4Index: gcc-4.9-20140316/libstdc++-v3/configure.host
5===================================================================
6--- gcc-4.9-20140316.orig/libstdc++-v3/configure.host 2014-03-26 01:12:19.466008193 -0700
7+++ gcc-4.9-20140316/libstdc++-v3/configure.host 2014-03-26 01:43:48.222684357 -0700
8@@ -264,14 +264,24 @@
9 os_include_dir="os/bsd/freebsd"
10 ;;
11 gnu* | linux* | kfreebsd*-gnu | knetbsd*-gnu)
12+ # check for musl by target
13+ case "${host_os}" in
14+ *-musl*)
15+ os_include_dir="os/generic"
16+ ;;
17+ *)
18 if [ "$uclibc" = "yes" ]; then
19 os_include_dir="os/uclibc"
20 elif [ "$bionic" = "yes" ]; then
21 os_include_dir="os/bionic"
22+ elif [ "$musl" = "yes" ]; then
23+ os_include_dir="os/generic"
24 else
25 os_include_dir="os/gnu-linux"
26 fi
27 ;;
28+ esac
29+ ;;
30 hpux*)
31 os_include_dir="os/hpux"
32 ;;