All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11
@ 2021-01-06 12:22 Sumit Garg
  2021-01-06 12:22 ` [meta-arm][PATCH 2/2] arm-toolchain: Drop support for GCC 8.x toolchain Sumit Garg
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Sumit Garg @ 2021-01-06 12:22 UTC (permalink / raw)
  To: meta-arm
  Cc: jon.mason, ross.burton, denys, nicolas.dechesne, daniel.thompson,
	Sumit Garg

Add support for GNU-A toolchain version: 10.2-2020.11.

Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
---
 .../recipes-devtools/gcc/gcc-arm-10.2.inc     | 121 ++++++
 ...0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch |  39 ++
 ...0001-lib-Remove-i-86-march-overrides.patch | 113 ++++++
 .../0002-gcc-poison-system-directories.patch  | 200 ++++++++++
 ...-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch |  70 ++++
 .../0004-64-bit-multilib-hack.patch           | 116 ++++++
 .../gcc-arm-10.2/0005-optional-libstdc.patch  | 122 ++++++
 .../0006-COLLECT_GCC_OPTIONS.patch            |  35 ++
 ...ts.h-in-B-instead-of-S-and-t-oe-in-B.patch |  92 +++++
 .../0008-fortran-cross-compile-hack.patch     |  43 +++
 .../gcc-arm-10.2/0009-cpp-honor-sysroot.patch |  51 +++
 .../0010-MIPS64-Default-to-N64-ABI.patch      |  54 +++
 ...AMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch | 243 ++++++++++++
 ...gcc-Fix-argument-list-too-long-error.patch |  41 ++
 .../gcc/gcc-arm-10.2/0013-Disable-sdt.patch   | 110 ++++++
 .../gcc/gcc-arm-10.2/0014-libtool.patch       |  39 ++
 ...s-fix-v4bx-to-linker-to-support-EABI.patch |  40 ++
 ...-config-files-from-B-instead-of-usin.patch |  99 +++++
 ...ir-from-.la-which-usually-points-to-.patch |  28 ++
 .../gcc/gcc-arm-10.2/0018-export-CPP.patch    |  50 +++
 ...e-target-gcc-headers-can-be-included.patch |  57 +++
 ...t-directory-during-relink-if-inst_pr.patch |  35 ++
 ...IR-replacement-instead-of-hardcoding.patch |  26 ++
 ...22-aarch64-Add-support-for-musl-ldso.patch |  25 ++
 ...-fix-libcc1-s-install-path-and-rpath.patch |  51 +++
 ...le-sysroot-support-for-nativesdk-gcc.patch | 349 ++++++++++++++++++
 ...sroot-gcc-version-specific-dirs-with.patch |  99 +++++
 ...ous-_FOR_BUILD-and-related-variables.patch | 134 +++++++
 ...027-nios2-Define-MUSL_DYNAMIC_LINKER.patch |  25 ++
 ...d-to-link-commandline-for-musl-targe.patch |  84 +++++
 ...using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch |  26 ++
 .../0030-sync-gcc-stddef.h-with-musl.patch    |  88 +++++
 ...-fault-in-precompiled-header-generat.patch |  57 +++
 .../0032-Fix-for-testsuite-failure.patch      | 255 +++++++++++++
 ...Re-introduce-spe-commandline-options.patch |  38 ++
 ...as-for-__cpu_indicator_init-instead-.patch |  83 +++++
 ...s-Do-not-use-__LINE__-for-maintainin.patch | 182 +++++++++
 ...ngw32-Enable-operation_not_supported.patch |  26 ++
 ...omic-Do-not-enforce-march-on-aarch64.patch |  42 +++
 .../gcc/gcc-cross-canadian_arm-10.2.bb        |   5 +
 .../gcc/gcc-cross_arm-10.2.bb                 |   3 +
 .../gcc/gcc-crosssdk_arm-10.2.bb              |   2 +
 .../gcc/gcc-runtime_arm-10.2.bb               |   2 +
 .../gcc/gcc-sanitizers_arm-10.2.bb            |   7 +
 .../gcc/gcc-source_arm-10.2.bb                |   4 +
 .../recipes-devtools/gcc/gcc_arm-10.2.bb      |  15 +
 .../gcc/libgcc-initial_arm-10.2.bb            |   5 +
 .../recipes-devtools/gcc/libgcc_arm-10.2.bb   |   5 +
 .../gcc/libgfortran_arm-10.2.bb               |   3 +
 49 files changed, 3439 insertions(+)
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
 create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb

diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
new file mode 100644
index 0000000..2a82293
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
@@ -0,0 +1,121 @@
+require recipes-devtools/gcc/gcc-common.inc
+
+# Third digit in PV should be incremented after a minor release
+
+PV = "arm-10.2"
+CVE_VERSION = "10.2"
+
+# BINV should be incremented to a revision after a minor gcc release
+
+BINV = "10.2.1"
+
+MMYY = "20.11"
+RELEASE = "20${MMYY}"
+PR = "r${RELEASE}"
+
+FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc-arm-10.2:${FILE_DIRNAME}/gcc-arm-10.2/backport:"
+
+DEPENDS =+ "mpfr gmp libmpc zlib flex-native"
+NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native flex-native"
+
+LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
+
+LIC_FILES_CHKSUM = "\
+    file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
+    file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
+    file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
+    file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
+    file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \
+"
+
+BASEURI ?= "https://developer.arm.com/-/media/Files/downloads/gnu-a/10.2-2020.11/srcrel/gcc-arm-src-snapshot-10.2-2020.11.tar.xz"
+SRC_URI = "\
+           ${BASEURI} \
+           file://0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \
+           file://0002-gcc-poison-system-directories.patch \
+           file://0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch \
+           file://0004-64-bit-multilib-hack.patch \
+           file://0005-optional-libstdc.patch \
+           file://0006-COLLECT_GCC_OPTIONS.patch \
+           file://0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \
+           file://0008-fortran-cross-compile-hack.patch \
+           file://0009-cpp-honor-sysroot.patch \
+           file://0010-MIPS64-Default-to-N64-ABI.patch \
+           file://0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \
+           file://0012-gcc-Fix-argument-list-too-long-error.patch \
+           file://0013-Disable-sdt.patch \
+           file://0014-libtool.patch \
+           file://0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch \
+           file://0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch \
+           file://0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch \
+           file://0018-export-CPP.patch \
+           file://0019-Ensure-target-gcc-headers-can-be-included.patch \
+           file://0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch \
+           file://0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch \
+           file://0022-aarch64-Add-support-for-musl-ldso.patch \
+           file://0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch \
+           file://0024-handle-sysroot-support-for-nativesdk-gcc.patch \
+           file://0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch \
+           file://0026-Fix-various-_FOR_BUILD-and-related-variables.patch \
+           file://0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch \
+           file://0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch \
+           file://0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \
+           file://0030-sync-gcc-stddef.h-with-musl.patch \
+           file://0031-fix-segmentation-fault-in-precompiled-header-generat.patch \
+           file://0032-Fix-for-testsuite-failure.patch \
+           file://0033-Re-introduce-spe-commandline-options.patch \
+           file://0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \
+           file://0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch \
+           file://0036-mingw32-Enable-operation_not_supported.patch \
+           file://0037-libatomic-Do-not-enforce-march-on-aarch64.patch \
+           file://0001-lib-Remove-i-86-march-overrides.patch \
+"
+SRC_URI[md5sum] = "ce6ebec573e3e52cdb770c8f822aad17"
+
+S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-arm-src-snapshot-10.2-2020.11"
+# For dev release snapshotting
+#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${RELEASE}"
+#B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
+
+# Language Overrides
+FORTRAN = ""
+JAVA = ""
+
+SSP ?= "--disable-libssp"
+SSP_mingw32 = "--enable-libssp"
+
+EXTRA_OECONF_BASE = "\
+    ${SSP} \
+    --enable-libitm \
+    --enable-lto \
+    --disable-bootstrap \
+    --with-system-zlib \
+    ${@'--with-linker-hash-style=${LINKER_HASH_STYLE}' if '${LINKER_HASH_STYLE}' else ''} \
+    --enable-linker-build-id \
+    --with-ppl=no \
+    --with-cloog=no \
+    --enable-checking=release \
+    --enable-cheaders=c_global \
+    --without-isl \
+"
+
+EXTRA_OECONF_INITIAL = "\
+    --disable-libgomp \
+    --disable-libitm \
+    --disable-libquadmath \
+    --with-system-zlib \
+    --disable-lto \
+    --disable-plugin \
+    --enable-linker-build-id \
+    --enable-decimal-float=no \
+    --without-isl \
+    --disable-libssp \
+"
+
+EXTRA_OECONF_append_aarchilp32 = " --with-abi=ilp32"
+
+EXTRA_OECONF_PATHS = "\
+    --with-gxx-include-dir=/not/exist{target_includedir}/c++/${BINV} \
+    --with-sysroot=/not/exist \
+    --with-build-sysroot=${STAGING_DIR_TARGET} \
+"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
new file mode 100644
index 0000000..82ae9f8
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
@@ -0,0 +1,39 @@
+From f2a5dc3bc7e5727d6bf77e1c6e8a31a6f000883d Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 08:37:11 +0400
+Subject: [PATCH] gcc-4.3.1: ARCH_FLAGS_FOR_TARGET
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Inappropriate [embedded specific]
+---
+ configure    | 2 +-
+ configure.ac | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/configure b/configure
+index 4cc938ebb7d..226a64939d1 100755
+--- a/configure
++++ b/configure
+@@ -7722,7 +7722,7 @@ fi
+ # for target_alias and gcc doesn't manage it consistently.
+ target_configargs="--cache-file=./config.cache ${target_configargs}"
+ 
+-FLAGS_FOR_TARGET=
++FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
+ case " $target_configdirs " in
+  *" newlib "*)
+   case " $target_configargs " in
+diff --git a/configure.ac b/configure.ac
+index c78d9cbea62..f024f4bac9b 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -3227,7 +3227,7 @@ fi
+ # for target_alias and gcc doesn't manage it consistently.
+ target_configargs="--cache-file=./config.cache ${target_configargs}"
+ 
+-FLAGS_FOR_TARGET=
++FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
+ case " $target_configdirs " in
+  *" newlib "*)
+   case " $target_configargs " in
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
new file mode 100644
index 0000000..3f04e12
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
@@ -0,0 +1,113 @@
+From 3776789cde95916f95deef48acf9532b0ebf91ae Mon Sep 17 00:00:00 2001
+From: Nathan Rossi <nathan@nathanrossi.com>
+Date: Tue, 15 Dec 2020 11:43:36 +1000
+Subject: [PATCH] lib*: Remove i*86 march overrides
+
+OE does not pass the '--with-arch' option to gccs configure, as such
+some gcc-runtime libraries try to override the value of '-march' and
+'-mtune' which OE already provides. This causes conflicts with other
+i*86 instruction/architecture flags (e.g. -msse* and -mfpmath=*).
+Additionally this caused the following libraries to be built with less
+optimized tune configurations.
+
+Upstream suggests that this should be detecting or otherwise checking if
+the target supports the desired functionality before overriding.
+
+    https://gcc.gnu.org/legacy-ml/gcc-patches/2016-04/msg01344.html
+
+libatomic also overrides the '-march' specifically for IFUNC objects.
+OE already supplies the correct march flag, so remove setting.
+
+Upstream-Status: Inappropriate [OE Specific]
+Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
+---
+ libatomic/Makefile.am   | 1 -
+ libatomic/Makefile.in   | 1 -
+ libatomic/configure.tgt | 9 ---------
+ libgomp/configure.tgt   | 8 --------
+ libitm/configure.tgt    | 9 ---------
+ 5 files changed, 28 deletions(-)
+
+diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
+index ac1ca64587..5aa16e0699 100644
+--- a/libatomic/Makefile.am
++++ b/libatomic/Makefile.am
+@@ -133,7 +133,6 @@ libatomic_la_LIBADD += $(foreach s,$(SIZES),$(addsuffix _$(s)_1_.lo,$(SIZEOBJS))
+ libatomic_la_LIBADD += $(addsuffix _8_2_.lo,$(SIZEOBJS))
+ endif
+ if ARCH_I386
+-IFUNC_OPTIONS	     = -march=i586
+ libatomic_la_LIBADD += $(addsuffix _8_1_.lo,$(SIZEOBJS))
+ endif
+ if ARCH_X86_64
+diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
+index 97df2d7ff0..82c511d420 100644
+--- a/libatomic/Makefile.in
++++ b/libatomic/Makefile.in
+@@ -432,7 +432,6 @@ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix \
+ 	_$(s)_.lo,$(SIZEOBJS))) $(am__append_1) $(am__append_2) \
+ 	$(am__append_3) $(am__append_4)
+ @ARCH_ARM_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv7-a+fp -DHAVE_KERNEL64
+-@ARCH_I386_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=i586
+ @ARCH_X86_64_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -mcx16
+ libatomic_convenience_la_SOURCES = $(libatomic_la_SOURCES)
+ libatomic_convenience_la_LIBADD = $(libatomic_la_LIBADD)
+diff --git a/libatomic/configure.tgt b/libatomic/configure.tgt
+index 5dd0926d20..3cc41773c3 100644
+--- a/libatomic/configure.tgt
++++ b/libatomic/configure.tgt
+@@ -82,15 +82,6 @@ case "${target_cpu}" in
+ 	;;
+ 
+   i[3456]86)
+-	case " ${CC} ${CFLAGS} " in
+-	  *" -m64 "*|*" -mx32 "*)
+-	    ;;
+-	  *)
+-	    if test -z "$with_arch"; then
+-	      XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
+-	      XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
+-	    fi
+-	esac
+ 	ARCH=x86
+ 	# ??? Detect when -march=i686 is already enabled.
+ 	try_ifunc=yes
+diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt
+index 4790a31e39..46c4c958e6 100644
+--- a/libgomp/configure.tgt
++++ b/libgomp/configure.tgt
+@@ -72,14 +72,6 @@ if test x$enable_linux_futex = xyes; then
+     # Note that bare i386 is not included here.  We need cmpxchg.
+     i[456]86-*-linux*)
+ 	config_path="linux/x86 linux posix"
+-	case " ${CC} ${CFLAGS} " in
+-	  *" -m64 "*|*" -mx32 "*)
+-	    ;;
+-	  *)
+-	    if test -z "$with_arch"; then
+-	      XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
+-	    fi
+-	esac
+ 	;;
+ 
+     # Similar jiggery-pokery for x86_64 multilibs, except here we
+diff --git a/libitm/configure.tgt b/libitm/configure.tgt
+index 04109160e9..3d78ea609d 100644
+--- a/libitm/configure.tgt
++++ b/libitm/configure.tgt
+@@ -59,15 +59,6 @@ case "${target_cpu}" in
+   arm*)		ARCH=arm ;;
+ 
+   i[3456]86)
+-	case " ${CC} ${CFLAGS} " in
+-	  *" -m64 "*|*" -mx32 "*)
+-	    ;;
+-	  *)
+-	    if test -z "$with_arch"; then
+-	      XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
+-	      XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
+-	    fi
+-	esac
+ 	XCFLAGS="${XCFLAGS} -mrtm"
+ 	ARCH=x86
+ 	;;
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
new file mode 100644
index 0000000..30a8486
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
@@ -0,0 +1,200 @@
+From 74cc21f474402cf3578e37e1d7a1a22bbd070f6a Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 08:59:00 +0400
+Subject: [PATCH] gcc: poison-system-directories
+
+Add /sw/include and /opt/include based on the original
+zecke-no-host-includes.patch patch.  The original patch checked for
+/usr/include, /sw/include and /opt/include and then triggered a failure and
+aborted.
+
+Instead, we add the two missing items to the current scan.  If the user
+wants this to be a failure, they can add "-Werror=poison-system-directories".
+
+Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+---
+ gcc/common.opt      |  4 ++++
+ gcc/config.in       |  6 ++++++
+ gcc/configure       | 16 ++++++++++++++++
+ gcc/configure.ac    | 10 ++++++++++
+ gcc/doc/invoke.texi |  9 +++++++++
+ gcc/gcc.c           |  2 ++
+ gcc/incpath.c       | 21 +++++++++++++++++++++
+ 7 files changed, 68 insertions(+)
+
+diff --git a/gcc/common.opt b/gcc/common.opt
+index 65a82410abc..415f38fa1f4 100644
+--- a/gcc/common.opt
++++ b/gcc/common.opt
+@@ -682,6 +682,10 @@ Wreturn-local-addr
+ Common Var(warn_return_local_addr) Init(1) Warning
+ Warn about returning a pointer/reference to a local or temporary variable.
+ 
++Wpoison-system-directories
++Common Var(flag_poison_system_directories) Init(1) Warning
++Warn for -I and -L options using system directories if cross compiling
++
+ Wshadow
+ Common Var(warn_shadow) Warning
+ Warn when one variable shadows another.  Same as -Wshadow=global.
+diff --git a/gcc/config.in b/gcc/config.in
+index 809e7b26823..5adeaeed36b 100644
+--- a/gcc/config.in
++++ b/gcc/config.in
+@@ -224,6 +224,12 @@
+ #endif
+ 
+ 
++/* Define to warn for use of native system header directories */
++#ifndef USED_FOR_TARGET
++#undef ENABLE_POISON_SYSTEM_DIRECTORIES
++#endif
++
++
+ /* Define if you want all operations on RTL (the basic data structure of the
+    optimizer and back end) to be checked for dynamic type safety at runtime.
+    This is quite expensive. */
+diff --git a/gcc/configure b/gcc/configure
+index cd3d9516fce..8de766a942c 100755
+--- a/gcc/configure
++++ b/gcc/configure
+@@ -1010,6 +1010,7 @@ with_system_zlib
+ enable_maintainer_mode
+ enable_link_mutex
+ enable_version_specific_runtime_libs
++enable_poison_system_directories
+ enable_plugin
+ enable_host_shared
+ enable_libquadmath_support
+@@ -1766,6 +1767,8 @@ Optional Features:
+   --enable-version-specific-runtime-libs
+                           specify that runtime libraries should be installed
+                           in a compiler-specific directory
++  --enable-poison-system-directories
++                          warn for use of native system header directories
+   --enable-plugin         enable plugin support
+   --enable-host-shared    build host code as shared libraries
+   --disable-libquadmath-support
+@@ -30235,6 +30238,19 @@ if test "${enable_version_specific_runtime_libs+set}" = set; then :
+ fi
+ 
+ 
++# Check whether --enable-poison-system-directories was given.
++if test "${enable_poison_system_directories+set}" = set; then :
++  enableval=$enable_poison_system_directories;
++else
++  enable_poison_system_directories=no
++fi
++
++if test "x${enable_poison_system_directories}" = "xyes"; then
++
++$as_echo "#define ENABLE_POISON_SYSTEM_DIRECTORIES 1" >>confdefs.h
++
++fi
++
+ # Substitute configuration variables
+ 
+ 
+diff --git a/gcc/configure.ac b/gcc/configure.ac
+index 0de3b4bf97b..8bfd6feb780 100644
+--- a/gcc/configure.ac
++++ b/gcc/configure.ac
+@@ -6595,6 +6595,16 @@ AC_ARG_ENABLE(version-specific-runtime-libs,
+                 [specify that runtime libraries should be
+                  installed in a compiler-specific directory])])
+ 
++AC_ARG_ENABLE([poison-system-directories],
++             AS_HELP_STRING([--enable-poison-system-directories],
++                            [warn for use of native system header directories]),,
++             [enable_poison_system_directories=no])
++if test "x${enable_poison_system_directories}" = "xyes"; then
++  AC_DEFINE([ENABLE_POISON_SYSTEM_DIRECTORIES],
++           [1],
++           [Define to warn for use of native system header directories])
++fi
++
+ # Substitute configuration variables
+ AC_SUBST(subdirs)
+ AC_SUBST(srcdir)
+diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
+index f98161391a0..f12d8d12150 100644
+--- a/gcc/doc/invoke.texi
++++ b/gcc/doc/invoke.texi
+@@ -348,6 +348,7 @@ Objective-C and Objective-C++ Dialects}.
+ -Wpacked  -Wno-packed-bitfield-compat  -Wpacked-not-aligned  -Wpadded @gol
+ -Wparentheses  -Wno-pedantic-ms-format @gol
+ -Wpointer-arith  -Wno-pointer-compare  -Wno-pointer-to-int-cast @gol
++-Wno-poison-system-directories @gol
+ -Wno-pragmas  -Wno-prio-ctor-dtor  -Wredundant-decls @gol
+ -Wrestrict  -Wno-return-local-addr  -Wreturn-type @gol
+ -Wno-scalar-storage-order  -Wsequence-point @gol
+@@ -6924,6 +6925,14 @@ made up of data only and thus requires no special treatment.  But, for
+ most targets, it is made up of code and thus requires the stack to be
+ made executable in order for the program to work properly.
+ 
++@item -Wno-poison-system-directories
++@opindex Wno-poison-system-directories
++Do not warn for @option{-I} or @option{-L} options using system
++directories such as @file{/usr/include} when cross compiling.  This
++option is intended for use in chroot environments when such
++directories contain the correct headers and libraries for the target
++system rather than the host.
++
+ @item -Wfloat-equal
+ @opindex Wfloat-equal
+ @opindex Wno-float-equal
+diff --git a/gcc/gcc.c b/gcc/gcc.c
+index 9f790db0daf..b2200c5185a 100644
+--- a/gcc/gcc.c
++++ b/gcc/gcc.c
+@@ -1041,6 +1041,8 @@ proper position among the other output files.  */
+    "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
+    "%X %{o*} %{e*} %{N} %{n} %{r}\
+     %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!r:%{!nostartfiles:%S}}} \
++    %{Wno-poison-system-directories:--no-poison-system-directories} \
++    %{Werror=poison-system-directories:--error-poison-system-directories} \
+     %{static|no-pie|static-pie:} %@{L*} %(mfwrap) %(link_libgcc) " \
+     VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o "" \
+     %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
+diff --git a/gcc/incpath.c b/gcc/incpath.c
+index 8a2bda00f80..9098ab044ab 100644
+--- a/gcc/incpath.c
++++ b/gcc/incpath.c
+@@ -26,6 +26,7 @@
+ #include "intl.h"
+ #include "incpath.h"
+ #include "cppdefault.h"
++#include "diagnostic-core.h"
+ 
+ /* Microsoft Windows does not natively support inodes.
+    VMS has non-numeric inodes.  */
+@@ -393,6 +394,26 @@ merge_include_chains (const char *sysroot, cpp_reader *pfile, int verbose)
+ 	}
+       fprintf (stderr, _("End of search list.\n"));
+     }
++
++#ifdef ENABLE_POISON_SYSTEM_DIRECTORIES
++  if (flag_poison_system_directories)
++    {
++       struct cpp_dir *p;
++
++       for (p = heads[INC_QUOTE]; p; p = p->next)
++         {
++          if ((!strncmp (p->name, "/usr/include", 12))
++              || (!strncmp (p->name, "/usr/local/include", 18))
++              || (!strncmp (p->name, "/usr/X11R6/include", 18))
++              || (!strncmp (p->name, "/sw/include", 11))
++              || (!strncmp (p->name, "/opt/include", 12)))
++            warning (OPT_Wpoison_system_directories,
++                     "include location \"%s\" is unsafe for "
++                     "cross-compilation",
++                     p->name);
++         }
++    }
++#endif
+ }
+ 
+ /* Use given -I paths for #include "..." but not #include <...>, and
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
new file mode 100644
index 0000000..27237fe
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
@@ -0,0 +1,70 @@
+From 6e3395c0bc933bdc3242d1dead4896d0aa4e11a8 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:08:31 +0400
+Subject: [PATCH] gcc-4.3.3: SYSROOT_CFLAGS_FOR_TARGET
+
+Before committing, I noticed that PR/32161 was marked as a dup of PR/32009, but my previous patch did not fix it.
+
+This alternative patch is better because it lets you just use CFLAGS_FOR_TARGET to set the compilation flags for libgcc. Since bootstrapped target libraries are never compiled with the native compiler, it makes little sense to use different flags for stage1 and later stages. And it also makes little sense to use a different variable than CFLAGS_FOR_TARGET.
+
+Other changes I had to do include:
+
+- moving the creation of default CFLAGS_FOR_TARGET from Makefile.am to configure.ac, because otherwise the BOOT_CFLAGS are substituted into CFLAGS_FOR_TARGET (which is "-O2 -g $(CFLAGS)") via $(CFLAGS). It is also cleaner this way though.
+
+- passing the right CFLAGS to configure scripts as exported environment variables
+
+I also stopped passing LIBCFLAGS to configure scripts since they are unused in the whole src tree. And I updated the documentation as H-P reminded me to do.
+
+Bootstrapped/regtested i686-pc-linux-gnu, will commit to 4.4 shortly. Ok for 4.3?
+
+Signed-off-by: Paolo Bonzini  <bonzini@gnu.org>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+---
+ configure | 32 ++++++++++++++++++++++++++++++++
+ 1 file changed, 32 insertions(+)
+
+diff --git a/configure b/configure
+index 226a64939d1..b31dc137fc9 100755
+--- a/configure
++++ b/configure
+@@ -6971,6 +6971,38 @@ fi
+ 
+ 
+ 
++# During gcc bootstrap, if we use some random cc for stage1 then CFLAGS
++# might be empty or "-g".  We don't require a C++ compiler, so CXXFLAGS
++# might also be empty (or "-g", if a non-GCC C++ compiler is in the path).
++# We want to ensure that TARGET libraries (which we know are built with
++# gcc) are built with "-O2 -g", so include those options when setting
++# CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
++if test "x$CFLAGS_FOR_TARGET" = x; then
++  CFLAGS_FOR_TARGET=$CFLAGS
++  case " $CFLAGS " in
++    *" -O2 "*) ;;
++    *) CFLAGS_FOR_TARGET="-O2 $CFLAGS" ;;
++  esac
++  case " $CFLAGS " in
++    *" -g "* | *" -g3 "*) ;;
++    *) CFLAGS_FOR_TARGET="-g $CFLAGS" ;;
++  esac
++fi
++
++
++if test "x$CXXFLAGS_FOR_TARGET" = x; then
++  CXXFLAGS_FOR_TARGET=$CXXFLAGS
++  case " $CXXFLAGS " in
++    *" -O2 "*) ;;
++    *) CXXFLAGS_FOR_TARGET="-O2 $CXXFLAGS" ;;
++  esac
++  case " $CXXFLAGS " in
++    *" -g "* | *" -g3 "*) ;;
++    *) CXXFLAGS_FOR_TARGET="-g $CXXFLAGS" ;;
++  esac
++fi
++
++
+ # Handle --with-headers=XXX.  If the value is not "yes", the contents of
+ # the named directory are copied to $(tooldir)/sys-include.
+ if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
new file mode 100644
index 0000000..7c751be
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
@@ -0,0 +1,116 @@
+From 85a7c5aeb82ed61e6ef6d8e061b9da9e6a4a652c Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:10:06 +0400
+Subject: [PATCH] 64-bit multilib hack.
+
+GCC has internal multilib handling code but it assumes a very specific rigid directory
+layout. The build system implementation of multilib layout is very generic and allows
+complete customisation of the library directories.
+
+This patch is a partial solution to allow any custom directories to be passed into gcc
+and handled correctly. It forces gcc to use the base_libdir (which is the current
+directory, "."). We need to do this for each multilib that is configured as we don't
+know which compiler options may be being passed into the compiler. Since we have a compiler
+per mulitlib at this point that isn't an issue.
+
+The one problem is the target compiler is only going to work for the default multlilib at
+this point. Ideally we'd figure out which multilibs were being enabled with which paths
+and be able to patch these entries with a complete set of correct paths but this we
+don't have such code at this point. This is something the target gcc recipe should do
+and override these platform defaults in its build config.
+
+Do same for riscv64 and aarch64
+
+RP 15/8/11
+
+Upstream-Status: Inappropriate[OE-Specific]
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
+Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
+---
+ gcc/config/aarch64/t-aarch64-linux |  8 ++++----
+ gcc/config/i386/t-linux64          |  6 ++----
+ gcc/config/mips/t-linux64          | 10 +++-------
+ gcc/config/riscv/t-linux           |  6 ++++--
+ gcc/config/rs6000/t-linux64        |  5 ++---
+ 5 files changed, 15 insertions(+), 20 deletions(-)
+
+diff --git a/gcc/config/aarch64/t-aarch64-linux b/gcc/config/aarch64/t-aarch64-linux
+index 83e59e33b85..b1356be1fb4 100644
+--- a/gcc/config/aarch64/t-aarch64-linux
++++ b/gcc/config/aarch64/t-aarch64-linux
+@@ -21,8 +21,8 @@
+ LIB1ASMSRC   = aarch64/lib1funcs.asm
+ LIB1ASMFUNCS = _aarch64_sync_cache_range
+ 
+-AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
+-MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
+-MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
++#AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
++#MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
++#MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
+ 
+-MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
++#MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
+diff --git a/gcc/config/i386/t-linux64 b/gcc/config/i386/t-linux64
+index 1171e218578..5e057b7e5db 100644
+--- a/gcc/config/i386/t-linux64
++++ b/gcc/config/i386/t-linux64
+@@ -32,7 +32,5 @@
+ #
+ comma=,
+ MULTILIB_OPTIONS    = $(subst $(comma),/,$(TM_MULTILIB_CONFIG))
+-MULTILIB_DIRNAMES   = $(patsubst m%, %, $(subst /, ,$(MULTILIB_OPTIONS)))
+-MULTILIB_OSDIRNAMES = m64=../lib64$(call if_multiarch,:x86_64-linux-gnu)
+-MULTILIB_OSDIRNAMES+= m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:i386-linux-gnu)
+-MULTILIB_OSDIRNAMES+= mx32=../libx32$(call if_multiarch,:x86_64-linux-gnux32)
++MULTILIB_DIRNAMES = . .
++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
+diff --git a/gcc/config/mips/t-linux64 b/gcc/config/mips/t-linux64
+index ceb58d3b5f3..43fe2bf28ab 100644
+--- a/gcc/config/mips/t-linux64
++++ b/gcc/config/mips/t-linux64
+@@ -17,10 +17,6 @@
+ # <http://www.gnu.org/licenses/>.
+ 
+ MULTILIB_OPTIONS = mabi=n32/mabi=32/mabi=64
+-MULTILIB_DIRNAMES = n32 32 64
+-MIPS_EL = $(if $(filter %el, $(firstword $(subst -, ,$(target)))),el)
+-MIPS_SOFT = $(if $(strip $(filter MASK_SOFT_FLOAT_ABI, $(target_cpu_default)) $(filter soft, $(with_float))),soft)
+-MULTILIB_OSDIRNAMES = \
+-	../lib32$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabin32$(MIPS_SOFT)) \
+-	../lib$(call if_multiarch,:mips$(MIPS_EL)-linux-gnu$(MIPS_SOFT)) \
+-	../lib64$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabi64$(MIPS_SOFT))
++MULTILIB_DIRNAMES = . . .
++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
++
+diff --git a/gcc/config/riscv/t-linux b/gcc/config/riscv/t-linux
+index 216d2776a18..e4d817621fc 100644
+--- a/gcc/config/riscv/t-linux
++++ b/gcc/config/riscv/t-linux
+@@ -1,3 +1,5 @@
+ # Only XLEN and ABI affect Linux multilib dir names, e.g. /lib32/ilp32d/
+-MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
+-MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
++#MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
++MULTILIB_DIRNAMES := . .
++#MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
++MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
+diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64
+index 264a7e27524..dc9d440f66b 100644
+--- a/gcc/config/rs6000/t-linux64
++++ b/gcc/config/rs6000/t-linux64
+@@ -26,10 +26,9 @@
+ # MULTILIB_OSDIRNAMES according to what is found on the target.
+ 
+ MULTILIB_OPTIONS    := m64/m32
+-MULTILIB_DIRNAMES   := 64 32
++MULTILIB_DIRNAMES   := . .
+ MULTILIB_EXTRA_OPTS := 
+-MULTILIB_OSDIRNAMES := m64=../lib64$(call if_multiarch,:powerpc64-linux-gnu)
+-MULTILIB_OSDIRNAMES += m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:powerpc-linux-gnu)
++MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
+ 
+ rs6000-linux.o: $(srcdir)/config/rs6000/rs6000-linux.c
+ 	$(COMPILE) $<
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
new file mode 100644
index 0000000..4020c9e
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
@@ -0,0 +1,122 @@
+From 6ddfb0bfcd1eea71acd37ab06f7a4510b9f1d12b Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:12:56 +0400
+Subject: [PATCH] optional libstdc
+
+gcc-runtime builds libstdc++ separately from gcc-cross-*. Its configure tests using g++
+will not run correctly since by default the linker will try to link against libstdc++
+which shouldn't exist yet. We need an option to disable -lstdc++
+option whilst leaving -lc, -lgcc and other automatic library dependencies added by gcc
+driver. This patch adds such an option which only disables the -lstdc++.
+
+A "standard" gcc build uses xgcc and hence avoids this. We should ask upstream how to
+do this officially, the likely answer is don't build libstdc++ separately.
+
+RP 29/6/10
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Inappropriate [embedded specific]
+---
+ gcc/c-family/c.opt  |  4 ++++
+ gcc/cp/g++spec.c    |  1 +
+ gcc/doc/invoke.texi | 32 +++++++++++++++++++++++++++++++-
+ gcc/gcc.c           |  1 +
+ 4 files changed, 37 insertions(+), 1 deletion(-)
+
+diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt
+index c49da99d395..35f712e2c84 100644
+--- a/gcc/c-family/c.opt
++++ b/gcc/c-family/c.opt
+@@ -2025,6 +2025,10 @@ nostdinc++
+ C++ ObjC++
+ Do not search standard system include directories for C++.
+ 
++nostdlib++
++Driver
++Do not link standard C++ runtime library
++
+ o
+ C ObjC C++ ObjC++ Joined Separate
+ ; Documented in common.opt
+diff --git a/gcc/cp/g++spec.c b/gcc/cp/g++spec.c
+index 0ab63bcd211..7b081e9e4f0 100644
+--- a/gcc/cp/g++spec.c
++++ b/gcc/cp/g++spec.c
+@@ -137,6 +137,7 @@ lang_specific_driver (struct cl_decoded_option **in_decoded_options,
+       switch (decoded_options[i].opt_index)
+ 	{
+ 	case OPT_nostdlib:
++	case OPT_nostdlib__:
+ 	case OPT_nodefaultlibs:
+ 	  library = -1;
+ 	  break;
+diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
+index f12d8d12150..cf6cb428e7d 100644
+--- a/gcc/doc/invoke.texi
++++ b/gcc/doc/invoke.texi
+@@ -230,6 +230,9 @@ in the following sections.
+ -fno-weak  -nostdinc++ @gol
+ -fvisibility-inlines-hidden @gol
+ -fvisibility-ms-compat @gol
++-fvtable-verify=@r{[}std@r{|}preinit@r{|}none@r{]} @gol
++-fvtv-counts -fvtv-debug @gol
++-nostdlib++ @gol
+ -fext-numeric-literals @gol
+ -Wabi-tag  -Wcatch-value  -Wcatch-value=@var{n} @gol
+ -Wno-class-conversion  -Wclass-memaccess @gol
+@@ -599,7 +602,7 @@ Objective-C and Objective-C++ Dialects}.
+ -pie  -pthread  -r  -rdynamic @gol
+ -s  -static  -static-pie  -static-libgcc  -static-libstdc++ @gol
+ -static-libasan  -static-libtsan  -static-liblsan  -static-libubsan @gol
+--shared  -shared-libgcc  -symbolic @gol
++-shared  -shared-libgcc  -symbolic -nostdlib++ @gol
+ -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
+ -u @var{symbol}  -z @var{keyword}}
+ 
+@@ -14407,6 +14410,33 @@ Specify that the program entry point is @var{entry}.  The argument is
+ interpreted by the linker; the GNU linker accepts either a symbol name
+ or an address.
+ 
++@item -nostdlib++
++@opindex nostdlib++
++Do not use the standard system C++ runtime libraries when linking.
++Only the libraries you specify will be passed to the linker.
++
++@cindex @option{-lgcc}, use with @option{-nostdlib}
++@cindex @option{-nostdlib} and unresolved references
++@cindex unresolved references and @option{-nostdlib}
++@cindex @option{-lgcc}, use with @option{-nodefaultlibs}
++@cindex @option{-nodefaultlibs} and unresolved references
++@cindex unresolved references and @option{-nodefaultlibs}
++One of the standard libraries bypassed by @option{-nostdlib} and
++@option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
++which GCC uses to overcome shortcomings of particular machines, or special
++needs for some languages.
++(@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
++Collection (GCC) Internals},
++for more discussion of @file{libgcc.a}.)
++In most cases, you need @file{libgcc.a} even when you want to avoid
++other standard libraries.  In other words, when you specify @option{-nostdlib}
++or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
++This ensures that you have no unresolved references to internal GCC
++library subroutines.
++(An example of such an internal subroutine is @code{__main}, used to ensure C++
++constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
++GNU Compiler Collection (GCC) Internals}.)
++
+ @item -pie
+ @opindex pie
+ Produce a dynamically linked position independent executable on targets
+diff --git a/gcc/gcc.c b/gcc/gcc.c
+index b2200c5185a..f8be58ce0a6 100644
+--- a/gcc/gcc.c
++++ b/gcc/gcc.c
+@@ -1051,6 +1051,7 @@ proper position among the other output files.  */
+     %(mflib) " STACK_SPLIT_SPEC "\
+     %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
+     %{!nostdlib:%{!r:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}}\
++    %{!nostdlib++:}\
+     %{!nostdlib:%{!r:%{!nostartfiles:%E}}} %{T*}  \n%(post_link) }}}}}}"
+ #endif
+ 
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
new file mode 100644
index 0000000..9fbbe80
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
@@ -0,0 +1,35 @@
+From a6c90d3a9c5010b4aa7cc30467cf81ca7e0f430e Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:16:28 +0400
+Subject: [PATCH] COLLECT_GCC_OPTIONS
+
+This patch adds --sysroot into COLLECT_GCC_OPTIONS which is used to
+invoke collect2.
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+---
+ gcc/gcc.c | 9 +++++++++
+ 1 file changed, 9 insertions(+)
+
+diff --git a/gcc/gcc.c b/gcc/gcc.c
+index f8be58ce0a6..48b0f9dde81 100644
+--- a/gcc/gcc.c
++++ b/gcc/gcc.c
+@@ -4806,6 +4806,15 @@ set_collect_gcc_options (void)
+ 		sizeof ("COLLECT_GCC_OPTIONS=") - 1);
+ 
+   first_time = TRUE;
++#ifdef HAVE_LD_SYSROOT
++  if (target_system_root_changed && target_system_root)
++    {
++      obstack_grow (&collect_obstack, "'--sysroot=", sizeof("'--sysroot=")-1);
++      obstack_grow (&collect_obstack, target_system_root,strlen(target_system_root));
++      obstack_grow (&collect_obstack, "'", 1);
++      first_time = FALSE;
++    }
++#endif
+   for (i = 0; (int) i < n_switches; i++)
+     {
+       const char *const *args;
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
new file mode 100644
index 0000000..a764bdd
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
@@ -0,0 +1,92 @@
+From 5670d4489f119d2da661734895ac0be99b606d1b Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:17:25 +0400
+Subject: [PATCH] Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}
+
+Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}, so that
+the source can be shared between gcc-cross-initial,
+gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+
+While compiling gcc-crosssdk-initial-x86_64 on some host, there is
+occasionally failure that test the existance of default.h doesn't
+work, the reason is tm_include_list='** defaults.h' rather than
+tm_include_list='** ./defaults.h'
+
+So we add the test condition for this situation.
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ gcc/Makefile.in  | 2 +-
+ gcc/configure    | 4 ++--
+ gcc/configure.ac | 4 ++--
+ gcc/mkconfig.sh  | 4 ++--
+ 4 files changed, 7 insertions(+), 7 deletions(-)
+
+diff --git a/gcc/Makefile.in b/gcc/Makefile.in
+index 543b477ff18..a67d2cc18d6 100644
+--- a/gcc/Makefile.in
++++ b/gcc/Makefile.in
+@@ -540,7 +540,7 @@ TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
+ TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
+ 
+ xmake_file=@xmake_file@
+-tmake_file=@tmake_file@
++tmake_file=@tmake_file@ ./t-oe
+ TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
+ TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
+ TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
+diff --git a/gcc/configure b/gcc/configure
+index 8de766a942c..b26e8fc7fee 100755
+--- a/gcc/configure
++++ b/gcc/configure
+@@ -12705,8 +12705,8 @@ for f in $tm_file; do
+        tm_include_list="${tm_include_list} $f"
+        ;;
+     defaults.h )
+-       tm_file_list="${tm_file_list} \$(srcdir)/$f"
+-       tm_include_list="${tm_include_list} $f"
++       tm_file_list="${tm_file_list} ./$f"
++       tm_include_list="${tm_include_list} ./$f"
+        ;;
+     * )
+        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
+diff --git a/gcc/configure.ac b/gcc/configure.ac
+index 8bfd6feb780..26fa46802c7 100644
+--- a/gcc/configure.ac
++++ b/gcc/configure.ac
+@@ -2138,8 +2138,8 @@ for f in $tm_file; do
+        tm_include_list="${tm_include_list} $f"
+        ;;
+     defaults.h )
+-       tm_file_list="${tm_file_list} \$(srcdir)/$f"
+-       tm_include_list="${tm_include_list} $f"
++       tm_file_list="${tm_file_list} ./$f"
++       tm_include_list="${tm_include_list} ./$f"
+        ;;
+     * )
+        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
+diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh
+index d2c677a4a42..d03852481cb 100644
+--- a/gcc/mkconfig.sh
++++ b/gcc/mkconfig.sh
+@@ -77,7 +77,7 @@ if [ -n "$HEADERS" ]; then
+     if [ $# -ge 1 ]; then
+ 	echo '#ifdef IN_GCC' >> ${output}T
+ 	for file in "$@"; do
+-	    if test x"$file" = x"defaults.h"; then
++	    if test x"$file" = x"./defaults.h" -o x"$file" = x"defaults.h"; then
+ 		postpone_defaults_h="yes"
+ 	    else
+ 		echo "# include \"$file\"" >> ${output}T
+@@ -106,7 +106,7 @@ esac
+ 
+ # If we postponed including defaults.h, add the #include now.
+ if test x"$postpone_defaults_h" = x"yes"; then
+-    echo "# include \"defaults.h\"" >> ${output}T
++    echo "# include \"./defaults.h\"" >> ${output}T
+ fi
+ 
+ # Add multiple inclusion protection guard, part two.
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
new file mode 100644
index 0000000..714db3b
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
@@ -0,0 +1,43 @@
+From f05062625e7a4751be723595a2f7a4b7fbeff311 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:20:01 +0400
+Subject: [PATCH] fortran cross-compile hack.
+
+* Fortran would have searched for arm-angstrom-gnueabi-gfortran but would have used
+used gfortan. For gcc_4.2.2.bb we want to use the gfortran compiler from our cross
+directory.
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Inappropriate [embedded specific]
+---
+ libgfortran/configure    | 2 +-
+ libgfortran/configure.ac | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/libgfortran/configure b/libgfortran/configure
+index b4cf854ddb3..e8e0ac3b1cf 100755
+--- a/libgfortran/configure
++++ b/libgfortran/configure
+@@ -13090,7 +13090,7 @@ esac
+ 
+ # We need gfortran to compile parts of the library
+ #AC_PROG_FC(gfortran)
+-FC="$GFORTRAN"
++#FC="$GFORTRAN"
+ ac_ext=${ac_fc_srcext-f}
+ ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5'
+ ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5'
+diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac
+index 711dc60ff78..3c9bbfbf47d 100644
+--- a/libgfortran/configure.ac
++++ b/libgfortran/configure.ac
+@@ -258,7 +258,7 @@ AC_SUBST(enable_static)
+ 
+ # We need gfortran to compile parts of the library
+ #AC_PROG_FC(gfortran)
+-FC="$GFORTRAN"
++#FC="$GFORTRAN"
+ AC_PROG_FC(gfortran)
+ 
+ # extra LD Flags which are required for targets
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
new file mode 100644
index 0000000..8ad6853
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
@@ -0,0 +1,51 @@
+From 1d76de7f1f5c99f1fa1a4b14aedad3d702e4e136 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:22:00 +0400
+Subject: [PATCH] cpp: honor sysroot.
+
+Currently, if the gcc toolchain is relocated and installed from sstate, then you try and compile
+preprocessed source (.i or .ii files), the compiler will try and access the builtin sysroot location
+rather than the --sysroot option specified on the commandline. If access to that directory is
+permission denied (unreadable), gcc will error.
+
+This happens when ccache is in use due to the fact it uses preprocessed source files.
+
+The fix below adds %I to the cpp-output spec macro so the default substitutions for -iprefix,
+-isystem, -isysroot happen and the correct sysroot is used.
+
+[YOCTO #2074]
+
+RP 2012/04/13
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+---
+ gcc/cp/lang-specs.h | 2 +-
+ gcc/gcc.c           | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h
+index 0ad4a33b93e..16c744f4f90 100644
+--- a/gcc/cp/lang-specs.h
++++ b/gcc/cp/lang-specs.h
+@@ -66,5 +66,5 @@ along with GCC; see the file COPYING3.  If not see
+   {".ii", "@c++-cpp-output", 0, 0, 0},
+   {"@c++-cpp-output",
+       "%{!E:%{!M:%{!MM:"
+-      "  cc1plus -fpreprocessed %i %(cc1_options) %2"
++      "  cc1plus -fpreprocessed %i %I %(cc1_options) %2"
+       "  %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
+diff --git a/gcc/gcc.c b/gcc/gcc.c
+index 48b0f9dde81..c87f603955f 100644
+--- a/gcc/gcc.c
++++ b/gcc/gcc.c
+@@ -1348,7 +1348,7 @@ static const struct compiler default_compilers[] =
+ 					   %W{o*:--output-pch=%*}}%V}}}}}}}", 0, 0, 0},
+   {".i", "@cpp-output", 0, 0, 0},
+   {"@cpp-output",
+-   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
++   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %I %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
+   {".s", "@assembler", 0, 0, 0},
+   {"@assembler",
+    "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
new file mode 100644
index 0000000..625e2d8
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
@@ -0,0 +1,54 @@
+From 4fad4433c96bc9d0d9d124f9674fb3389f6f426e Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:23:08 +0400
+Subject: [PATCH] MIPS64: Default to N64 ABI
+
+MIPS64 defaults to n32 ABI, this patch makes it
+so that it defaults to N64 ABI
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Inappropriate [OE config specific]
+---
+ gcc/config.gcc | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/gcc/config.gcc b/gcc/config.gcc
+index cf1a87e2efd..37c4221a39f 100644
+--- a/gcc/config.gcc
++++ b/gcc/config.gcc
+@@ -2511,29 +2511,29 @@ mips*-*-linux*)				# Linux MIPS, either endian.
+ 			default_mips_arch=mips32
+ 			;;
+ 		mips64el-st-linux-gnu)
+-			default_mips_abi=n32
++			default_mips_abi=64
+ 			tm_file="${tm_file} mips/st.h"
+ 			tmake_file="${tmake_file} mips/t-st"
+ 			enable_mips_multilibs="yes"
+ 			;;
+ 		mips64octeon*-*-linux*)
+-			default_mips_abi=n32
++			default_mips_abi=64
+ 			tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
+ 			target_cpu_default=MASK_SOFT_FLOAT_ABI
+ 			enable_mips_multilibs="yes"
+ 			;;
+ 		mipsisa64r6*-*-linux*)
+-			default_mips_abi=n32
++			default_mips_abi=64
+ 			default_mips_arch=mips64r6
+ 			enable_mips_multilibs="yes"
+ 			;;
+ 		mipsisa64r2*-*-linux*)
+-			default_mips_abi=n32
++			default_mips_abi=64
+ 			default_mips_arch=mips64r2
+ 			enable_mips_multilibs="yes"
+ 			;;
+ 		mips64*-*-linux* | mipsisa64*-*-linux*)
+-			default_mips_abi=n32
++			default_mips_abi=64
+ 			enable_mips_multilibs="yes"
+ 			;;
+ 	esac
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
new file mode 100644
index 0000000..e357976
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
@@ -0,0 +1,243 @@
+From 8fc016a53c22c19feccbfa13ebdf19090dc67058 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:24:50 +0400
+Subject: [PATCH] Define GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
+ relative to SYSTEMLIBS_DIR
+
+This patch defines GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
+relative to SYSTEMLIBS_DIR which can be set in generated headers
+This breaks the assumption of hardcoded multilib in gcc
+Change is only for the supported architectures in OE including
+SH, sparc, alpha for possible future support (if any)
+
+Removes the do_headerfix task in metadata
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Inappropriate [OE configuration]
+---
+ gcc/config/alpha/linux-elf.h |  4 ++--
+ gcc/config/arm/linux-eabi.h  |  4 ++--
+ gcc/config/arm/linux-elf.h   |  2 +-
+ gcc/config/i386/linux.h      |  2 +-
+ gcc/config/i386/linux64.h    |  6 +++---
+ gcc/config/linux.h           |  8 ++++----
+ gcc/config/mips/linux.h      | 12 ++++++------
+ gcc/config/riscv/linux.h     |  2 +-
+ gcc/config/rs6000/linux64.h  | 15 +++++----------
+ gcc/config/sh/linux.h        |  2 +-
+ gcc/config/sparc/linux.h     |  2 +-
+ gcc/config/sparc/linux64.h   |  4 ++--
+ 12 files changed, 29 insertions(+), 34 deletions(-)
+
+diff --git a/gcc/config/alpha/linux-elf.h b/gcc/config/alpha/linux-elf.h
+index e25fcac3c59..01aca0c6542 100644
+--- a/gcc/config/alpha/linux-elf.h
++++ b/gcc/config/alpha/linux-elf.h
+@@ -23,8 +23,8 @@ along with GCC; see the file COPYING3.  If not see
+ #define EXTRA_SPECS \
+ { "elf_dynamic_linker", ELF_DYNAMIC_LINKER },
+ 
+-#define GLIBC_DYNAMIC_LINKER	"/lib/ld-linux.so.2"
+-#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
++#define GLIBC_DYNAMIC_LINKER	SYSTEMLIBS_DIR "ld-linux.so.2"
++#define UCLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-uClibc.so.0"
+ #if DEFAULT_LIBC == LIBC_UCLIBC
+ #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
+ #elif DEFAULT_LIBC == LIBC_GLIBC
+diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
+index 5bdcfa0c5d3..0c0332f317f 100644
+--- a/gcc/config/arm/linux-eabi.h
++++ b/gcc/config/arm/linux-eabi.h
+@@ -65,8 +65,8 @@
+    GLIBC_DYNAMIC_LINKER_DEFAULT and TARGET_DEFAULT_FLOAT_ABI.  */
+ 
+ #undef  GLIBC_DYNAMIC_LINKER
+-#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "/lib/ld-linux.so.3"
+-#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT "/lib/ld-linux-armhf.so.3"
++#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT SYSTEMLIBS_DIR "ld-linux.so.3"
++#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT SYSTEMLIBS_DIR "ld-linux-armhf.so.3"
+ #define GLIBC_DYNAMIC_LINKER_DEFAULT GLIBC_DYNAMIC_LINKER_SOFT_FLOAT
+ 
+ #define GLIBC_DYNAMIC_LINKER \
+diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h
+index 0ec3aa53189..abfa9566d74 100644
+--- a/gcc/config/arm/linux-elf.h
++++ b/gcc/config/arm/linux-elf.h
+@@ -60,7 +60,7 @@
+ 
+ #define LIBGCC_SPEC "%{mfloat-abi=soft*:-lfloat} -lgcc"
+ 
+-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
+ 
+ #define LINUX_TARGET_LINK_SPEC  "%{h*} \
+    %{static:-Bstatic} \
+diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h
+index 9f823f125ed..e0390b7d5e3 100644
+--- a/gcc/config/i386/linux.h
++++ b/gcc/config/i386/linux.h
+@@ -20,7 +20,7 @@ along with GCC; see the file COPYING3.  If not see
+ <http://www.gnu.org/licenses/>.  */
+ 
+ #define GNU_USER_LINK_EMULATION "elf_i386"
+-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
+ 
+ #undef MUSL_DYNAMIC_LINKER
+ #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-i386.so.1"
+diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h
+index 6cb68d1ccfa..7de09ec857c 100644
+--- a/gcc/config/i386/linux64.h
++++ b/gcc/config/i386/linux64.h
+@@ -27,9 +27,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
+ #define GNU_USER_LINK_EMULATION64 "elf_x86_64"
+ #define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64"
+ 
+-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
+-#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
+-#define GLIBC_DYNAMIC_LINKERX32 "/libx32/ld-linux-x32.so.2"
++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
++#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux-x86-64.so.2"
++#define GLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ld-linux-x32.so.2"
+ 
+ #undef MUSL_DYNAMIC_LINKER32
+ #define MUSL_DYNAMIC_LINKER32 "/lib/ld-musl-i386.so.1"
+diff --git a/gcc/config/linux.h b/gcc/config/linux.h
+index 95654bcdb5a..0c1a8118a26 100644
+--- a/gcc/config/linux.h
++++ b/gcc/config/linux.h
+@@ -94,10 +94,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
+    GLIBC_DYNAMIC_LINKER must be defined for each target using them, or
+    GLIBC_DYNAMIC_LINKER32 and GLIBC_DYNAMIC_LINKER64 for targets
+    supporting both 32-bit and 64-bit compilation.  */
+-#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
+-#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
+-#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
+-#define UCLIBC_DYNAMIC_LINKERX32 "/lib/ldx32-uClibc.so.0"
++#define UCLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-uClibc.so.0"
++#define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
++#define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
++#define UCLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ldx32-uClibc.so.0"
+ #define BIONIC_DYNAMIC_LINKER "/system/bin/linker"
+ #define BIONIC_DYNAMIC_LINKER32 "/system/bin/linker"
+ #define BIONIC_DYNAMIC_LINKER64 "/system/bin/linker64"
+diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h
+index 54446e58e5f..4786ee304c1 100644
+--- a/gcc/config/mips/linux.h
++++ b/gcc/config/mips/linux.h
+@@ -22,20 +22,20 @@ along with GCC; see the file COPYING3.  If not see
+ #define GNU_USER_LINK_EMULATIONN32 "elf32%{EB:b}%{EL:l}tsmipn32"
+ 
+ #define GLIBC_DYNAMIC_LINKER32 \
+-  "%{mnan=2008:/lib/ld-linux-mipsn8.so.1;:/lib/ld.so.1}"
++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
+ #define GLIBC_DYNAMIC_LINKER64 \
+-  "%{mnan=2008:/lib64/ld-linux-mipsn8.so.1;:/lib64/ld.so.1}"
++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
+ #define GLIBC_DYNAMIC_LINKERN32 \
+-  "%{mnan=2008:/lib32/ld-linux-mipsn8.so.1;:/lib32/ld.so.1}"
++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
+ 
+ #undef UCLIBC_DYNAMIC_LINKER32
+ #define UCLIBC_DYNAMIC_LINKER32 \
+-  "%{mnan=2008:/lib/ld-uClibc-mipsn8.so.0;:/lib/ld-uClibc.so.0}"
++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
+ #undef UCLIBC_DYNAMIC_LINKER64
+ #define UCLIBC_DYNAMIC_LINKER64 \
+-  "%{mnan=2008:/lib/ld64-uClibc-mipsn8.so.0;:/lib/ld64-uClibc.so.0}"
++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld64-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld64-uClibc.so.0}"
+ #define UCLIBC_DYNAMIC_LINKERN32 \
+-  "%{mnan=2008:/lib32/ld-uClibc-mipsn8.so.0;:/lib32/ld-uClibc.so.0}"
++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
+ 
+ #undef MUSL_DYNAMIC_LINKER32
+ #define MUSL_DYNAMIC_LINKER32 \
+diff --git a/gcc/config/riscv/linux.h b/gcc/config/riscv/linux.h
+index 4afef7c228c..01997330741 100644
+--- a/gcc/config/riscv/linux.h
++++ b/gcc/config/riscv/linux.h
+@@ -22,7 +22,7 @@ along with GCC; see the file COPYING3.  If not see
+     GNU_USER_TARGET_OS_CPP_BUILTINS();				\
+   } while (0)
+ 
+-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
+ 
+ #define MUSL_ABI_SUFFIX \
+   "%{mabi=ilp32:-sf}" \
+diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
+index 34776c8421e..967c1c43c63 100644
+--- a/gcc/config/rs6000/linux64.h
++++ b/gcc/config/rs6000/linux64.h
+@@ -419,24 +419,19 @@ extern int dot_symbols;
+ #undef	LINK_OS_DEFAULT_SPEC
+ #define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
+ 
+-#define GLIBC_DYNAMIC_LINKER32 "%(dynamic_linker_prefix)/lib/ld.so.1"
+-
++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld.so.1"
+ #ifdef LINUX64_DEFAULT_ABI_ELFv2
+-#define GLIBC_DYNAMIC_LINKER64 \
+-"%{mabi=elfv1:%(dynamic_linker_prefix)/lib64/ld64.so.1;" \
+-":%(dynamic_linker_prefix)/lib64/ld64.so.2}"
++#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv1:" SYSTEMLIBS_DIR "ld64.so.1;:" SYSTEMLIBS_DIR "ld64.so.2}"
+ #else
+-#define GLIBC_DYNAMIC_LINKER64 \
+-"%{mabi=elfv2:%(dynamic_linker_prefix)/lib64/ld64.so.2;" \
+-":%(dynamic_linker_prefix)/lib64/ld64.so.1}"
++#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv2:" SYSTEMLIBS_DIR "ld64.so.2;:" SYSTEMLIBS_DIR "ld64.so.1}"
+ #endif
+ 
+ #undef MUSL_DYNAMIC_LINKER32
+ #define MUSL_DYNAMIC_LINKER32 \
+-  "/lib/ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
++  SYSTEMLIBS_DIR "ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
+ #undef MUSL_DYNAMIC_LINKER64
+ #define MUSL_DYNAMIC_LINKER64 \
+-  "/lib/ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
++  SYSTEMLIBS_DIR "ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
+ 
+ #undef  DEFAULT_ASM_ENDIAN
+ #if (TARGET_DEFAULT & MASK_LITTLE_ENDIAN)
+diff --git a/gcc/config/sh/linux.h b/gcc/config/sh/linux.h
+index c1d0441d488..81373eb8336 100644
+--- a/gcc/config/sh/linux.h
++++ b/gcc/config/sh/linux.h
+@@ -64,7 +64,7 @@ along with GCC; see the file COPYING3.  If not see
+   "/lib/ld-musl-sh" MUSL_DYNAMIC_LINKER_E MUSL_DYNAMIC_LINKER_FP \
+   "%{mfdpic:-fdpic}.so.1"
+ 
+-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
+ 
+ #undef SUBTARGET_LINK_EMUL_SUFFIX
+ #define SUBTARGET_LINK_EMUL_SUFFIX "%{mfdpic:_fd;:_linux}"
+diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h
+index 81201e67a2f..8b6fc577594 100644
+--- a/gcc/config/sparc/linux.h
++++ b/gcc/config/sparc/linux.h
+@@ -84,7 +84,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv);
+    When the -shared link option is used a final link is not being
+    done.  */
+ 
+-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
+ 
+ #undef  LINK_SPEC
+ #define LINK_SPEC "-m elf32_sparc %{shared:-shared} \
+diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h
+index a1a0efd8f28..85d1084afc2 100644
+--- a/gcc/config/sparc/linux64.h
++++ b/gcc/config/sparc/linux64.h
+@@ -84,8 +84,8 @@ along with GCC; see the file COPYING3.  If not see
+    When the -shared link option is used a final link is not being
+    done.  */
+ 
+-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
+-#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux.so.2"
++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
++#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux.so.2"
+ 
+ #ifdef SPARC_BI_ARCH
+ 
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
new file mode 100644
index 0000000..88e1715
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
@@ -0,0 +1,41 @@
+From a22d1264049d29b90663cf5667049ae6f9b7a5ce Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:26:37 +0400
+Subject: [PATCH] gcc: Fix argument list too long error.
+
+There would be an "Argument list too long" error when the
+build directory is longer than 200, this is caused by:
+
+headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`
+
+The PLUGIN_HEADERS is too long before sort, so the "echo" can't handle
+it, use the $(sort list) of GNU make which can handle the too long list
+would fix the problem, the header would be short enough after sorted.
+The "tr ' ' '\012'" was used for translating the space to "\n", the
+$(sort list) doesn't need this.
+
+Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+RP: gcc then added *.h and *.def additions to this list, breaking the original
+fix. Add the sort to the original gcc code, leaving the tr+sort to fix the original
+issue but include the new files too as reported by Zhuang <qiuguang.zqg@alibaba-inc.com>
+
+Upstream-Status: Pending
+---
+ gcc/Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/gcc/Makefile.in b/gcc/Makefile.in
+index a67d2cc18d6..480c9366418 100644
+--- a/gcc/Makefile.in
++++ b/gcc/Makefile.in
+@@ -3606,7 +3606,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
+ # We keep the directory structure for files in config or c-family and .def
+ # files. All other files are flattened to a single directory.
+ 	$(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
+-	headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
++	headers=`echo $(sort $(PLUGIN_HEADERS)) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
+ 	srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
+ 	for file in $$headers; do \
+ 	  if [ -f $$file ] ; then \
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
new file mode 100644
index 0000000..207cdb5
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
@@ -0,0 +1,110 @@
+From fa47586935a18ecfc2ad5586802e326e21741b7b Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:28:10 +0400
+Subject: [PATCH] Disable sdt.
+
+We don't list dtrace in DEPENDS so we shouldn't be depending on this header.
+It may or may not exist from preivous builds though. To be determinstic, disable
+sdt.h usage always. This avoids build failures if the header is removed after configure
+but before libgcc is compiled for example.
+
+RP 2012/8/7
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Disable sdt for libstdc++-v3.
+
+Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
+
+Upstream-Status: Inappropriate [hack]
+---
+ gcc/configure             | 12 ++++++------
+ gcc/configure.ac          | 18 +++++++++---------
+ libstdc++-v3/configure    |  6 +++---
+ libstdc++-v3/configure.ac |  2 +-
+ 4 files changed, 19 insertions(+), 19 deletions(-)
+
+diff --git a/gcc/configure b/gcc/configure
+index b26e8fc7fee..6080f86145e 100755
+--- a/gcc/configure
++++ b/gcc/configure
+@@ -29789,12 +29789,12 @@ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking sys/sdt.h in the target C library" >&5
+ $as_echo_n "checking sys/sdt.h in the target C library... " >&6; }
+ have_sys_sdt_h=no
+-if test -f $target_header_dir/sys/sdt.h; then
+-  have_sys_sdt_h=yes
+-
+-$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
+-
+-fi
++#if test -f $target_header_dir/sys/sdt.h; then
++#  have_sys_sdt_h=yes
++#
++#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
++#
++#fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_sys_sdt_h" >&5
+ $as_echo "$have_sys_sdt_h" >&6; }
+ 
+diff --git a/gcc/configure.ac b/gcc/configure.ac
+index 26fa46802c7..42be5252778 100644
+--- a/gcc/configure.ac
++++ b/gcc/configure.ac
+@@ -6190,15 +6190,15 @@ fi
+ AC_SUBST([enable_default_ssp])
+ 
+ # Test for <sys/sdt.h> on the target.
+-GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
+-AC_MSG_CHECKING(sys/sdt.h in the target C library)
+-have_sys_sdt_h=no
+-if test -f $target_header_dir/sys/sdt.h; then
+-  have_sys_sdt_h=yes
+-  AC_DEFINE(HAVE_SYS_SDT_H, 1,
+-            [Define if your target C library provides sys/sdt.h])
+-fi
+-AC_MSG_RESULT($have_sys_sdt_h)
++#GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
++#AC_MSG_CHECKING(sys/sdt.h in the target C library)
++#have_sys_sdt_h=no
++#if test -f $target_header_dir/sys/sdt.h; then
++#  have_sys_sdt_h=yes
++#  AC_DEFINE(HAVE_SYS_SDT_H, 1,
++#            [Define if your target C library provides sys/sdt.h])
++#fi
++#AC_MSG_RESULT($have_sys_sdt_h)
+ 
+ # Check if TFmode long double should be used by default or not.
+ # Some glibc targets used DFmode long double, but with glibc 2.4
+diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
+index 9f9c5a2419a..71ed13b815b 100755
+--- a/libstdc++-v3/configure
++++ b/libstdc++-v3/configure
+@@ -22615,11 +22615,11 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+ 
+-  if test $glibcxx_cv_sys_sdt_h = yes; then
++#  if test $glibcxx_cv_sys_sdt_h = yes; then
+ 
+-$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
++#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
+ 
+-  fi
++#  fi
+   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_sdt_h" >&5
+ $as_echo "$glibcxx_cv_sys_sdt_h" >&6; }
+ 
+diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac
+index 699e55fd829..5c7a7bda439 100644
+--- a/libstdc++-v3/configure.ac
++++ b/libstdc++-v3/configure.ac
+@@ -241,7 +241,7 @@ GLIBCXX_CHECK_SC_NPROCESSORS_ONLN
+ GLIBCXX_CHECK_SC_NPROC_ONLN
+ GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP
+ GLIBCXX_CHECK_SYSCTL_HW_NCPU
+-GLIBCXX_CHECK_SDT_H
++#GLIBCXX_CHECK_SDT_H
+ 
+ # Check for available headers.
+ AC_CHECK_HEADERS([endian.h execinfo.h float.h fp.h ieeefp.h inttypes.h \
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
new file mode 100644
index 0000000..f4e70c3
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
@@ -0,0 +1,39 @@
+From 6ecd478881468934444ff85611fd43f7033b1e81 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:29:11 +0400
+Subject: [PATCH] libtool
+
+libstdc++ from gcc-runtime gets created with -rpath=/usr/lib/../lib for qemux86-64
+when running on am x86_64 build host.
+
+This patch stops this speading to libdir in the libstdc++.la file within libtool.
+Arguably, it shouldn't be passing this into libtool in the first place but
+for now this resolves the nastiest problems this causes.
+
+func_normal_abspath would resolve an empty path to `pwd` so we need
+to filter the zero case.
+
+RP 2012/8/24
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+---
+ ltmain.sh | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/ltmain.sh b/ltmain.sh
+index 70990740b6c..ee938056bef 100644
+--- a/ltmain.sh
++++ b/ltmain.sh
+@@ -6359,6 +6359,10 @@ func_mode_link ()
+ 	func_warning "ignoring multiple \`-rpath's for a libtool library"
+ 
+       install_libdir="$1"
++      if test -n "$install_libdir"; then
++	func_normal_abspath "$install_libdir"
++	install_libdir=$func_normal_abspath_result
++      fi
+ 
+       oldlibs=
+       if test -z "$rpath"; then
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
new file mode 100644
index 0000000..bc2674a
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
@@ -0,0 +1,40 @@
+From de4427fa49c07dc651ee6ceaf5c5078700ca3b08 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:30:32 +0400
+Subject: [PATCH] gcc: armv4: pass fix-v4bx to linker to support EABI.
+
+The LINK_SPEC for linux gets overwritten by linux-eabi.h which
+means the value of TARGET_FIX_V4BX_SPEC gets lost and as a result
+the option is not passed to linker when chosing march=armv4
+This patch redefines this in linux-eabi.h and reinserts it
+for eabi defaulting toolchains.
+
+We might want to send it upstream.
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Upstream-Status: Pending
+---
+ gcc/config/arm/linux-eabi.h | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
+index 0c0332f317f..7b3769e8459 100644
+--- a/gcc/config/arm/linux-eabi.h
++++ b/gcc/config/arm/linux-eabi.h
+@@ -91,10 +91,14 @@
+ #define MUSL_DYNAMIC_LINKER \
+   "/lib/ld-musl-arm" MUSL_DYNAMIC_LINKER_E "%{mfloat-abi=hard:hf}%{mfdpic:-fdpic}.so.1"
+ 
++/* For armv4 we pass --fix-v4bx to linker to support EABI */
++#undef TARGET_FIX_V4BX_SPEC
++#define TARGET_FIX_V4BX_SPEC "%{mcpu=arm8|mcpu=arm810|mcpu=strongarm*|march=armv4: --fix-v4bx}"
++
+ /* At this point, bpabi.h will have clobbered LINK_SPEC.  We want to
+    use the GNU/Linux version, not the generic BPABI version.  */
+ #undef  LINK_SPEC
+-#define LINK_SPEC EABI_LINK_SPEC					\
++#define LINK_SPEC TARGET_FIX_V4BX_SPEC EABI_LINK_SPEC			\
+   LINUX_OR_ANDROID_LD (LINUX_TARGET_LINK_SPEC,				\
+ 		       LINUX_TARGET_LINK_SPEC " " ANDROID_LINK_SPEC)
+ 
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
new file mode 100644
index 0000000..1dc4bb8
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
@@ -0,0 +1,99 @@
+From 6b363c2c1c089ee900efa6013aefba1003840a37 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 29 Mar 2013 09:33:04 +0400
+Subject: [PATCH] Use the multilib config files from ${B} instead of using the
+ ones from ${S}
+
+Use the multilib config files from ${B} instead of using the ones from ${S}
+so that the source can be shared between gcc-cross-initial,
+gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
+
+Upstream-Status: Inappropriate [configuration]
+---
+ gcc/configure    | 22 ++++++++++++++++++----
+ gcc/configure.ac | 22 ++++++++++++++++++----
+ 2 files changed, 36 insertions(+), 8 deletions(-)
+
+diff --git a/gcc/configure b/gcc/configure
+index 6080f86145e..825a9652329 100755
+--- a/gcc/configure
++++ b/gcc/configure
+@@ -12685,10 +12685,20 @@ done
+ tmake_file_=
+ for f in ${tmake_file}
+ do
+-	if test -f ${srcdir}/config/$f
+-	then
+-		tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
+-	fi
++  case $f in
++    */t-linux64 )
++       if test -f ./config/$f
++       then
++         tmake_file_="${tmake_file_} ./config/$f"
++       fi
++       ;;
++    * )
++       if test -f ${srcdir}/config/$f
++       then
++         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
++       fi
++       ;;
++  esac
+ done
+ tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
+ 
+@@ -12699,6 +12709,10 @@ tm_file_list="options.h"
+ tm_include_list="options.h insn-constants.h"
+ for f in $tm_file; do
+   case $f in
++    */linux64.h )
++       tm_file_list="${tm_file_list} ./config/$f"
++       tm_include_list="${tm_include_list} ./config/$f"
++       ;;
+     ./* )
+        f=`echo $f | sed 's/^..//'`
+        tm_file_list="${tm_file_list} $f"
+diff --git a/gcc/configure.ac b/gcc/configure.ac
+index 42be5252778..6099eb3251f 100644
+--- a/gcc/configure.ac
++++ b/gcc/configure.ac
+@@ -2118,10 +2118,20 @@ done
+ tmake_file_=
+ for f in ${tmake_file}
+ do
+-	if test -f ${srcdir}/config/$f
+-	then
+-		tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
+-	fi
++  case $f in
++    */t-linux64 )
++       if test -f ./config/$f
++       then
++         tmake_file_="${tmake_file_} ./config/$f"
++       fi
++       ;;
++    * )
++       if test -f ${srcdir}/config/$f
++       then
++         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
++       fi
++       ;;
++  esac
+ done
+ tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
+ 
+@@ -2132,6 +2142,10 @@ tm_file_list="options.h"
+ tm_include_list="options.h insn-constants.h"
+ for f in $tm_file; do
+   case $f in
++    */linux64.h )
++       tm_file_list="${tm_file_list} ./config/$f"
++       tm_include_list="${tm_include_list} ./config/$f"
++       ;;
+     ./* )
+        f=`echo $f | sed 's/^..//'`
+        tm_file_list="${tm_file_list} $f"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
new file mode 100644
index 0000000..05f1284
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
@@ -0,0 +1,28 @@
+From 08752c2f1d21553301bee5757c453c6a36cbe03c Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 20 Feb 2015 09:39:38 +0000
+Subject: [PATCH] Avoid using libdir from .la which usually points to a host
+ path
+
+Upstream-Status: Inappropriate [embedded specific]
+
+Signed-off-by: Jonathan Liu <net147@gmail.com>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ ltmain.sh | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/ltmain.sh b/ltmain.sh
+index ee938056bef..9ebc7e3d1e0 100644
+--- a/ltmain.sh
++++ b/ltmain.sh
+@@ -5628,6 +5628,9 @@ func_mode_link ()
+ 	    absdir="$abs_ladir"
+ 	    libdir="$abs_ladir"
+ 	  else
++	    # Instead of using libdir from .la which usually points to a host path,
++	    # use the path the .la is contained in.
++	    libdir="$abs_ladir"
+ 	    dir="$libdir"
+ 	    absdir="$libdir"
+ 	  fi
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
new file mode 100644
index 0000000..886a122
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
@@ -0,0 +1,50 @@
+From 5c3d66378c7ff60ca11a875aa4aa6f8a8529d43a Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 20 Feb 2015 09:40:59 +0000
+Subject: [PATCH] export CPP
+
+The OE environment sets and exports CPP as being the target gcc. When
+building gcc-cross-canadian for a mingw targetted sdk, the following can be found
+in build.x86_64-pokysdk-mingw32.i586-poky-linux/build-x86_64-linux/libiberty/config.log:
+
+configure:3641: checking for _FILE_OFFSET_BITS value needed for large files
+configure:3666: gcc  -c -isystem/media/build1/poky/build/tmp/sysroots/x86_64-linux/usr/include -O2 -pipe  conftest.c >&5
+configure:3666: $? = 0
+configure:3698: result: no
+configure:3786: checking how to run the C preprocessor
+configure:3856: result: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32
+configure:3876: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32 conftest.c
+configure:3876: $? = 0
+
+Note this is a *build* target (in build-x86_64-linux) so it should be
+using the host "gcc", not x86_64-pokysdk-mingw32-gcc. Since the mingw32
+headers are very different, using the wrong cpp is a real problem. It is leaking
+into configure through the CPP variable. Ultimately this leads to build
+failures related to not being able to include a process.h file for pem-unix.c.
+
+The fix is to ensure we export a sane CPP value into the build
+environment when using build targets. We could define a CPP_FOR_BUILD value which may be
+the version which needs to be upstreamed but for now, this fix is good enough to
+avoid the problem.
+
+RP 22/08/2013
+
+Upstream-Status: Pending
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ Makefile.in | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/Makefile.in b/Makefile.in
+index 36e369df6e7..c717903bb13 100644
+--- a/Makefile.in
++++ b/Makefile.in
+@@ -149,6 +149,7 @@ BUILD_EXPORTS = \
+ 	AR="$(AR_FOR_BUILD)"; export AR; \
+ 	AS="$(AS_FOR_BUILD)"; export AS; \
+ 	CC="$(CC_FOR_BUILD)"; export CC; \
++	CPP="$(CC_FOR_BUILD) -E"; export CPP; \
+ 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
+ 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
+ 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
new file mode 100644
index 0000000..2797b2c
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
@@ -0,0 +1,57 @@
+From 378b752c5d9a3dba4e58cdadf8b4b4f34ea99a76 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 20 Feb 2015 10:25:11 +0000
+Subject: [PATCH] Ensure target gcc headers can be included
+
+There are a few headers installed as part of the OpenEmbedded
+gcc-runtime target (omp.h, ssp/*.h). Being installed from a recipe
+built for the target architecture, these are within the target
+sysroot and not cross/nativesdk; thus they weren't able to be
+found by gcc with the existing search paths. Add support for
+picking up these headers under the sysroot supplied on the gcc
+command line in order to resolve this.
+
+Upstream-Status: Pending
+
+Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/Makefile.in  | 2 ++
+ gcc/cppdefault.c | 4 ++++
+ 2 files changed, 6 insertions(+)
+
+diff --git a/gcc/Makefile.in b/gcc/Makefile.in
+index 480c9366418..011c7ac2db6 100644
+--- a/gcc/Makefile.in
++++ b/gcc/Makefile.in
+@@ -618,6 +618,7 @@ libexecdir = @libexecdir@
+ 
+ # Directory in which the compiler finds libraries etc.
+ libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
++libsubdir_target = $(target_noncanonical)/$(version)
+ # Directory in which the compiler finds executables
+ libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
+ # Directory in which all plugin resources are installed
+@@ -2946,6 +2947,7 @@ CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\"
+ 
+ PREPROCESSOR_DEFINES = \
+   -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
++  -DGCC_INCLUDE_SUBDIR_TARGET=\"$(libsubdir_target)/include\" \
+   -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
+   -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
+   -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \
+diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
+index af38cc494ea..2f43b88a0c3 100644
+--- a/gcc/cppdefault.c
++++ b/gcc/cppdefault.c
+@@ -59,6 +59,10 @@ const struct default_include cpp_include_defaults[]
+     /* This is the dir for gcc's private headers.  */
+     { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
+ #endif
++#ifdef GCC_INCLUDE_SUBDIR_TARGET
++    /* This is the dir for gcc's private headers under the specified sysroot.  */
++    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
++#endif
+ #ifdef LOCAL_INCLUDE_DIR
+     /* /usr/local/include comes before the fixincluded header files.  */
+     { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
new file mode 100644
index 0000000..c3baf8b
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
@@ -0,0 +1,35 @@
+From 870e805d705d99d9b9d7dbd09727f9c1d2ad9c1d Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 3 Mar 2015 08:21:19 +0000
+Subject: [PATCH] Don't search host directory during "relink" if $inst_prefix
+ is provided
+
+http://lists.gnu.org/archive/html/libtool-patches/2011-01/msg00026.html
+
+Upstream-Status: Submitted
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ ltmain.sh | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/ltmain.sh b/ltmain.sh
+index 9ebc7e3d1e0..7ea79fa8be6 100644
+--- a/ltmain.sh
++++ b/ltmain.sh
+@@ -6004,12 +6004,13 @@ func_mode_link ()
+ 	      fi
+ 	    else
+ 	      # We cannot seem to hardcode it, guess we'll fake it.
++	      # Default if $libdir is not relative to the prefix:
+ 	      add_dir="-L$libdir"
+-	      # Try looking first in the location we're being installed to.
++
+ 	      if test -n "$inst_prefix_dir"; then
+ 		case $libdir in
+ 		  [\\/]*)
+-		    add_dir="$add_dir -L$inst_prefix_dir$libdir"
++		    add_dir="-L$inst_prefix_dir$libdir"
+ 		    ;;
+ 		esac
+ 	      fi
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
new file mode 100644
index 0000000..abee486
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
@@ -0,0 +1,26 @@
+From aba42de763a619355471efd1573561b0cbf51162 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 28 Apr 2015 23:15:27 -0700
+Subject: [PATCH] Use SYSTEMLIBS_DIR replacement instead of hardcoding
+ base_libdir
+
+Upstream-Status: Pending
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/config/aarch64/aarch64-linux.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
+index e587e2e9ad6..ddc62895693 100644
+--- a/gcc/config/aarch64/aarch64-linux.h
++++ b/gcc/config/aarch64/aarch64-linux.h
+@@ -21,7 +21,7 @@
+ #ifndef GCC_AARCH64_LINUX_H
+ #define GCC_AARCH64_LINUX_H
+ 
+-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
++#define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
+ 
+ #undef MUSL_DYNAMIC_LINKER
+ #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
new file mode 100644
index 0000000..c55b66d
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
@@ -0,0 +1,25 @@
+From d63820a78d92f302410358293546f01c7ad17bd8 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 28 Apr 2015 23:18:39 -0700
+Subject: [PATCH] aarch64: Add support for musl ldso
+
+Upstream-Status: Pending
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/config/aarch64/aarch64-linux.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
+index ddc62895693..b301825313a 100644
+--- a/gcc/config/aarch64/aarch64-linux.h
++++ b/gcc/config/aarch64/aarch64-linux.h
+@@ -24,7 +24,7 @@
+ #define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
+ 
+ #undef MUSL_DYNAMIC_LINKER
+-#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
++#define MUSL_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
+ 
+ #undef  ASAN_CC1_SPEC
+ #define ASAN_CC1_SPEC "%{%:sanitize(address):-funwind-tables}"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
new file mode 100644
index 0000000..80c4d22
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
@@ -0,0 +1,51 @@
+From 3474e16ad4ea8cf4e0e330568e3bc9039e723dce Mon Sep 17 00:00:00 2001
+From: Robert Yang <liezhi.yang@windriver.com>
+Date: Sun, 5 Jul 2015 20:25:18 -0700
+Subject: [PATCH] libcc1: fix libcc1's install path and rpath
+
+* Install libcc1.so and libcc1plugin.so into
+  $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version), as what we
+  had done to lto-plugin.
+* Fix bad RPATH iussue:
+  gcc-5.2.0: package gcc-plugins contains bad RPATH /patht/to/tmp/sysroots/qemux86-64/usr/lib64/../lib64 in file
+ /path/to/gcc/5.2.0-r0/packages-split/gcc-plugins/usr/lib64/gcc/x86_64-poky-linux/5.2.0/plugin/libcc1plugin.so.0.0.0
+ [rpaths]
+
+Upstream-Status: Inappropriate [OE configuration]
+
+Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
+---
+ libcc1/Makefile.am | 4 ++--
+ libcc1/Makefile.in | 4 ++--
+ 2 files changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am
+index c005b0dad4a..ec31d35b7b9 100644
+--- a/libcc1/Makefile.am
++++ b/libcc1/Makefile.am
+@@ -37,8 +37,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
+ 	    $(Wc)$(libiberty_normal)))
+ libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
+ 
+-plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
+-cc1libdir = $(libdir)/$(libsuffix)
++cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
++plugindir = $(cc1libdir)
+ 
+ if ENABLE_PLUGIN
+ plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
+diff --git a/libcc1/Makefile.in b/libcc1/Makefile.in
+index 7104b649026..2103c477468 100644
+--- a/libcc1/Makefile.in
++++ b/libcc1/Makefile.in
+@@ -393,8 +393,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
+ 	    $(Wc)$(libiberty_normal)))
+ 
+ libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
+-plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
+-cc1libdir = $(libdir)/$(libsuffix)
++cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
++plugindir = $(cc1libdir)
+ @ENABLE_PLUGIN_TRUE@plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
+ @ENABLE_PLUGIN_TRUE@cc1lib_LTLIBRARIES = libcc1.la
+ shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
new file mode 100644
index 0000000..dc3e6da
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
@@ -0,0 +1,349 @@
+From 702daf2e9cb97337e0e594fcd435b1b61a917d14 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Mon, 7 Dec 2015 23:39:54 +0000
+Subject: [PATCH] handle sysroot support for nativesdk-gcc
+
+Being able to build a nativesdk gcc is useful, particularly in cases
+where the host compiler may be of an incompatible version (or a 32
+bit compiler is needed).
+
+Sadly, building nativesdk-gcc is not straight forward. We install
+nativesdk-gcc into a relocatable location and this means that its
+library locations can change. "Normal" sysroot support doesn't help
+in this case since the values of paths like "libdir" change, not just
+base root directory of the system.
+
+In order to handle this we do two things:
+
+a) Add %r into spec file markup which can be used for injected paths
+   such as SYSTEMLIBS_DIR (see gcc_multilib_setup()).
+b) Add other paths which need relocation into a .gccrelocprefix section
+   which the relocation code will notice and adjust automatically.
+
+Upstream-Status: Inappropriate
+RP 2015/7/28
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+
+Added PREFIXVAR and EXEC_PREFIXVAR to support runtime relocation.  Without
+these as part of the gccrelocprefix the system can't do runtime relocation
+if the executable is moved.  (These paths were missed in the original
+implementation.)
+
+Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
+---
+ gcc/c-family/c-opts.c |  4 +--
+ gcc/cppdefault.c      | 63 ++++++++++++++++++++++++++-----------------
+ gcc/cppdefault.h      | 13 ++++-----
+ gcc/gcc.c             | 20 +++++++++-----
+ gcc/incpath.c         | 12 ++++-----
+ gcc/prefix.c          |  6 +++--
+ 6 files changed, 70 insertions(+), 48 deletions(-)
+
+diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c
+index 58ba0948e79..806bbcfb7a5 100644
+--- a/gcc/c-family/c-opts.c
++++ b/gcc/c-family/c-opts.c
+@@ -1409,8 +1409,8 @@ add_prefixed_path (const char *suffix, incpath_kind chain)
+   size_t prefix_len, suffix_len;
+ 
+   suffix_len = strlen (suffix);
+-  prefix     = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
+-  prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
++  prefix     = iprefix ? iprefix : GCC_INCLUDE_DIRVAR;
++  prefix_len = iprefix ? strlen (iprefix) : strlen(GCC_INCLUDE_DIRVAR) - 7;
+ 
+   path = (char *) xmalloc (prefix_len + suffix_len + 1);
+   memcpy (path, prefix, prefix_len);
+diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
+index 2f43b88a0c3..6b6be04686c 100644
+--- a/gcc/cppdefault.c
++++ b/gcc/cppdefault.c
+@@ -35,6 +35,30 @@
+ # undef CROSS_INCLUDE_DIR
+ #endif
+ 
++static char GPLUSPLUS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_INCLUDE_DIR;
++char GCC_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GCC_INCLUDE_DIR;
++static char GPLUSPLUS_TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_TOOL_INCLUDE_DIR;
++static char GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_BACKWARD_INCLUDE_DIR;
++static char STANDARD_STARTFILE_PREFIX_2VAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET;
++#ifdef LOCAL_INCLUDE_DIR
++static char LOCAL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = LOCAL_INCLUDE_DIR;
++#endif
++#ifdef PREFIX_INCLUDE_DIR
++static char PREFIX_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX_INCLUDE_DIR;
++#endif
++#ifdef FIXED_INCLUDE_DIR
++static char FIXED_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = FIXED_INCLUDE_DIR;
++#endif
++#ifdef CROSS_INCLUDE_DIR
++static char CROSS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = CROSS_INCLUDE_DIR;
++#endif
++#ifdef TOOL_INCLUDE_DIR
++static char TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = TOOL_INCLUDE_DIR;
++#endif
++#ifdef NATIVE_SYSTEM_HEADER_DIR
++static char NATIVE_SYSTEM_HEADER_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = NATIVE_SYSTEM_HEADER_DIR;
++#endif
++
+ const struct default_include cpp_include_defaults[]
+ #ifdef INCLUDE_DEFAULTS
+ = INCLUDE_DEFAULTS;
+@@ -42,38 +66,38 @@ const struct default_include cpp_include_defaults[]
+ = {
+ #ifdef GPLUSPLUS_INCLUDE_DIR
+     /* Pick up GNU C++ generic include files.  */
+-    { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1,
++    { GPLUSPLUS_INCLUDE_DIRVAR, "G++", 1, 1,
+       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
+ #endif
+ #ifdef GPLUSPLUS_TOOL_INCLUDE_DIR
+     /* Pick up GNU C++ target-dependent include files.  */
+-    { GPLUSPLUS_TOOL_INCLUDE_DIR, "G++", 1, 1,
++    { GPLUSPLUS_TOOL_INCLUDE_DIRVAR, "G++", 1, 1,
+       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 1 },
+ #endif
+ #ifdef GPLUSPLUS_BACKWARD_INCLUDE_DIR
+     /* Pick up GNU C++ backward and deprecated include files.  */
+-    { GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1,
++    { GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR, "G++", 1, 1,
+       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
+ #endif
+ #ifdef GCC_INCLUDE_DIR
+     /* This is the dir for gcc's private headers.  */
+-    { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
++    { GCC_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
+ #endif
+ #ifdef GCC_INCLUDE_SUBDIR_TARGET
+     /* This is the dir for gcc's private headers under the specified sysroot.  */
+-    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
++    { STANDARD_STARTFILE_PREFIX_2VAR, "GCC", 0, 0, 1, 0 },
+ #endif
+ #ifdef LOCAL_INCLUDE_DIR
+     /* /usr/local/include comes before the fixincluded header files.  */
+-    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
+-    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 0 },
++    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 2 },
++    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 0 },
+ #endif
+ #ifdef PREFIX_INCLUDE_DIR
+-    { PREFIX_INCLUDE_DIR, 0, 0, 1, 0, 0 },
++    { PREFIX_INCLUDE_DIRVAR, 0, 0, 1, 0, 0 },
+ #endif
+ #ifdef FIXED_INCLUDE_DIR
+     /* This is the dir for fixincludes.  */
+-    { FIXED_INCLUDE_DIR, "GCC", 0, 0, 0,
++    { FIXED_INCLUDE_DIRVAR, "GCC", 0, 0, 0,
+       /* A multilib suffix needs adding if different multilibs use
+ 	 different headers.  */
+ #ifdef SYSROOT_HEADERS_SUFFIX_SPEC
+@@ -85,33 +109,24 @@ const struct default_include cpp_include_defaults[]
+ #endif
+ #ifdef CROSS_INCLUDE_DIR
+     /* One place the target system's headers might be.  */
+-    { CROSS_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
++    { CROSS_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
+ #endif
+ #ifdef TOOL_INCLUDE_DIR
+     /* Another place the target system's headers might be.  */
+-    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1, 0, 0 },
++    { TOOL_INCLUDE_DIRVAR, "BINUTILS", 0, 1, 0, 0 },
+ #endif
+ #ifdef NATIVE_SYSTEM_HEADER_DIR
+     /* /usr/include comes dead last.  */
+-    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
+-    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
++    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
++    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
+ #endif
+     { 0, 0, 0, 0, 0, 0 }
+   };
+ #endif /* no INCLUDE_DEFAULTS */
+ 
+-#ifdef GCC_INCLUDE_DIR
+-const char cpp_GCC_INCLUDE_DIR[] = GCC_INCLUDE_DIR;
+-const size_t cpp_GCC_INCLUDE_DIR_len = sizeof GCC_INCLUDE_DIR - 8;
+-#else
+-const char cpp_GCC_INCLUDE_DIR[] = "";
+-const size_t cpp_GCC_INCLUDE_DIR_len = 0;
+-#endif
+-
+ /* The configured prefix.  */
+-const char cpp_PREFIX[] = PREFIX;
+-const size_t cpp_PREFIX_len = sizeof PREFIX - 1;
+-const char cpp_EXEC_PREFIX[] = STANDARD_EXEC_PREFIX;
++char PREFIXVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX;
++char EXEC_PREFIXVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
+ 
+ /* This value is set by cpp_relocated at runtime */
+ const char *gcc_exec_prefix;
+diff --git a/gcc/cppdefault.h b/gcc/cppdefault.h
+index a681264f75e..5e10a2fa140 100644
+--- a/gcc/cppdefault.h
++++ b/gcc/cppdefault.h
+@@ -33,7 +33,8 @@
+ 
+ struct default_include
+ {
+-  const char *const fname;	/* The name of the directory.  */
++  const char *fname;     /* The name of the directory.  */
++
+   const char *const component;	/* The component containing the directory
+ 				   (see update_path in prefix.c) */
+   const char cplusplus;		/* Only look here if we're compiling C++.  */
+@@ -50,17 +51,13 @@ struct default_include
+ };
+ 
+ extern const struct default_include cpp_include_defaults[];
+-extern const char cpp_GCC_INCLUDE_DIR[];
+-extern const size_t cpp_GCC_INCLUDE_DIR_len;
++extern char GCC_INCLUDE_DIRVAR[] __attribute__ ((section (".gccrelocprefix")));
+ 
+ /* The configure-time prefix, i.e., the value supplied as the argument
+    to --prefix=.  */
+-extern const char cpp_PREFIX[];
++extern char PREFIXVAR[] __attribute__ ((section (".gccrelocprefix")));
+ /* The length of the configure-time prefix.  */
+-extern const size_t cpp_PREFIX_len;
+-/* The configure-time execution prefix.  This is typically the lib/gcc
+-   subdirectory of cpp_PREFIX.  */
+-extern const char cpp_EXEC_PREFIX[];
++extern char EXEC_PREFIXVAR[] __attribute__ ((section (".gccrelocprefix")));
+ /* The run-time execution prefix.  This is typically the lib/gcc
+    subdirectory of the actual installation.  */
+ extern const char *gcc_exec_prefix;
+diff --git a/gcc/gcc.c b/gcc/gcc.c
+index c87f603955f..535d5c3bb65 100644
+--- a/gcc/gcc.c
++++ b/gcc/gcc.c
+@@ -252,6 +252,8 @@ FILE *report_times_to_file = NULL;
+ #endif
+ static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
+ 
++static char target_relocatable_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = SYSTEMLIBS_DIR;
++
+ /* Nonzero means pass the updated target_system_root to the compiler.  */
+ 
+ static int target_system_root_changed;
+@@ -526,6 +528,7 @@ or with constant text in a single argument.
+  %G     process LIBGCC_SPEC as a spec.
+  %R     Output the concatenation of target_system_root and
+         target_sysroot_suffix.
++ %r     Output the base path target_relocatable_prefix
+  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
+  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
+  %C     process CPP_SPEC as a spec.
+@@ -1499,10 +1502,10 @@ static const char *gcc_libexec_prefix;
+    gcc_exec_prefix is set because, in that case, we know where the
+    compiler has been installed, and use paths relative to that
+    location instead.  */
+-static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
+-static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
+-static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
+-static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
++static char standard_exec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
++static char standard_libexec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_LIBEXEC_PREFIX;
++static char standard_bindir_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_BINDIR_PREFIX;
++static char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
+ 
+ /* For native compilers, these are well-known paths containing
+    components that may be provided by the system.  For cross
+@@ -1510,9 +1513,9 @@ static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
+ static const char *md_exec_prefix = MD_EXEC_PREFIX;
+ static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
+ static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
+-static const char *const standard_startfile_prefix_1
++static char standard_startfile_prefix_1[4096] __attribute__ ((section (".gccrelocprefix")))
+   = STANDARD_STARTFILE_PREFIX_1;
+-static const char *const standard_startfile_prefix_2
++static char standard_startfile_prefix_2[4096] __attribute__ ((section (".gccrelocprefix")))
+   = STANDARD_STARTFILE_PREFIX_2;
+ 
+ /* A relative path to be used in finding the location of tools
+@@ -5952,6 +5955,11 @@ do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
+ 	      }
+ 	    break;
+ 
++          case 'r':
++              obstack_grow (&obstack, target_relocatable_prefix,
++		      strlen (target_relocatable_prefix));
++            break;
++
+ 	  case 'S':
+ 	    value = do_spec_1 (startfile_spec, 0, NULL);
+ 	    if (value != 0)
+diff --git a/gcc/incpath.c b/gcc/incpath.c
+index 9098ab044ab..bfad4ebe382 100644
+--- a/gcc/incpath.c
++++ b/gcc/incpath.c
+@@ -131,7 +131,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
+   int relocated = cpp_relocated ();
+   size_t len;
+ 
+-  if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0)
++  if (iprefix && (len = strlen(GCC_INCLUDE_DIRVAR) - 7) != 0)
+     {
+       /* Look for directories that start with the standard prefix.
+ 	 "Translate" them, i.e. replace /usr/local/lib/gcc... with
+@@ -145,7 +145,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
+ 		 now.  */
+ 	      if (sysroot && p->add_sysroot)
+ 		continue;
+-	      if (!filename_ncmp (p->fname, cpp_GCC_INCLUDE_DIR, len))
++	      if (!filename_ncmp (p->fname, GCC_INCLUDE_DIRVAR, len))
+ 		{
+ 		  char *str = concat (iprefix, p->fname + len, NULL);
+ 		  if (p->multilib == 1 && imultilib)
+@@ -185,7 +185,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
+ 	      free (sysroot_no_trailing_dir_separator);
+ 	    }
+ 	  else if (!p->add_sysroot && relocated
+-		   && !filename_ncmp (p->fname, cpp_PREFIX, cpp_PREFIX_len))
++		   && !filename_ncmp (p->fname, PREFIXVAR, strlen(PREFIXVAR)))
+ 	    {
+  	      static const char *relocated_prefix;
+ 	      char *ostr;
+@@ -202,12 +202,12 @@ add_standard_paths (const char *sysroot, const char *iprefix,
+ 		  dummy = concat (gcc_exec_prefix, "dummy", NULL);
+ 		  relocated_prefix
+ 		    = make_relative_prefix (dummy,
+-					    cpp_EXEC_PREFIX,
+-					    cpp_PREFIX);
++					    EXEC_PREFIXVAR,
++					    PREFIXVAR);
+ 		  free (dummy);
+ 		}
+ 	      ostr = concat (relocated_prefix,
+-			     p->fname + cpp_PREFIX_len,
++			     p->fname + strlen(PREFIXVAR),
+ 			     NULL);
+ 	      str = update_path (ostr, p->component);
+ 	      free (ostr);
+diff --git a/gcc/prefix.c b/gcc/prefix.c
+index 1a403e535bd..c26d07bde12 100644
+--- a/gcc/prefix.c
++++ b/gcc/prefix.c
+@@ -72,7 +72,9 @@ License along with GCC; see the file COPYING3.  If not see
+ #include "prefix.h"
+ #include "common/common-target.h"
+ 
+-static const char *std_prefix = PREFIX;
++char PREFIXVAR1[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX;
++
++static const char *std_prefix = PREFIXVAR1;
+ 
+ static const char *get_key_value (char *);
+ static char *translate_name (char *);
+@@ -212,7 +214,7 @@ translate_name (char *name)
+ 	prefix = getenv (key);
+ 
+       if (prefix == 0)
+-	prefix = PREFIX;
++	prefix = PREFIXVAR1;
+ 
+       /* We used to strip trailing DIR_SEPARATORs here, but that can
+ 	 sometimes yield a result with no separator when one was coded
+-- 
+2.29.2
+
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
new file mode 100644
index 0000000..abf1f84
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
@@ -0,0 +1,99 @@
+From 9c0c73ee48dbee2aad57f4dcdad1b7b74e77b944 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Mon, 7 Dec 2015 23:41:45 +0000
+Subject: [PATCH] Search target sysroot gcc version specific dirs with
+ multilib.
+
+We install the gcc libraries (such as crtbegin.p) into
+<sysroot><libdir>/<target-sys>/5.2.0/
+which is a default search path for GCC (aka multi_suffix in the
+code below). <target-sys> is 'machine' in gcc's terminology. We use
+these directories so that multiple gcc versions could in theory
+co-exist on target.
+
+We only want to build one gcc-cross-canadian per arch and have this work
+for all multilibs. <target-sys> can be handled by mapping the multilib
+<target-sys> to the one used by gcc-cross-canadian, e.g.
+mips64-polkmllib32-linux
+is symlinked to by mips64-poky-linux.
+
+The default gcc search path in the target sysroot for a "lib64" mutlilib
+is:
+
+<sysroot>/lib32/mips64-poky-linux/5.2.0/
+<sysroot>/lib32/../lib64/
+<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
+<sysroot>/usr/lib32/../lib64/
+<sysroot>/lib32/
+<sysroot>/usr/lib32/
+
+which means that the lib32 crtbegin.o will be found and the lib64 ones
+will not which leads to compiler failures.
+
+This patch injects a multilib version of that path first so the lib64
+binaries can be found first. With this change the search path becomes:
+
+<sysroot>/lib32/../lib64/mips64-poky-linux/5.2.0/
+<sysroot>/lib32/mips64-poky-linux/5.2.0/
+<sysroot>/lib32/../lib64/
+<sysroot>/usr/lib32/../lib64/mips64-poky-linux/5.2.0/
+<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
+<sysroot>/usr/lib32/../lib64/
+<sysroot>/lib32/
+<sysroot>/usr/lib32/
+
+Upstream-Status: Pending
+RP 2015/7/31
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/gcc.c | 29 ++++++++++++++++++++++++++++-
+ 1 file changed, 28 insertions(+), 1 deletion(-)
+
+diff --git a/gcc/gcc.c b/gcc/gcc.c
+index 535d5c3bb65..04647ae812d 100644
+--- a/gcc/gcc.c
++++ b/gcc/gcc.c
+@@ -2616,7 +2616,7 @@ for_each_path (const struct path_prefix *paths,
+       if (path == NULL)
+ 	{
+ 	  len = paths->max_len + extra_space + 1;
+-	  len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
++	  len += MAX ((suffix_len + multi_os_dir_len), multiarch_len);
+ 	  path = XNEWVEC (char, len);
+ 	}
+ 
+@@ -2628,6 +2628,33 @@ for_each_path (const struct path_prefix *paths,
+ 	  /* Look first in MACHINE/VERSION subdirectory.  */
+ 	  if (!skip_multi_dir)
+ 	    {
++	      if (!(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
++	        {
++	          const char *this_multi;
++	          size_t this_multi_len;
++
++	          if (pl->os_multilib)
++		    {
++		      this_multi = multi_os_dir;
++		      this_multi_len = multi_os_dir_len;
++		    }
++	          else
++		    {
++		      this_multi = multi_dir;
++		      this_multi_len = multi_dir_len;
++		    }
++
++	          /* Look in multilib MACHINE/VERSION subdirectory first */
++	          if (this_multi_len)
++	            {
++		      memcpy (path + len, this_multi, this_multi_len + 1);
++	              memcpy (path + len + this_multi_len, multi_suffix, suffix_len + 1);
++	              ret = callback (path, callback_info);
++	                if (ret)
++		          break;
++	            }
++	        }
++
+ 	      memcpy (path + len, multi_suffix, suffix_len + 1);
+ 	      ret = callback (path, callback_info);
+ 	      if (ret)
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
new file mode 100644
index 0000000..97bf2f3
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
@@ -0,0 +1,134 @@
+From 3a003af8804dda90fdf4862eca5f66cb12faaf02 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Mon, 7 Dec 2015 23:42:45 +0000
+Subject: [PATCH] Fix various _FOR_BUILD and related variables
+
+When doing a FOR_BUILD thing, you have to override CFLAGS with
+CFLAGS_FOR_BUILD. And if you use C++, you also have to override
+CXXFLAGS with CXXFLAGS_FOR_BUILD.
+Without this, when building for mingw, you end up trying to use
+the mingw headers for a host build.
+
+The same goes for other variables as well, such as CPPFLAGS,
+CPP, and GMPINC.
+
+Upstream-Status: Pending
+
+Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
+Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ Makefile.in      | 6 ++++++
+ Makefile.tpl     | 5 +++++
+ gcc/Makefile.in  | 2 +-
+ gcc/configure    | 2 +-
+ gcc/configure.ac | 2 +-
+ 5 files changed, 14 insertions(+), 3 deletions(-)
+
+diff --git a/Makefile.in b/Makefile.in
+index c717903bb13..5abc649868d 100644
+--- a/Makefile.in
++++ b/Makefile.in
+@@ -152,6 +152,7 @@ BUILD_EXPORTS = \
+ 	CPP="$(CC_FOR_BUILD) -E"; export CPP; \
+ 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
+ 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
++	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
+ 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
+ 	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
+ 	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
+@@ -171,6 +172,9 @@ BUILD_EXPORTS = \
+ # built for the build system to override those in BASE_FLAGS_TO_PASS.
+ EXTRA_BUILD_FLAGS = \
+ 	CFLAGS="$(CFLAGS_FOR_BUILD)" \
++	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
++	CPP="$(CC_FOR_BUILD) -E" \
++	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
+ 	LDFLAGS="$(LDFLAGS_FOR_BUILD)"
+ 
+ # This is the list of directories to built for the host system.
+@@ -188,6 +192,7 @@ HOST_SUBDIR = @host_subdir@
+ HOST_EXPORTS = \
+ 	$(BASE_EXPORTS) \
+ 	CC="$(CC)"; export CC; \
++	CPP="$(CC) -E"; export CPP; \
+ 	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
+ 	CFLAGS="$(CFLAGS)"; export CFLAGS; \
+ 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
+@@ -776,6 +781,7 @@ BASE_FLAGS_TO_PASS = \
+ 	"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
+ 	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
+ 	"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
++	"CXXFLAGS_FOR_BUILD=$(CXXFLAGS_FOR_BUILD)" \
+ 	"EXPECT=$(EXPECT)" \
+ 	"FLEX=$(FLEX)" \
+ 	"INSTALL=$(INSTALL)" \
+diff --git a/Makefile.tpl b/Makefile.tpl
+index efed1511750..778beb705b4 100644
+--- a/Makefile.tpl
++++ b/Makefile.tpl
+@@ -154,6 +154,7 @@ BUILD_EXPORTS = \
+ 	CC="$(CC_FOR_BUILD)"; export CC; \
+ 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
+ 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
++	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
+ 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
+ 	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
+ 	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
+@@ -173,6 +174,9 @@ BUILD_EXPORTS = \
+ # built for the build system to override those in BASE_FLAGS_TO_PASS.
+ EXTRA_BUILD_FLAGS = \
+ 	CFLAGS="$(CFLAGS_FOR_BUILD)" \
++	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
++	CPP="$(CC_FOR_BUILD) -E" \
++	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
+ 	LDFLAGS="$(LDFLAGS_FOR_BUILD)"
+ 
+ # This is the list of directories to built for the host system.
+@@ -190,6 +194,7 @@ HOST_SUBDIR = @host_subdir@
+ HOST_EXPORTS = \
+ 	$(BASE_EXPORTS) \
+ 	CC="$(CC)"; export CC; \
++	CPP="$(CC) -E"; export CPP; \
+ 	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
+ 	CFLAGS="$(CFLAGS)"; export CFLAGS; \
+ 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
+diff --git a/gcc/Makefile.in b/gcc/Makefile.in
+index 011c7ac2db6..2f1165f7b5e 100644
+--- a/gcc/Makefile.in
++++ b/gcc/Makefile.in
+@@ -805,7 +805,7 @@ BUILD_LDFLAGS=@BUILD_LDFLAGS@
+ BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@
+ BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG)
+ BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
+-		-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS)
++		-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS_FOR_BUILD)
+ 
+ # Actual name to use when installing a native compiler.
+ GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
+diff --git a/gcc/configure b/gcc/configure
+index 825a9652329..ff46cf58960 100755
+--- a/gcc/configure
++++ b/gcc/configure
+@@ -12314,7 +12314,7 @@ else
+ 	CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
+ 	CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
+ 	LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
+-	GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
++	GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
+ 	${realsrcdir}/configure \
+ 		--enable-languages=${enable_languages-all} \
+ 		${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
+diff --git a/gcc/configure.ac b/gcc/configure.ac
+index 6099eb3251f..b3c345b61dc 100644
+--- a/gcc/configure.ac
++++ b/gcc/configure.ac
+@@ -1898,7 +1898,7 @@ else
+ 	CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
+ 	CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
+ 	LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
+-	GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
++	GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
+ 	${realsrcdir}/configure \
+ 		--enable-languages=${enable_languages-all} \
+ 		${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
new file mode 100644
index 0000000..3cd75b7
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
@@ -0,0 +1,25 @@
+From 4e53d0ae70af85af0e112a48a3e4dfe4c39f4a8d Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 2 Feb 2016 10:26:10 -0800
+Subject: [PATCH] nios2: Define MUSL_DYNAMIC_LINKER
+
+Upstream-Status: Pending
+
+Signed-off-by: Marek Vasut <marex@denx.de>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/config/nios2/linux.h | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/gcc/config/nios2/linux.h b/gcc/config/nios2/linux.h
+index 4bdcdcca1f0..e7943a9d640 100644
+--- a/gcc/config/nios2/linux.h
++++ b/gcc/config/nios2/linux.h
+@@ -30,6 +30,7 @@
+ #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
+ 
+ #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-nios2.so.1"
++#define MUSL_DYNAMIC_LINKER  "/lib/ld-musl-nios2.so.1"
+ 
+ #undef LINK_SPEC
+ #define LINK_SPEC LINK_SPEC_ENDIAN \
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
new file mode 100644
index 0000000..2a6769a
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
@@ -0,0 +1,84 @@
+From 5db0404eb770ac477fd99d444226bcf021067584 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 27 Jun 2017 18:10:54 -0700
+Subject: [PATCH] Add ssp_nonshared to link commandline for musl targets
+
+when -fstack-protector options are enabled we need to
+link with ssp_shared on musl since it does not provide
+the __stack_chk_fail_local() so essentially it provides
+libssp but not libssp_nonshared something like
+TARGET_LIBC_PROVIDES_SSP_BUT_NOT_SSP_NONSHARED
+ where-as for glibc the needed symbols
+are already present in libc_nonshared library therefore
+we do not need any library helper on glibc based systems
+but musl needs the libssp_noshared from gcc
+
+Upstream-Status: Pending
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/config/linux.h          |  7 +++++++
+ gcc/config/rs6000/linux.h   | 10 ++++++++++
+ gcc/config/rs6000/linux64.h | 10 ++++++++++
+ 3 files changed, 27 insertions(+)
+
+diff --git a/gcc/config/linux.h b/gcc/config/linux.h
+index 0c1a8118a26..bdc2a2d0659 100644
+--- a/gcc/config/linux.h
++++ b/gcc/config/linux.h
+@@ -195,6 +195,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
+     { GCC_INCLUDE_DIR, "GCC", 0, 1, 0, 0 },		\
+     { 0, 0, 0, 0, 0, 0 }				\
+   }
++#ifdef TARGET_LIBC_PROVIDES_SSP
++#undef LINK_SSP_SPEC
++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
++		       "|fstack-protector-strong|fstack-protector-explicit" \
++		       ":-lssp_nonshared}"
++#endif
++
+ #endif
+ 
+ #if (DEFAULT_LIBC == LIBC_UCLIBC) && defined (SINGLE_LIBC) /* uClinux */
+diff --git a/gcc/config/rs6000/linux.h b/gcc/config/rs6000/linux.h
+index b7026fcbee7..dd54d6c393e 100644
+--- a/gcc/config/rs6000/linux.h
++++ b/gcc/config/rs6000/linux.h
+@@ -94,6 +94,16 @@
+ 					 " -m elf32ppclinux")
+ #endif
+ 
++/* link libssp_nonshared.a with musl */
++#if DEFAULT_LIBC == LIBC_MUSL
++#ifdef TARGET_LIBC_PROVIDES_SSP
++#undef LINK_SSP_SPEC
++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
++		       "|fstack-protector-strong|fstack-protector-explicit" \
++		       ":-lssp_nonshared}"
++#endif
++#endif
++
+ #undef LINK_OS_LINUX_SPEC
+ #define LINK_OS_LINUX_SPEC LINK_OS_LINUX_EMUL " %{!shared: %{!static: \
+   %{!static-pie: \
+diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
+index 967c1c43c63..dc5e4d97975 100644
+--- a/gcc/config/rs6000/linux64.h
++++ b/gcc/config/rs6000/linux64.h
+@@ -452,6 +452,16 @@ extern int dot_symbols;
+ 					   " -m elf64ppc")
+ #endif
+ 
++/* link libssp_nonshared.a with musl */
++#if DEFAULT_LIBC == LIBC_MUSL
++#ifdef TARGET_LIBC_PROVIDES_SSP
++#undef LINK_SSP_SPEC
++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
++		       "|fstack-protector-strong|fstack-protector-explicit" \
++		       ":-lssp_nonshared}"
++#endif
++#endif
++
+ #define LINK_OS_LINUX_SPEC32 LINK_OS_LINUX_EMUL32 " %{!shared: %{!static: \
+   %{!static-pie: \
+     %{rdynamic:-export-dynamic} \
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
new file mode 100644
index 0000000..767cba0
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
@@ -0,0 +1,26 @@
+From fbc926dbf6a47fa623b9c94cd9b09a0e90448fdc Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Wed, 4 May 2016 21:11:34 -0700
+Subject: [PATCH] Link libgcc using LDFLAGS, not just SHLIB_LDFLAGS
+
+Upstream-Status: Pending
+
+Signed-off-by: Christopher Larson <chris_larson@mentor.com>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ libgcc/config/t-slibgcc | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libgcc/config/t-slibgcc b/libgcc/config/t-slibgcc
+index c997553447c..330352c2c81 100644
+--- a/libgcc/config/t-slibgcc
++++ b/libgcc/config/t-slibgcc
+@@ -32,7 +32,7 @@ SHLIB_INSTALL_SOLINK = $(LN_S) $(SHLIB_SONAME) \
+ 	$(DESTDIR)$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
+ 
+ SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
+-	$(SHLIB_LDFLAGS) \
++	$(LDFLAGS) $(SHLIB_LDFLAGS) \
+ 	-o $(SHLIB_DIR)/$(SHLIB_SONAME).tmp @multilib_flags@ \
+ 	$(SHLIB_OBJS) $(SHLIB_LC) && \
+ 	rm -f $(SHLIB_DIR)/$(SHLIB_SOLINK) && \
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
new file mode 100644
index 0000000..4f18907
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
@@ -0,0 +1,88 @@
+From 24dc04dc8d69e3bf61322615b3ef18e02ccd311e Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Fri, 3 Feb 2017 12:56:00 -0800
+Subject: [PATCH] sync gcc stddef.h with musl
+
+musl defines ptrdiff_t size_t and wchar_t
+so dont define them here if musl is definining them
+
+Upstream-Status: Pending
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/ginclude/stddef.h | 9 +++++++++
+ 1 file changed, 9 insertions(+)
+
+diff --git a/gcc/ginclude/stddef.h b/gcc/ginclude/stddef.h
+index 9d67eac4947..6cb5edbedb4 100644
+--- a/gcc/ginclude/stddef.h
++++ b/gcc/ginclude/stddef.h
+@@ -128,6 +128,7 @@ _TYPE_wchar_t;
+ #ifndef ___int_ptrdiff_t_h
+ #ifndef _GCC_PTRDIFF_T
+ #ifndef _PTRDIFF_T_DECLARED /* DragonFly */
++#ifndef __DEFINED_ptrdiff_t /* musl */
+ #define _PTRDIFF_T
+ #define _T_PTRDIFF_
+ #define _T_PTRDIFF
+@@ -137,10 +138,12 @@ _TYPE_wchar_t;
+ #define ___int_ptrdiff_t_h
+ #define _GCC_PTRDIFF_T
+ #define _PTRDIFF_T_DECLARED
++#define __DEFINED_ptrdiff_t /* musl */
+ #ifndef __PTRDIFF_TYPE__
+ #define __PTRDIFF_TYPE__ long int
+ #endif
+ typedef __PTRDIFF_TYPE__ ptrdiff_t;
++#endif /* __DEFINED_ptrdiff_t */
+ #endif /* _PTRDIFF_T_DECLARED */
+ #endif /* _GCC_PTRDIFF_T */
+ #endif /* ___int_ptrdiff_t_h */
+@@ -178,6 +181,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
+ #ifndef _GCC_SIZE_T
+ #ifndef _SIZET_
+ #ifndef __size_t
++#ifndef __DEFINED_size_t /* musl */
+ #define __size_t__	/* BeOS */
+ #define __SIZE_T__	/* Cray Unicos/Mk */
+ #define _SIZE_T
+@@ -194,6 +198,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
+ #define ___int_size_t_h
+ #define _GCC_SIZE_T
+ #define _SIZET_
++#define __DEFINED_size_t /* musl */
+ #if defined (__FreeBSD__) \
+   || defined(__DragonFly__) \
+   || defined(__FreeBSD_kernel__) \
+@@ -228,6 +233,7 @@ typedef long ssize_t;
+ #endif /* _SIZE_T */
+ #endif /* __SIZE_T__ */
+ #endif /* __size_t__ */
++#endif /* __DEFINED_size_t */
+ #undef	__need_size_t
+ #endif /* _STDDEF_H or __need_size_t.  */
+ 
+@@ -257,6 +263,7 @@ typedef long ssize_t;
+ #ifndef ___int_wchar_t_h
+ #ifndef __INT_WCHAR_T_H
+ #ifndef _GCC_WCHAR_T
++#ifndef __DEFINED_wchar_t /* musl */
+ #define __wchar_t__	/* BeOS */
+ #define __WCHAR_T__	/* Cray Unicos/Mk */
+ #define _WCHAR_T
+@@ -272,6 +279,7 @@ typedef long ssize_t;
+ #define __INT_WCHAR_T_H
+ #define _GCC_WCHAR_T
+ #define _WCHAR_T_DECLARED
++#define __DEFINED_wchar_t /* musl */
+ 
+ /* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
+    instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other
+@@ -337,6 +345,7 @@ typedef __WCHAR_TYPE__ wchar_t;
+ #endif
+ #endif /* __WCHAR_T__ */
+ #endif /* __wchar_t__ */
++#endif /* __DEFINED_wchar_t musl */
+ #undef	__need_wchar_t
+ #endif /* _STDDEF_H or __need_wchar_t.  */
+ 
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
new file mode 100644
index 0000000..702279a
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
@@ -0,0 +1,57 @@
+From 27b8ba5555ada2dab076988529bfb84d00a4b901 Mon Sep 17 00:00:00 2001
+From: Juro Bystricky <juro.bystricky@intel.com>
+Date: Mon, 19 Mar 2018 22:31:20 -0700
+Subject: [PATCH] fix segmentation fault in precompiled header generation
+
+Prevent a segmentation fault which occurs when using incorrect
+structure trying to access name of some named operators, such as
+CPP_NOT, CPP_AND etc. "token->val.node.spelling" cannot be used in
+those cases, as is may not be initialized at all.
+
+[YOCTO #11738]
+
+Upstream-Status: Pending
+
+Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ libcpp/lex.c | 26 +++++++++++++++++++++-----
+ 1 file changed, 21 insertions(+), 5 deletions(-)
+
+diff --git a/libcpp/lex.c b/libcpp/lex.c
+index 56ac3a1dd73..73a951148b3 100644
+--- a/libcpp/lex.c
++++ b/libcpp/lex.c
+@@ -3311,11 +3311,27 @@ cpp_spell_token (cpp_reader *pfile, const cpp_token *token,
+     spell_ident:
+     case SPELL_IDENT:
+       if (forstring)
+-	{
+-	  memcpy (buffer, NODE_NAME (token->val.node.spelling),
+-		  NODE_LEN (token->val.node.spelling));
+-	  buffer += NODE_LEN (token->val.node.spelling);
+-	}
++        {
++          if (token->type == CPP_NAME)
++            {
++              memcpy (buffer, NODE_NAME (token->val.node.spelling),
++                    NODE_LEN (token->val.node.spelling));
++              buffer += NODE_LEN (token->val.node.spelling);
++              break;
++            }
++          /* NAMED_OP, cannot use node.spelling */
++          if (token->flags & NAMED_OP)
++            {
++              const char *str = cpp_named_operator2name (token->type);
++              if (str)
++                {
++                  size_t len = strlen(str);
++                  memcpy(buffer, str, len);
++                  buffer += len;
++                }
++              break;
++            }
++        }
+       else
+ 	buffer = _cpp_spell_ident_ucns (buffer, token->val.node.node);
+       break;
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
new file mode 100644
index 0000000..0a0767b
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
@@ -0,0 +1,255 @@
+From 2512aacf023c679d86d8f40caff4f6ff412b32ff Mon Sep 17 00:00:00 2001
+From: RAGHUNATH LOLUR <raghunath.lolur@kpit.com>
+Date: Wed, 6 Dec 2017 22:52:26 -0800
+Subject: [PATCH] Fix for testsuite failure
+
+2017-11-16  Raghunath Lolur  <raghunath.lolur@kpit.com>
+
+	* gcc.dg/pr56275.c: If SSE is disabled, ensure that
+	"-mfpmath" is not set to use SSE. Set "-mfpmath=387".
+	* gcc.dg/pr68306.c: Likewise
+	* gcc.dg/pr68306-2.c: Likewise
+	* gcc.dg/pr68306-3.c: Likewise
+	* gcc.dg/pr69634.c: Likewise
+	* gcc.target/i386/amd64-abi-1.c: Likewise
+	* gcc.target/i386/funcspec-6.c: Likewise
+	* gcc.target/i386/interrupt-387-err-1.c: Likewise
+	* gcc.target/i386/isa-14.c: Likewise
+	* gcc.target/i386/pr44948-2b.c: Likewise
+	* gcc.target/i386/pr53425-1.c: Likewise
+	* gcc.target/i386/pr53425-2.c: Likewise
+	* gcc.target/i386/pr55247.c: Likewise
+	* gcc.target/i386/pr59644.c: Likewise
+	* gcc.target/i386/pr62120.c: Likewise
+	* gcc.target/i386/pr70467-1.c: Likewise
+	* gcc.target/i386/warn-vect-op-1.c: Likewise
+
+If -Wall, -Werror are used during compilation various test cases fail
+to compile.
+
+If SSE is disabled, be sure to -mfpmath=387 to resolve this.
+
+This patch removes the changes to Changelog from the original patch.
+This will help us avoid conflicts.
+
+Upstream-Status: Pending
+
+Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
+---
+ gcc/testsuite/gcc.dg/pr56275.c                      | 2 +-
+ gcc/testsuite/gcc.dg/pr68306-2.c                    | 2 +-
+ gcc/testsuite/gcc.dg/pr68306-3.c                    | 2 +-
+ gcc/testsuite/gcc.dg/pr68306.c                      | 2 +-
+ gcc/testsuite/gcc.dg/pr69634.c                      | 2 +-
+ gcc/testsuite/gcc.target/i386/amd64-abi-1.c         | 2 +-
+ gcc/testsuite/gcc.target/i386/funcspec-6.c          | 1 +
+ gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | 2 +-
+ gcc/testsuite/gcc.target/i386/isa-14.c              | 2 +-
+ gcc/testsuite/gcc.target/i386/pr44948-2b.c          | 2 +-
+ gcc/testsuite/gcc.target/i386/pr53425-1.c           | 2 +-
+ gcc/testsuite/gcc.target/i386/pr53425-2.c           | 2 +-
+ gcc/testsuite/gcc.target/i386/pr55247.c             | 2 +-
+ gcc/testsuite/gcc.target/i386/pr59644.c             | 2 +-
+ gcc/testsuite/gcc.target/i386/pr62120.c             | 2 +-
+ gcc/testsuite/gcc.target/i386/pr70467-1.c           | 2 +-
+ gcc/testsuite/gcc.target/i386/warn-vect-op-1.c      | 2 +-
+ 17 files changed, 17 insertions(+), 16 deletions(-)
+
+diff --git a/gcc/testsuite/gcc.dg/pr56275.c b/gcc/testsuite/gcc.dg/pr56275.c
+index b901bb2b199..a4f6c95e1a1 100644
+--- a/gcc/testsuite/gcc.dg/pr56275.c
++++ b/gcc/testsuite/gcc.dg/pr56275.c
+@@ -1,6 +1,6 @@
+ /* { dg-do compile } */
+ /* { dg-options "-O2" } */
+-/* { dg-additional-options "-mno-sse" { target { i?86-*-* x86_64-*-* } } } */
++/* { dg-additional-options "-mno-sse -mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */
+ 
+ typedef long long v2tw __attribute__ ((vector_size (2 * sizeof (long long))));
+ 
+diff --git a/gcc/testsuite/gcc.dg/pr68306-2.c b/gcc/testsuite/gcc.dg/pr68306-2.c
+index 4672ebe7987..2a368c484b6 100644
+--- a/gcc/testsuite/gcc.dg/pr68306-2.c
++++ b/gcc/testsuite/gcc.dg/pr68306-2.c
+@@ -1,6 +1,6 @@
+ /* { dg-do compile } */
+ /* { dg-options "-O3" } */
+-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
+ 
+ struct {
+     int tz_minuteswest;
+diff --git a/gcc/testsuite/gcc.dg/pr68306-3.c b/gcc/testsuite/gcc.dg/pr68306-3.c
+index f5a8c102cf8..df3390c64c2 100644
+--- a/gcc/testsuite/gcc.dg/pr68306-3.c
++++ b/gcc/testsuite/gcc.dg/pr68306-3.c
+@@ -1,6 +1,6 @@
+ /* { dg-do compile } */
+ /* { dg-options "-O3" } */
+-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
+ /* { dg-additional-options "-mno-altivec -mno-vsx" { target powerpc*-*-* } } */
+ 
+ extern void fn2();
+diff --git a/gcc/testsuite/gcc.dg/pr68306.c b/gcc/testsuite/gcc.dg/pr68306.c
+index 54e5b40f221..0813389e2c1 100644
+--- a/gcc/testsuite/gcc.dg/pr68306.c
++++ b/gcc/testsuite/gcc.dg/pr68306.c
+@@ -1,6 +1,6 @@
+ /* { dg-do compile } */
+ /* { dg-options "-O3" } */
+-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
+ 
+ enum powerpc_pmc_type { PPC_PMC_IBM };
+ struct {
+diff --git a/gcc/testsuite/gcc.dg/pr69634.c b/gcc/testsuite/gcc.dg/pr69634.c
+index 60a56149463..bcc23f9ccd6 100644
+--- a/gcc/testsuite/gcc.dg/pr69634.c
++++ b/gcc/testsuite/gcc.dg/pr69634.c
+@@ -1,6 +1,6 @@
+ /* { dg-do compile } */
+ /* { dg-options "-O2 -fno-dce -fschedule-insns -fno-tree-vrp -fcompare-debug -Wno-psabi" } */
+-/* { dg-additional-options "-mno-sse" { target i?86-*-* x86_64-*-* } } */
++/* { dg-additional-options "-mno-sse -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
+ /* { dg-require-effective-target scheduling } */
+ 
+ typedef unsigned short u16;
+diff --git a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
+index 69fde57bf06..7f1f1c03edf 100644
+--- a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
++++ b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
+@@ -1,5 +1,5 @@
+ /* { dg-do compile { target { ! ia32 } } } */
+-/* { dg-options "-mno-sse" } */
++/* { dg-options "-mno-sse -mfpmath=387" } */
+ /* { dg-additional-options "-mabi=sysv" { target *-*-mingw* } } */
+ 
+ double foo(void) { return 0; }	/* { dg-error "SSE disabled" } */
+diff --git a/gcc/testsuite/gcc.target/i386/funcspec-6.c b/gcc/testsuite/gcc.target/i386/funcspec-6.c
+index ea896b7ebfd..bf15569b826 100644
+--- a/gcc/testsuite/gcc.target/i386/funcspec-6.c
++++ b/gcc/testsuite/gcc.target/i386/funcspec-6.c
+@@ -1,6 +1,7 @@
+ /* Test whether all of the 64-bit function specific options are accepted
+    without error.  */
+ /* { dg-do compile { target { ! ia32 } } } */
++/* { dg-additional-options "-mfpmath=387" } */
+ 
+ #include "funcspec-56.inc"
+ 
+diff --git a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
+index 8561a3c26d6..6377f814645 100644
+--- a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
++++ b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
+@@ -1,5 +1,5 @@
+ /* { dg-do compile } */
+-/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387" } */
++/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387 -mfpmath=387" } */
+ 
+ typedef unsigned int uword_t __attribute__ ((mode (__word__)));
+ 
+diff --git a/gcc/testsuite/gcc.target/i386/isa-14.c b/gcc/testsuite/gcc.target/i386/isa-14.c
+index 5d49e6e77fe..1de2db92bdd 100644
+--- a/gcc/testsuite/gcc.target/i386/isa-14.c
++++ b/gcc/testsuite/gcc.target/i386/isa-14.c
+@@ -1,5 +1,5 @@
+ /* { dg-do run } */
+-/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse" } */
++/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse -mfpmath=387" } */
+ 
+ extern void abort (void);
+ 
+diff --git a/gcc/testsuite/gcc.target/i386/pr44948-2b.c b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
+index fa1769b62fb..f79fb12726f 100644
+--- a/gcc/testsuite/gcc.target/i386/pr44948-2b.c
++++ b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
+@@ -1,5 +1,5 @@
+ /* { dg-do compile } */
+-/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic" } */
++/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic -mfpmath=387" } */
+ 
+ struct A
+ { 
+diff --git a/gcc/testsuite/gcc.target/i386/pr53425-1.c b/gcc/testsuite/gcc.target/i386/pr53425-1.c
+index 2e89ff7d81d..6339bf6b736 100644
+--- a/gcc/testsuite/gcc.target/i386/pr53425-1.c
++++ b/gcc/testsuite/gcc.target/i386/pr53425-1.c
+@@ -1,6 +1,6 @@
+ /* PR target/53425 */
+ /* { dg-do compile { target { ! ia32 } } } */
+-/* { dg-options "-O2 -mno-sse" } */
++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
+ /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
+ 
+ typedef double __v2df __attribute__ ((__vector_size__ (16)));
+diff --git a/gcc/testsuite/gcc.target/i386/pr53425-2.c b/gcc/testsuite/gcc.target/i386/pr53425-2.c
+index 61f6283dbe9..2c5a55f0ac3 100644
+--- a/gcc/testsuite/gcc.target/i386/pr53425-2.c
++++ b/gcc/testsuite/gcc.target/i386/pr53425-2.c
+@@ -1,6 +1,6 @@
+ /* PR target/53425 */
+ /* { dg-do compile { target { ! ia32 } } } */
+-/* { dg-options "-O2 -mno-sse" } */
++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
+ /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
+ 
+ typedef float __v2sf __attribute__ ((__vector_size__ (8)));
+diff --git a/gcc/testsuite/gcc.target/i386/pr55247.c b/gcc/testsuite/gcc.target/i386/pr55247.c
+index 23366d0909d..9810e3abb76 100644
+--- a/gcc/testsuite/gcc.target/i386/pr55247.c
++++ b/gcc/testsuite/gcc.target/i386/pr55247.c
+@@ -1,6 +1,6 @@
+ /* { dg-do compile { target { ! ia32 } } } */
+ /* { dg-require-effective-target maybe_x32 } */
+-/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long" } */
++/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long -mfpmath=387" } */
+ 
+ typedef unsigned int uint32_t;
+ typedef uint32_t Elf32_Word;
+diff --git a/gcc/testsuite/gcc.target/i386/pr59644.c b/gcc/testsuite/gcc.target/i386/pr59644.c
+index 96006b3e338..4287e4538bf 100644
+--- a/gcc/testsuite/gcc.target/i386/pr59644.c
++++ b/gcc/testsuite/gcc.target/i386/pr59644.c
+@@ -1,6 +1,6 @@
+ /* PR target/59644 */
+ /* { dg-do run { target lp64 } } */
+-/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone" } */
++/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone -mfpmath=387" } */
+ 
+ /* This test uses __builtin_trap () instead of e.g. abort,
+    because due to -mpreferred-stack-boundary=3 it should not call
+diff --git a/gcc/testsuite/gcc.target/i386/pr62120.c b/gcc/testsuite/gcc.target/i386/pr62120.c
+index 28d85d37712..c93266bd4bc 100644
+--- a/gcc/testsuite/gcc.target/i386/pr62120.c
++++ b/gcc/testsuite/gcc.target/i386/pr62120.c
+@@ -1,5 +1,5 @@
+ /* { dg-do compile } */
+-/* { dg-options "-mno-sse" } */
++/* { dg-options "-mno-sse -mfpmath=387" } */
+ 
+ void foo ()
+ {
+diff --git a/gcc/testsuite/gcc.target/i386/pr70467-1.c b/gcc/testsuite/gcc.target/i386/pr70467-1.c
+index 4e112c88d07..bcfb396a68d 100644
+--- a/gcc/testsuite/gcc.target/i386/pr70467-1.c
++++ b/gcc/testsuite/gcc.target/i386/pr70467-1.c
+@@ -1,6 +1,6 @@
+ /* PR rtl-optimization/70467 */
+ /* { dg-do compile } */
+-/* { dg-options "-O2 -mno-sse" } */
++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
+ 
+ void foo (unsigned long long *);
+ 
+diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
+index 6cda1534311..26e37f5b8ba 100644
+--- a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
++++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
+@@ -1,5 +1,5 @@
+ /* { dg-do compile { target { ! ia32 } } }  */
+-/* { dg-options "-mno-sse -Wvector-operation-performance" }  */
++/* { dg-options "-mno-sse -Wvector-operation-performance -mfpmath=387" }  */
+ #define vector(elcount, type)  \
+ __attribute__((vector_size((elcount)*sizeof(type)))) type
+ 
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
new file mode 100644
index 0000000..ba7c2b8
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
@@ -0,0 +1,38 @@
+From 3fc06241ce37e2e4b3ed21ace28d347eb511448d Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Wed, 6 Jun 2018 12:10:22 -0700
+Subject: [PATCH] Re-introduce spe commandline options
+
+This should ensure that we keep accepting
+spe options
+
+Upstream-Status: Inappropriate [SPE port is removed from rs600 port]
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/config/rs6000/rs6000.opt | 12 ++++++++++++
+ 1 file changed, 12 insertions(+)
+
+diff --git a/gcc/config/rs6000/rs6000.opt b/gcc/config/rs6000/rs6000.opt
+index f95b8279270..0e52d51409d 100644
+--- a/gcc/config/rs6000/rs6000.opt
++++ b/gcc/config/rs6000/rs6000.opt
+@@ -344,6 +344,18 @@ mdebug=
+ Target RejectNegative Joined
+ -mdebug=	Enable debug output.
+ 
++mspe
++Target Var(rs6000_spe) Save
++Generate SPE SIMD instructions on E500.
++
++mabi=spe
++Target RejectNegative Var(rs6000_spe_abi) Save
++Use the SPE ABI extensions.
++
++mabi=no-spe
++Target RejectNegative Var(rs6000_spe_abi, 0)
++Do not use the SPE ABI extensions.
++
+ mabi=altivec
+ Target RejectNegative Var(rs6000_altivec_abi) Save
+ Use the AltiVec ABI extensions.
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
new file mode 100644
index 0000000..4ce9dc6
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
@@ -0,0 +1,83 @@
+From b42ff59c3fe2967d37815c8db72a47b9b7f585b4 Mon Sep 17 00:00:00 2001
+From: Szabolcs Nagy <nsz@port70.net>
+Date: Sat, 24 Oct 2015 20:09:53 +0000
+Subject: [PATCH] libgcc_s: Use alias for __cpu_indicator_init instead of
+ symver
+
+Adapter from
+
+https://gcc.gnu.org/ml/gcc-patches/2015-05/msg00899.html
+
+This fix was debated but hasnt been applied gcc upstream since
+they expect musl to support '@' in symbol versioning which is
+a sun/gnu versioning extention. This patch however avoids the
+need for the '@' symbols at all
+
+libgcc/Changelog:
+
+2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
+
+	* config/i386/cpuinfo.c (__cpu_indicator_init_local): Add.
+	(__cpu_indicator_init@GCC_4.8.0, __cpu_model@GCC_4.8.0): Remove.
+
+	* config/i386/t-linux (HOST_LIBGCC2_CFLAGS): Remove -DUSE_ELF_SYMVER.
+
+gcc/Changelog:
+
+2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
+
+	* config/i386/i386-expand.c (ix86_expand_builtin): Make __builtin_cpu_init
+	call __cpu_indicator_init_local instead of __cpu_indicator_init.
+
+Upstream-Status: Pending
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/config/i386/i386-expand.c | 4 ++--
+ libgcc/config/i386/cpuinfo.c  | 6 +++---
+ libgcc/config/i386/t-linux    | 2 +-
+ 3 files changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/gcc/config/i386/i386-expand.c b/gcc/config/i386/i386-expand.c
+index 48f00c5fcfc..468f5f71fac 100644
+--- a/gcc/config/i386/i386-expand.c
++++ b/gcc/config/i386/i386-expand.c
+@@ -10941,10 +10941,10 @@ ix86_expand_builtin (tree exp, rtx target, rtx subtarget,
+     {
+     case IX86_BUILTIN_CPU_INIT:
+       {
+-	/* Make it call __cpu_indicator_init in libgcc. */
++	/* Make it call __cpu_indicator_init_local in libgcc.a. */
+ 	tree call_expr, fndecl, type;
+         type = build_function_type_list (integer_type_node, NULL_TREE); 
+-	fndecl = build_fn_decl ("__cpu_indicator_init", type);
++	fndecl = build_fn_decl ("__cpu_indicator_init_local", type);
+ 	call_expr = build_call_expr (fndecl, 0); 
+ 	return expand_expr (call_expr, target, mode, EXPAND_NORMAL);
+       }
+diff --git a/libgcc/config/i386/cpuinfo.c b/libgcc/config/i386/cpuinfo.c
+index 00322c58622..f42bbb8af98 100644
+--- a/libgcc/config/i386/cpuinfo.c
++++ b/libgcc/config/i386/cpuinfo.c
+@@ -508,7 +508,7 @@ __cpu_indicator_init (void)
+   return 0;
+ }
+ 
+-#if defined SHARED && defined USE_ELF_SYMVER
+-__asm__ (".symver __cpu_indicator_init, __cpu_indicator_init@GCC_4.8.0");
+-__asm__ (".symver __cpu_model, __cpu_model@GCC_4.8.0");
++#ifndef SHARED
++int __cpu_indicator_init_local (void)
++  __attribute__ ((weak, alias ("__cpu_indicator_init")));
+ #endif
+diff --git a/libgcc/config/i386/t-linux b/libgcc/config/i386/t-linux
+index 8506a635790..564296f788e 100644
+--- a/libgcc/config/i386/t-linux
++++ b/libgcc/config/i386/t-linux
+@@ -3,5 +3,5 @@
+ # t-slibgcc-elf-ver and t-linux
+ SHLIB_MAPFILES = libgcc-std.ver $(srcdir)/config/i386/libgcc-glibc.ver
+ 
+-HOST_LIBGCC2_CFLAGS += -mlong-double-80 -DUSE_ELF_SYMVER $(CET_FLAGS)
++HOST_LIBGCC2_CFLAGS += -mlong-double-80 $(CET_FLAGS)
+ CRTSTUFF_T_CFLAGS += $(CET_FLAGS)
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
new file mode 100644
index 0000000..dd1bf6d
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
@@ -0,0 +1,182 @@
+From 0395060a7dcf98c5f5a65103f6aaa71d6b862259 Mon Sep 17 00:00:00 2001
+From: Richard Purdie <richard.purdie@linuxfoundation.org>
+Date: Tue, 10 Mar 2020 08:26:53 -0700
+Subject: [PATCH] gentypes/genmodes: Do not use __LINE__ for maintaining
+ reproducibility
+
+Inserting line numbers into generated code means its not always reproducible wth
+differing versions of host gcc. Void the issue by not adding these.
+
+Upstream-Status: Inappropriate [OE Reproducibility specific]
+
+Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ gcc/gengtype.c |  6 +++---
+ gcc/genmodes.c | 32 ++++++++++++++++----------------
+ 2 files changed, 19 insertions(+), 19 deletions(-)
+
+diff --git a/gcc/gengtype.c b/gcc/gengtype.c
+index 981577481af..d5700fff401 100644
+--- a/gcc/gengtype.c
++++ b/gcc/gengtype.c
+@@ -991,7 +991,7 @@ create_field_at (pair_p next, type_p type, const char *name, options_p opt,
+ /* Create a fake field with the given type and name.  NEXT is the next
+    field in the chain.  */
+ #define create_field(next,type,name) \
+-    create_field_all (next,type,name, 0, this_file, __LINE__)
++    create_field_all (next,type,name, 0, this_file, 0)
+ 
+ /* Like create_field, but the field is only valid when condition COND
+    is true.  */
+@@ -1024,7 +1024,7 @@ create_optional_field_ (pair_p next, type_p type, const char *name,
+ }
+ 
+ #define create_optional_field(next,type,name,cond)	\
+-       create_optional_field_(next,type,name,cond,__LINE__)
++       create_optional_field_(next,type,name,cond,0)
+ 
+ /* Reverse a linked list of 'struct pair's in place.  */
+ pair_p
+@@ -5187,7 +5187,7 @@ main (int argc, char **argv)
+       /* These types are set up with #define or else outside of where
+          we can see them.  We should initialize them before calling
+          read_input_list.  */
+-#define POS_HERE(Call) do { pos.file = this_file; pos.line = __LINE__; \
++#define POS_HERE(Call) do { pos.file = this_file; pos.line = 0; \
+ 	Call;} while (0)
+       POS_HERE (do_scalar_typedef ("CUMULATIVE_ARGS", &pos));
+       POS_HERE (do_scalar_typedef ("REAL_VALUE_TYPE", &pos));
+diff --git a/gcc/genmodes.c b/gcc/genmodes.c
+index bd78310ea24..dbd02c51a4c 100644
+--- a/gcc/genmodes.c
++++ b/gcc/genmodes.c
+@@ -430,7 +430,7 @@ complete_all_modes (void)
+ }
+ 
+ /* For each mode in class CLASS, construct a corresponding complex mode.  */
+-#define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, __LINE__)
++#define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, 0)
+ static void
+ make_complex_modes (enum mode_class cl,
+ 		    const char *file, unsigned int line)
+@@ -489,7 +489,7 @@ make_complex_modes (enum mode_class cl,
+    having as many components as necessary.  ORDER is the sorting order
+    of the mode, with smaller numbers indicating a higher priority.  */
+ #define VECTOR_MODES_WITH_PREFIX(PREFIX, C, W, ORDER) \
+-  make_vector_modes (MODE_##C, #PREFIX, W, ORDER, __FILE__, __LINE__)
++  make_vector_modes (MODE_##C, #PREFIX, W, ORDER, __FILE__, 0)
+ #define VECTOR_MODES(C, W) VECTOR_MODES_WITH_PREFIX (V, C, W, 0)
+ static void ATTRIBUTE_UNUSED
+ make_vector_modes (enum mode_class cl, const char *prefix, unsigned int width,
+@@ -541,7 +541,7 @@ make_vector_modes (enum mode_class cl, const char *prefix, unsigned int width,
+ /* Create a vector of booleans called NAME with COUNT elements and
+    BYTESIZE bytes in total.  */
+ #define VECTOR_BOOL_MODE(NAME, COUNT, BYTESIZE) \
+-  make_vector_bool_mode (#NAME, COUNT, BYTESIZE, __FILE__, __LINE__)
++  make_vector_bool_mode (#NAME, COUNT, BYTESIZE, __FILE__, 0)
+ static void ATTRIBUTE_UNUSED
+ make_vector_bool_mode (const char *name, unsigned int count,
+ 		       unsigned int bytesize, const char *file,
+@@ -563,7 +563,7 @@ make_vector_bool_mode (const char *name, unsigned int count,
+ /* Input.  */
+ 
+ #define _SPECIAL_MODE(C, N) \
+-  make_special_mode (MODE_##C, #N, __FILE__, __LINE__)
++  make_special_mode (MODE_##C, #N, __FILE__, 0)
+ #define RANDOM_MODE(N) _SPECIAL_MODE (RANDOM, N)
+ #define CC_MODE(N) _SPECIAL_MODE (CC, N)
+ 
+@@ -576,7 +576,7 @@ make_special_mode (enum mode_class cl, const char *name,
+ 
+ #define INT_MODE(N, Y) FRACTIONAL_INT_MODE (N, -1U, Y)
+ #define FRACTIONAL_INT_MODE(N, B, Y) \
+-  make_int_mode (#N, B, Y, __FILE__, __LINE__)
++  make_int_mode (#N, B, Y, __FILE__, 0)
+ 
+ static void
+ make_int_mode (const char *name,
+@@ -589,16 +589,16 @@ make_int_mode (const char *name,
+ }
+ 
+ #define FRACT_MODE(N, Y, F) \
+-	make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, __LINE__)
++	make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, 0)
+ 
+ #define UFRACT_MODE(N, Y, F) \
+-	make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, __LINE__)
++	make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, 0)
+ 
+ #define ACCUM_MODE(N, Y, I, F) \
+-	make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, __LINE__)
++	make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, 0)
+ 
+ #define UACCUM_MODE(N, Y, I, F) \
+-	make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, __LINE__)
++	make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, 0)
+ 
+ /* Create a fixed-point mode by setting CL, NAME, BYTESIZE, IBIT, FBIT,
+    FILE, and LINE.  */
+@@ -619,7 +619,7 @@ make_fixed_point_mode (enum mode_class cl,
+ 
+ #define FLOAT_MODE(N, Y, F)             FRACTIONAL_FLOAT_MODE (N, -1U, Y, F)
+ #define FRACTIONAL_FLOAT_MODE(N, B, Y, F) \
+-  make_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
++  make_float_mode (#N, B, Y, #F, __FILE__, 0)
+ 
+ static void
+ make_float_mode (const char *name,
+@@ -636,7 +636,7 @@ make_float_mode (const char *name,
+ #define DECIMAL_FLOAT_MODE(N, Y, F)	\
+ 	FRACTIONAL_DECIMAL_FLOAT_MODE (N, -1U, Y, F)
+ #define FRACTIONAL_DECIMAL_FLOAT_MODE(N, B, Y, F)	\
+-  make_decimal_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
++  make_decimal_float_mode (#N, B, Y, #F, __FILE__, 0)
+ 
+ static void
+ make_decimal_float_mode (const char *name,
+@@ -651,7 +651,7 @@ make_decimal_float_mode (const char *name,
+ }
+ 
+ #define RESET_FLOAT_FORMAT(N, F) \
+-  reset_float_format (#N, #F, __FILE__, __LINE__)
++  reset_float_format (#N, #F, __FILE__, 0)
+ static void ATTRIBUTE_UNUSED
+ reset_float_format (const char *name, const char *format,
+ 		    const char *file, unsigned int line)
+@@ -672,7 +672,7 @@ reset_float_format (const char *name, const char *format,
+ 
+ /* __intN support.  */
+ #define INT_N(M,PREC)				\
+-  make_int_n (#M, PREC, __FILE__, __LINE__)
++  make_int_n (#M, PREC, __FILE__, 0)
+ static void ATTRIBUTE_UNUSED
+ make_int_n (const char *m, int bitsize,
+             const char *file, unsigned int line)
+@@ -701,7 +701,7 @@ make_int_n (const char *m, int bitsize,
+ /* Partial integer modes are specified by relation to a full integer
+    mode.  */
+ #define PARTIAL_INT_MODE(M,PREC,NAME)				\
+-  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, __LINE__)
++  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, 0)
+ static void ATTRIBUTE_UNUSED
+ make_partial_integer_mode (const char *base, const char *name,
+ 			   unsigned int precision,
+@@ -728,7 +728,7 @@ make_partial_integer_mode (const char *base, const char *name,
+ /* A single vector mode can be specified by naming its component
+    mode and the number of components.  */
+ #define VECTOR_MODE(C, M, N) \
+-  make_vector_mode (MODE_##C, #M, N, __FILE__, __LINE__);
++  make_vector_mode (MODE_##C, #M, N, __FILE__, 0);
+ static void ATTRIBUTE_UNUSED
+ make_vector_mode (enum mode_class bclass,
+ 		  const char *base,
+@@ -771,7 +771,7 @@ make_vector_mode (enum mode_class bclass,
+ 
+ /* Adjustability.  */
+ #define _ADD_ADJUST(A, M, X, C1, C2) \
+-  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, __LINE__)
++  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, 0)
+ 
+ #define ADJUST_NUNITS(M, X)    _ADD_ADJUST (nunits, M, X, RANDOM, RANDOM)
+ #define ADJUST_BYTESIZE(M, X)  _ADD_ADJUST (bytesize, M, X, RANDOM, RANDOM)
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
new file mode 100644
index 0000000..de82a3a
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
@@ -0,0 +1,26 @@
+From 6f87a095f0e696bec07a50df789c9db8bdbca43d Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 12 May 2020 10:39:09 -0700
+Subject: [PATCH] mingw32: Enable operation_not_supported
+
+Fixes nativesdk build errors on mingw32 gcc-runtime
+
+Upstream-Status: Pending
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ libstdc++-v3/config/os/mingw32/error_constants.h | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/libstdc++-v3/config/os/mingw32/error_constants.h b/libstdc++-v3/config/os/mingw32/error_constants.h
+index 68ac72a78fb..71cd5815b81 100644
+--- a/libstdc++-v3/config/os/mingw32/error_constants.h
++++ b/libstdc++-v3/config/os/mingw32/error_constants.h
+@@ -107,7 +107,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
+ #ifdef _GLIBCXX_HAVE_EPERM
+       operation_not_permitted = 		EPERM,
+ #endif
+-//    operation_not_supported = 		EOPNOTSUPP,
++      operation_not_supported = 		EOPNOTSUPP,
+ #ifdef _GLIBCXX_HAVE_EWOULDBLOCK
+       operation_would_block = 			EWOULDBLOCK,
+ #endif
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
new file mode 100644
index 0000000..3946ace
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
@@ -0,0 +1,42 @@
+From 38d262bfe7c0c894c364dc6e4dc7971e78a73974 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Wed, 13 May 2020 15:10:38 -0700
+Subject: [PATCH] libatomic: Do not enforce march on aarch64
+
+OE passes the right options via gcc compiler cmdline via TUNE_CCARGS
+this can conflict between -mcpu settings and -march setting here, since
+-mcpu will translate into an appropriate -march, lets depend on that
+instead of setting it explicitly
+
+Upstream-Status: Inappropriate [OE-Specific]
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ libatomic/Makefile.am | 1 -
+ libatomic/Makefile.in | 1 -
+ 2 files changed, 2 deletions(-)
+
+diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
+index 133fbbca77e..ac1ca645876 100644
+--- a/libatomic/Makefile.am
++++ b/libatomic/Makefile.am
+@@ -125,7 +125,6 @@ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix _$(s)_.lo,$(SIZEOBJS)))
+ ## On a target-specific basis, include alternates to be selected by IFUNC.
+ if HAVE_IFUNC
+ if ARCH_AARCH64_LINUX
+-IFUNC_OPTIONS	     = -march=armv8-a+lse
+ libatomic_la_LIBADD += $(foreach s,$(SIZES),$(addsuffix _$(s)_1_.lo,$(SIZEOBJS)))
+ endif
+ if ARCH_ARM_LINUX
+diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
+index a51807e95c9..97df2d7ff03 100644
+--- a/libatomic/Makefile.in
++++ b/libatomic/Makefile.in
+@@ -431,7 +431,6 @@ M_SRC = $(firstword $(filter %/$(M_FILE), $(all_c_files)))
+ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix \
+ 	_$(s)_.lo,$(SIZEOBJS))) $(am__append_1) $(am__append_2) \
+ 	$(am__append_3) $(am__append_4)
+-@ARCH_AARCH64_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv8-a+lse
+ @ARCH_ARM_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv7-a+fp -DHAVE_KERNEL64
+ @ARCH_I386_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=i586
+ @ARCH_X86_64_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -mcx16
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
new file mode 100644
index 0000000..8987a4c
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
@@ -0,0 +1,5 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/gcc-cross-canadian.inc
+
+
+
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
new file mode 100644
index 0000000..0a8aa75
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
@@ -0,0 +1,3 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/gcc-cross.inc
+
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
new file mode 100644
index 0000000..0a9f98a
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
@@ -0,0 +1,2 @@
+require recipes-devtools/gcc/gcc-cross_${PV}.bb
+require recipes-devtools/gcc/gcc-crosssdk.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
new file mode 100644
index 0000000..b755f55
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
@@ -0,0 +1,2 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/gcc-runtime.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
new file mode 100644
index 0000000..9c41e92
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
@@ -0,0 +1,7 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/gcc-sanitizers.inc
+
+# Building with thumb enabled on armv4t armv5t fails with
+# sanitizer_linux.s:5749: Error: lo register required -- `ldr ip,[sp],#8'
+ARM_INSTRUCTION_SET_armv4 = "arm"
+ARM_INSTRUCTION_SET_armv5 = "arm"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
new file mode 100644
index 0000000..b890fa3
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
@@ -0,0 +1,4 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/gcc-source.inc
+
+EXCLUDE_FROM_WORLD = "1"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
new file mode 100644
index 0000000..51a0877
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
@@ -0,0 +1,15 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/gcc-target.inc
+require recipes-devtools/gcc/gcc-arm-common.inc
+
+# Building with thumb enabled on armv4t armv5t fails with
+# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7438:(.text.unlikely+0x2fa): relocation truncated to fit: R_ARM_THM_CALL against symbol `fancy_abort(char const*, int, char const*)' defined in .glue_7 section in linker stubs
+# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7442:(.text.unlikely+0x318): additional relocation overflows omitted from the output
+ARM_INSTRUCTION_SET_armv4 = "arm"
+ARM_INSTRUCTION_SET_armv5 = "arm"
+
+ARMFPARCHEXT_armv6 = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
+ARMFPARCHEXT_armv7a = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
+ARMFPARCHEXT_armv7ve = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
+
+BBCLASSEXTEND = "nativesdk"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
new file mode 100644
index 0000000..32f3dc0
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
@@ -0,0 +1,5 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/libgcc-initial.inc
+
+# Building with thumb enabled on armv6t fails
+ARM_INSTRUCTION_SET_armv6 = "arm"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
new file mode 100644
index 0000000..572bab1
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
@@ -0,0 +1,5 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/libgcc.inc
+
+# Building with thumb enabled on armv6t fails
+ARM_INSTRUCTION_SET_armv6 = "arm"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
new file mode 100644
index 0000000..4e5688e
--- /dev/null
+++ b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
@@ -0,0 +1,3 @@
+require recipes-devtools/gcc/gcc-${PV}.inc
+require recipes-devtools/gcc/libgfortran.inc
+
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [meta-arm][PATCH 2/2] arm-toolchain: Drop support for GCC 8.x toolchain
  2021-01-06 12:22 [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11 Sumit Garg
@ 2021-01-06 12:22 ` Sumit Garg
  2021-01-06 23:19 ` [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11 Ross Burton
  2021-01-08 14:47 ` Jon Mason
  2 siblings, 0 replies; 5+ messages in thread
From: Sumit Garg @ 2021-01-06 12:22 UTC (permalink / raw)
  To: meta-arm
  Cc: jon.mason, ross.burton, denys, nicolas.dechesne, daniel.thompson,
	Sumit Garg

As OE core has moved to GCC 10.2 toolchain, so remove support for
legacy Arm 8.x toolchain.

Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
---
 .../recipes-devtools/gcc/gcc-arm-8.2.inc      | 115 -----
 ...0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch |  42 --
 .../0003-gcc-poison-system-directories.patch  | 194 --------
 ...-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch |  73 ---
 .../0006-64-bit-multilib-hack.patch           |  85 ----
 .../gcc-arm-8.2/0007-optional-libstdc.patch   | 125 -----
 ...gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch |  59 ---
 .../0009-COLLECT_GCC_OPTIONS.patch            |  38 --
 ...ts.h-in-B-instead-of-S-and-t-oe-in-B.patch |  96 ----
 .../0011-fortran-cross-compile-hack.patch     |  46 --
 .../gcc-arm-8.2/0012-cpp-honor-sysroot.patch  |  54 --
 .../0013-MIPS64-Default-to-N64-ABI.patch      |  57 ---
 ...AMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch | 248 ----------
 ...gcc-Fix-argument-list-too-long-error.patch |  40 --
 .../gcc/gcc-arm-8.2/0016-Disable-sdt.patch    | 113 -----
 .../gcc/gcc-arm-8.2/0017-libtool.patch        |  42 --
 ...s-fix-v4bx-to-linker-to-support-EABI.patch |  43 --
 ...-config-files-from-B-instead-of-usin.patch | 102 ----
 ...ir-from-.la-which-usually-points-to-.patch |  31 --
 .../gcc/gcc-arm-8.2/0021-export-CPP.patch     |  53 --
 ...ILIB_OSDIRNAMES-and-other-multilib-o.patch |  42 --
 ...e-target-gcc-headers-can-be-included.patch |  62 ---
 ...ild-with-disable-dependency-tracking.patch |  54 --
 ...t-directory-during-relink-if-inst_pr.patch |  38 --
 ...IR-replacement-instead-of-hardcoding.patch |  29 --
 ...27-aarch64-Add-support-for-musl-ldso.patch |  28 --
 ...-fix-libcc1-s-install-path-and-rpath.patch |  54 --
 ...le-sysroot-support-for-nativesdk-gcc.patch | 213 --------
 ...sroot-gcc-version-specific-dirs-with.patch | 102 ----
 ...ous-_FOR_BUILD-and-related-variables.patch | 137 ------
 ...032-nios2-Define-MUSL_DYNAMIC_LINKER.patch |  28 --
 ...d-to-link-commandline-for-musl-targe.patch |  87 ----
 ...bgcc-Add-knob-to-use-ldbl-128-on-ppc.patch | 465 ------------------
 ...using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch |  29 --
 ...as-for-__cpu_indicator_init-instead-.patch |  86 ----
 .../0037-sync-gcc-stddef.h-with-musl.patch    |  91 ----
 ...-fault-in-precompiled-header-generat.patch |  60 ---
 .../0039-Fix-for-testsuite-failure.patch      | 258 ----------
 ...Re-introduce-spe-commandline-options.patch |  41 --
 .../gcc-arm-8.2/0041-ARC-fix-spec-gen.patch   |  44 --
 ...-powerpc64-Add-support-for-musl-ldso.patch |  31 --
 .../0043-riscv-Disable-multilib-for-OE.patch  |  27 -
 .../recipes-devtools/gcc/gcc-arm-8.3.inc      | 114 -----
 ...0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch |  42 --
 .../0002-gcc-poison-system-directories.patch  | 203 --------
 ...-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch |  73 ---
 .../0004-64-bit-multilib-hack.patch           |  85 ----
 .../gcc-arm-8.3/0005-optional-libstdc.patch   | 125 -----
 ...gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch |  59 ---
 .../0007-COLLECT_GCC_OPTIONS.patch            |  38 --
 ...ts.h-in-B-instead-of-S-and-t-oe-in-B.patch |  96 ----
 .../0009-fortran-cross-compile-hack.patch     |  46 --
 .../gcc-arm-8.3/0010-cpp-honor-sysroot.patch  |  54 --
 .../0011-MIPS64-Default-to-N64-ABI.patch      |  57 ---
 ...AMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch | 248 ----------
 ...gcc-Fix-argument-list-too-long-error.patch |  40 --
 .../gcc/gcc-arm-8.3/0014-Disable-sdt.patch    | 113 -----
 .../gcc/gcc-arm-8.3/0015-libtool.patch        |  42 --
 ...s-fix-v4bx-to-linker-to-support-EABI.patch |  43 --
 ...-config-files-from-B-instead-of-usin.patch | 102 ----
 ...ir-from-.la-which-usually-points-to-.patch |  31 --
 .../gcc/gcc-arm-8.3/0019-export-CPP.patch     |  53 --
 ...ILIB_OSDIRNAMES-and-other-multilib-o.patch |  42 --
 ...e-target-gcc-headers-can-be-included.patch |  98 ----
 ...ild-with-disable-dependency-tracking.patch |  54 --
 ...t-directory-during-relink-if-inst_pr.patch |  38 --
 ...IR-replacement-instead-of-hardcoding.patch |  28 --
 ...25-aarch64-Add-support-for-musl-ldso.patch |  28 --
 ...-fix-libcc1-s-install-path-and-rpath.patch |  54 --
 ...le-sysroot-support-for-nativesdk-gcc.patch | 213 --------
 ...sroot-gcc-version-specific-dirs-with.patch | 102 ----
 ...ous-_FOR_BUILD-and-related-variables.patch | 137 ------
 ...030-nios2-Define-MUSL_DYNAMIC_LINKER.patch |  28 --
 ...d-to-link-commandline-for-musl-targe.patch |  87 ----
 ...bgcc-Add-knob-to-use-ldbl-128-on-ppc.patch | 125 -----
 ...using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch |  29 --
 ...as-for-__cpu_indicator_init-instead-.patch |  85 ----
 .../0035-sync-gcc-stddef.h-with-musl.patch    |  91 ----
 ...-fault-in-precompiled-header-generat.patch |  60 ---
 .../0037-Fix-for-testsuite-failure.patch      | 258 ----------
 ...Re-introduce-spe-commandline-options.patch |  41 --
 .../0039-riscv-Disable-multilib-for-OE.patch  |  27 -
 ...-powerpc64-Add-support-for-musl-ldso.patch |  31 --
 .../gcc/gcc-cross-canadian_arm-8.2.bb         |   5 -
 .../gcc/gcc-cross-canadian_arm-8.3.bb         |   5 -
 .../recipes-devtools/gcc/gcc-cross_arm-8.2.bb |   3 -
 .../recipes-devtools/gcc/gcc-cross_arm-8.3.bb |   3 -
 .../gcc/gcc-crosssdk_arm-8.2.bb               |   2 -
 .../gcc/gcc-crosssdk_arm-8.3.bb               |   2 -
 .../gcc/gcc-runtime_arm-8.2.bb                |   7 -
 .../gcc/gcc-runtime_arm-8.3.bb                |   7 -
 .../gcc/gcc-sanitizers_arm-8.2.bb             |   2 -
 .../gcc/gcc-sanitizers_arm-8.3.bb             |   2 -
 .../gcc/gcc-source_arm-8.2.bb                 |   4 -
 .../gcc/gcc-source_arm-8.3.bb                 |   4 -
 .../recipes-devtools/gcc/gcc_arm-8.2.bb       |  15 -
 .../recipes-devtools/gcc/gcc_arm-8.3.bb       |  15 -
 .../gcc/libgcc-initial_arm-8.2.bb             |   2 -
 .../gcc/libgcc-initial_arm-8.3.bb             |   2 -
 .../recipes-devtools/gcc/libgcc_arm-8.2.bb    |   2 -
 .../recipes-devtools/gcc/libgcc_arm-8.3.bb    |   2 -
 .../gcc/libgfortran_arm-8.2.bb                |   3 -
 .../gcc/libgfortran_arm-8.3.bb                |   3 -
 103 files changed, 7072 deletions(-)
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2.inc
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0003-gcc-poison-system-directories.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0005-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0006-64-bit-multilib-hack.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0007-optional-libstdc.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0008-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0009-COLLECT_GCC_OPTIONS.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0010-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0011-fortran-cross-compile-hack.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0012-cpp-honor-sysroot.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0013-MIPS64-Default-to-N64-ABI.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0014-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0015-gcc-Fix-argument-list-too-long-error.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0016-Disable-sdt.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0017-libtool.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0018-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0019-Use-the-multilib-config-files-from-B-instead-of-usin.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0020-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0021-export-CPP.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0022-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0023-Ensure-target-gcc-headers-can-be-included.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0024-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0025-Don-t-search-host-directory-during-relink-if-inst_pr.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0026-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0027-aarch64-Add-support-for-musl-ldso.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0028-libcc1-fix-libcc1-s-install-path-and-rpath.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0029-handle-sysroot-support-for-nativesdk-gcc.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0030-Search-target-sysroot-gcc-version-specific-dirs-with.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0031-Fix-various-_FOR_BUILD-and-related-variables.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0032-nios2-Define-MUSL_DYNAMIC_LINKER.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0033-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0034-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0035-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0036-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0037-sync-gcc-stddef.h-with-musl.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0038-fix-segmentation-fault-in-precompiled-header-generat.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0039-Fix-for-testsuite-failure.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0040-Re-introduce-spe-commandline-options.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0041-ARC-fix-spec-gen.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0042-powerpc-powerpc64-Add-support-for-musl-ldso.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0043-riscv-Disable-multilib-for-OE.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3.inc
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0002-gcc-poison-system-directories.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0004-64-bit-multilib-hack.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0005-optional-libstdc.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0006-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0007-COLLECT_GCC_OPTIONS.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0008-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0009-fortran-cross-compile-hack.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0010-cpp-honor-sysroot.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0011-MIPS64-Default-to-N64-ABI.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0012-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0013-gcc-Fix-argument-list-too-long-error.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0014-Disable-sdt.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0015-libtool.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0016-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0017-Use-the-multilib-config-files-from-B-instead-of-usin.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0018-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0019-export-CPP.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0020-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0021-Ensure-target-gcc-headers-can-be-included.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0022-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0023-Don-t-search-host-directory-during-relink-if-inst_pr.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0024-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0025-aarch64-Add-support-for-musl-ldso.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0026-libcc1-fix-libcc1-s-install-path-and-rpath.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0027-handle-sysroot-support-for-nativesdk-gcc.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0028-Search-target-sysroot-gcc-version-specific-dirs-with.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0029-Fix-various-_FOR_BUILD-and-related-variables.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0030-nios2-Define-MUSL_DYNAMIC_LINKER.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0031-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0032-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0033-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0035-sync-gcc-stddef.h-with-musl.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0036-fix-segmentation-fault-in-precompiled-header-generat.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0037-Fix-for-testsuite-failure.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0038-Re-introduce-spe-commandline-options.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0039-riscv-Disable-multilib-for-OE.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0040-powerpc-powerpc64-Add-support-for-musl-ldso.patch
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-8.3.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-8.2.bb
 delete mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-8.3.bb

diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2.inc b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2.inc
deleted file mode 100644
index 65fbeff..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2.inc
+++ /dev/null
@@ -1,115 +0,0 @@
-require recipes-devtools/gcc/gcc-common.inc
-
-BASEPV = "8.2"
-PV = "arm-${BASEPV}"
-CVE_VERSION = "${BASEPV}"
-
-MMYY = "19.01"
-RELEASE = "20${MMYY}"
-PR = "r${RELEASE}"
-BINV = "${BASEPV}.1"
-
-FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc-${BASEPV}:${FILE_DIRNAME}/gcc-${BASEPV}/backport:"
-
-DEPENDS =+ "mpfr gmp libmpc zlib flex-native"
-NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native flex-native"
-
-LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
-
-LIC_FILES_CHKSUM = "\
-    file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
-    file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
-    file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
-    file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
-    file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \
-"
-
-#BASEURI ?= "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2"
-SRCREV = "1a721bce9532193e63acdcdb56fc16e8ac70b20a"
-BASEURI ?= "git://git.linaro.org/toolchain/gcc.git;protocol=https;branch=linaro-local/ARM/arm-8-branch"
-
-SRC_URI = "\
-           ${BASEURI} \
-           file://0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \
-           file://0003-gcc-poison-system-directories.patch \
-           file://0005-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch \
-           file://0006-64-bit-multilib-hack.patch \
-           file://0007-optional-libstdc.patch \
-           file://0008-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch \
-           file://0009-COLLECT_GCC_OPTIONS.patch \
-           file://0010-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \
-           file://0011-fortran-cross-compile-hack.patch \
-           file://0012-cpp-honor-sysroot.patch \
-           file://0013-MIPS64-Default-to-N64-ABI.patch \
-           file://0014-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \
-           file://0015-gcc-Fix-argument-list-too-long-error.patch \
-           file://0016-Disable-sdt.patch \
-           file://0017-libtool.patch \
-           file://0018-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch \
-           file://0019-Use-the-multilib-config-files-from-B-instead-of-usin.patch \
-           file://0020-Avoid-using-libdir-from-.la-which-usually-points-to-.patch \
-           file://0021-export-CPP.patch \
-           file://0022-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch \
-           file://0023-Ensure-target-gcc-headers-can-be-included.patch \
-           file://0024-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch \
-           file://0025-Don-t-search-host-directory-during-relink-if-inst_pr.patch \
-           file://0026-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch \
-           file://0027-aarch64-Add-support-for-musl-ldso.patch \
-           file://0028-libcc1-fix-libcc1-s-install-path-and-rpath.patch \
-           file://0029-handle-sysroot-support-for-nativesdk-gcc.patch \
-           file://0030-Search-target-sysroot-gcc-version-specific-dirs-with.patch \
-           file://0031-Fix-various-_FOR_BUILD-and-related-variables.patch \
-           file://0032-nios2-Define-MUSL_DYNAMIC_LINKER.patch \
-           file://0033-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch \
-           file://0034-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch \
-           file://0035-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \
-           file://0036-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \
-           file://0037-sync-gcc-stddef.h-with-musl.patch \
-           file://0038-fix-segmentation-fault-in-precompiled-header-generat.patch \
-           file://0039-Fix-for-testsuite-failure.patch \
-           file://0040-Re-introduce-spe-commandline-options.patch \
-           file://0041-ARC-fix-spec-gen.patch \
-           file://0042-powerpc-powerpc64-Add-support-for-musl-ldso.patch \
-           file://0043-riscv-Disable-multilib-for-OE.patch \
-           ${BACKPORTS} \
-"
-BACKPORTS = "\
-"
-
-S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/git"
-#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${PV}"
-#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/git"
-#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${RELEASE}"
-B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
-
-# Language Overrides
-FORTRAN = ""
-JAVA = ""
-
-LTO = "--enable-lto"
-SSP ?= "--disable-libssp"
-SSP_mingw32 = "--enable-libssp"
-
-EXTRA_OECONF_BASE = "\
-    ${LTO} \
-    ${SSP} \
-    --enable-libitm \
-    --disable-bootstrap \
-    --disable-libmudflap \
-    --with-system-zlib \
-    ${@'--with-linker-hash-style=${LINKER_HASH_STYLE}' if '${LINKER_HASH_STYLE}' else ''} \
-    --enable-linker-build-id \
-    --with-ppl=no \
-    --with-cloog=no \
-    --enable-checking=release \
-    --enable-cheaders=c_global \
-    --without-isl \
-"
-
-EXTRA_OECONF_append_aarchilp32 = " --with-abi=ilp32"
-
-EXTRA_OECONF_PATHS = "\
-    --with-gxx-include-dir=/not/exist{target_includedir}/c++/${BINV} \
-    --with-sysroot=/not/exist \
-    --with-build-sysroot=${STAGING_DIR_TARGET} \
-"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
deleted file mode 100644
index 423fe28..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From b752fb2b6d6f6da68da5386b96abf0d74cd4bbe6 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 08:37:11 +0400
-Subject: [PATCH 01/39] gcc-4.3.1: ARCH_FLAGS_FOR_TARGET
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [embedded specific]
----
- configure    | 2 +-
- configure.ac | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/configure b/configure
-index 69c99e99cca..517fb70192e 100755
---- a/configure
-+++ b/configure
-@@ -7511,7 +7511,7 @@ fi
- # for target_alias and gcc doesn't manage it consistently.
- target_configargs="--cache-file=./config.cache ${target_configargs}"
- 
--FLAGS_FOR_TARGET=
-+FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
- case " $target_configdirs " in
-  *" newlib "*)
-   case " $target_configargs " in
-diff --git a/configure.ac b/configure.ac
-index a1edc369a27..f8c254f1fac 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -3100,7 +3100,7 @@ fi
- # for target_alias and gcc doesn't manage it consistently.
- target_configargs="--cache-file=./config.cache ${target_configargs}"
- 
--FLAGS_FOR_TARGET=
-+FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
- case " $target_configdirs " in
-  *" newlib "*)
-   case " $target_configargs " in
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0003-gcc-poison-system-directories.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0003-gcc-poison-system-directories.patch
deleted file mode 100644
index 0513897..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0003-gcc-poison-system-directories.patch
+++ /dev/null
@@ -1,194 +0,0 @@
-From 48c670d2678e0323d88eb72205e039f393cabe05 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 08:59:00 +0400
-Subject: [PATCH 03/39] gcc: poison-system-directories
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [distribution: codesourcery]
----
- gcc/common.opt      |  4 ++++
- gcc/config.in       |  6 ++++++
- gcc/configure       | 16 ++++++++++++++++
- gcc/configure.ac    | 10 ++++++++++
- gcc/doc/invoke.texi |  9 +++++++++
- gcc/gcc.c           |  2 ++
- gcc/incpath.c       | 19 +++++++++++++++++++
- 7 files changed, 66 insertions(+)
-
-diff --git a/gcc/common.opt b/gcc/common.opt
-index d6ef85928f3..7b29efe3882 100644
---- a/gcc/common.opt
-+++ b/gcc/common.opt
-@@ -679,6 +679,10 @@ Wreturn-local-addr
- Common Var(warn_return_local_addr) Init(1) Warning
- Warn about returning a pointer/reference to a local or temporary variable.
- 
-+Wpoison-system-directories
-+Common Var(flag_poison_system_directories) Init(1) Warning
-+Warn for -I and -L options using system directories if cross compiling
-+
- Wshadow
- Common Var(warn_shadow) Warning
- Warn when one variable shadows another.  Same as -Wshadow=global.
-diff --git a/gcc/config.in b/gcc/config.in
-index 5bccb408016..1c784a8276b 100644
---- a/gcc/config.in
-+++ b/gcc/config.in
-@@ -194,6 +194,12 @@
- #endif
- 
- 
-+/* Define to warn for use of native system header directories */
-+#ifndef USED_FOR_TARGET
-+#undef ENABLE_POISON_SYSTEM_DIRECTORIES
-+#endif
-+
-+
- /* Define if you want all operations on RTL (the basic data structure of the
-    optimizer and back end) to be checked for dynamic type safety at runtime.
-    This is quite expensive. */
-diff --git a/gcc/configure b/gcc/configure
-index 5c345ce0fd7..cafd05fd150 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -953,6 +953,7 @@ with_system_zlib
- enable_maintainer_mode
- enable_link_mutex
- enable_version_specific_runtime_libs
-+enable_poison_system_directories
- enable_plugin
- enable_host_shared
- enable_libquadmath_support
-@@ -1696,6 +1697,8 @@ Optional Features:
-   --enable-version-specific-runtime-libs
-                           specify that runtime libraries should be installed
-                           in a compiler-specific directory
-+  --enable-poison-system-directories
-+                          warn for use of native system header directories
-   --enable-plugin         enable plugin support
-   --enable-host-shared    build host code as shared libraries
-   --disable-libquadmath-support
-@@ -29715,6 +29718,19 @@ if test "${enable_version_specific_runtime_libs+set}" = set; then :
- fi
- 
- 
-+# Check whether --enable-poison-system-directories was given.
-+if test "${enable_poison_system_directories+set}" = set; then :
-+  enableval=$enable_poison_system_directories;
-+else
-+  enable_poison_system_directories=no
-+fi
-+
-+if test "x${enable_poison_system_directories}" = "xyes"; then
-+
-+$as_echo "#define ENABLE_POISON_SYSTEM_DIRECTORIES 1" >>confdefs.h
-+
-+fi
-+
- # Substitute configuration variables
- 
- 
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 65dbf1f2f80..dd5b38195ce 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -6341,6 +6341,16 @@ AC_ARG_ENABLE(version-specific-runtime-libs,
-                 [specify that runtime libraries should be
-                  installed in a compiler-specific directory])])
- 
-+AC_ARG_ENABLE([poison-system-directories],
-+             AS_HELP_STRING([--enable-poison-system-directories],
-+                            [warn for use of native system header directories]),,
-+             [enable_poison_system_directories=no])
-+if test "x${enable_poison_system_directories}" = "xyes"; then
-+  AC_DEFINE([ENABLE_POISON_SYSTEM_DIRECTORIES],
-+           [1],
-+           [Define to warn for use of native system header directories])
-+fi
-+
- # Substitute configuration variables
- AC_SUBST(subdirs)
- AC_SUBST(srcdir)
-diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
-index 255149fcfb8..cb71b60fe3c 100644
---- a/gcc/doc/invoke.texi
-+++ b/gcc/doc/invoke.texi
-@@ -303,6 +303,7 @@ Objective-C and Objective-C++ Dialects}.
- -Wpacked  -Wpacked-bitfield-compat -Wpacked-not-aligned -Wpadded @gol
- -Wparentheses  -Wno-pedantic-ms-format @gol
- -Wplacement-new  -Wplacement-new=@var{n} @gol
-+-Wno-poison-system-directories @gol
- -Wpointer-arith  -Wpointer-compare  -Wno-pointer-to-int-cast @gol
- -Wno-pragmas  -Wredundant-decls  -Wrestrict  -Wno-return-local-addr @gol
- -Wreturn-type  -Wsequence-point  -Wshadow  -Wno-shadow-ivar @gol
-@@ -5712,6 +5713,14 @@ made up of data only and thus requires no special treatment.  But, for
- most targets, it is made up of code and thus requires the stack to be
- made executable in order for the program to work properly.
- 
-+@item -Wno-poison-system-directories
-+@opindex Wno-poison-system-directories
-+Do not warn for @option{-I} or @option{-L} options using system
-+directories such as @file{/usr/include} when cross compiling.  This
-+option is intended for use in chroot environments when such
-+directories contain the correct headers and libraries for the target
-+system rather than the host.
-+
- @item -Wfloat-equal
- @opindex Wfloat-equal
- @opindex Wno-float-equal
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index a716f708259..02b3cd39fc2 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -1037,6 +1037,8 @@ proper position among the other output files.  */
-    "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
-    "%X %{o*} %{e*} %{N} %{n} %{r}\
-     %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!nostartfiles:%S}} \
-+    %{Wno-poison-system-directories:--no-poison-system-directories} \
-+    %{Werror=poison-system-directories:--error-poison-system-directories} \
-     %{static|no-pie|static-pie:} %{L*} %(mfwrap) %(link_libgcc) " \
-     VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o " CHKP_SPEC " \
-     %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
-diff --git a/gcc/incpath.c b/gcc/incpath.c
-index b11c6a57939..e3b7a21966f 100644
---- a/gcc/incpath.c
-+++ b/gcc/incpath.c
-@@ -26,6 +26,7 @@
- #include "intl.h"
- #include "incpath.h"
- #include "cppdefault.h"
-+#include "diagnostic-core.h"
- 
- /* Microsoft Windows does not natively support inodes.
-    VMS has non-numeric inodes.  */
-@@ -393,6 +394,26 @@ merge_include_chains (const char *sysroot, cpp_reader *pfile, int verbose)
- 	}
-       fprintf (stderr, _("End of search list.\n"));
-     }
-+
-+#ifdef ENABLE_POISON_SYSTEM_DIRECTORIES
-+  if (flag_poison_system_directories)
-+    {
-+       struct cpp_dir *p;
-+
-+       for (p = heads[INC_QUOTE]; p; p = p->next)
-+         {
-+          if ((!strncmp (p->name, "/usr/include", 12))
-+              || (!strncmp (p->name, "/usr/local/include", 18))
-+              || (!strncmp (p->name, "/usr/X11R6/include", 18))
-+              || (!strncmp (p->name, "/sw/include", 11))
-+              || (!strncmp (p->name, "/opt/include", 12)))
-+            warning (OPT_Wpoison_system_directories,
-+                     "include location \"%s\" is unsafe for "
-+                     "cross-compilation",
-+                     p->name);
-+         }
-+    }
-+#endif
- }
- 
- /* Use given -I paths for #include "..." but not #include <...>, and
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0005-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0005-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
deleted file mode 100644
index 8b1b976..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0005-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
+++ /dev/null
@@ -1,73 +0,0 @@
-From ae3fe6e5e50937de6e4223ca90810187372a8cf5 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:08:31 +0400
-Subject: [PATCH 05/39] gcc-4.3.3: SYSROOT_CFLAGS_FOR_TARGET
-
-Before committing, I noticed that PR/32161 was marked as a dup of PR/32009, but my previous patch did not fix it.
-
-This alternative patch is better because it lets you just use CFLAGS_FOR_TARGET to set the compilation flags for libgcc. Since bootstrapped target libraries are never compiled with the native compiler, it makes little sense to use different flags for stage1 and later stages. And it also makes little sense to use a different variable than CFLAGS_FOR_TARGET.
-
-Other changes I had to do include:
-
-- moving the creation of default CFLAGS_FOR_TARGET from Makefile.am to configure.ac, because otherwise the BOOT_CFLAGS are substituted into CFLAGS_FOR_TARGET (which is "-O2 -g $(CFLAGS)") via $(CFLAGS). It is also cleaner this way though.
-
-- passing the right CFLAGS to configure scripts as exported environment variables
-
-I also stopped passing LIBCFLAGS to configure scripts since they are unused in the whole src tree. And I updated the documentation as H-P reminded me to do.
-
-Bootstrapped/regtested i686-pc-linux-gnu, will commit to 4.4 shortly. Ok for 4.3?
-
-Signed-off-by: Paolo Bonzini  <bonzini@gnu.org>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- configure | 32 ++++++++++++++++++++++++++++++++
- 1 file changed, 32 insertions(+)
-
-diff --git a/configure b/configure
-index 517fb70192e..acd2b97df40 100755
---- a/configure
-+++ b/configure
-@@ -6772,6 +6772,38 @@ fi
- 
- 
- 
-+# During gcc bootstrap, if we use some random cc for stage1 then CFLAGS
-+# might be empty or "-g".  We don't require a C++ compiler, so CXXFLAGS
-+# might also be empty (or "-g", if a non-GCC C++ compiler is in the path).
-+# We want to ensure that TARGET libraries (which we know are built with
-+# gcc) are built with "-O2 -g", so include those options when setting
-+# CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
-+if test "x$CFLAGS_FOR_TARGET" = x; then
-+  CFLAGS_FOR_TARGET=$CFLAGS
-+  case " $CFLAGS " in
-+    *" -O2 "*) ;;
-+    *) CFLAGS_FOR_TARGET="-O2 $CFLAGS" ;;
-+  esac
-+  case " $CFLAGS " in
-+    *" -g "* | *" -g3 "*) ;;
-+    *) CFLAGS_FOR_TARGET="-g $CFLAGS" ;;
-+  esac
-+fi
-+
-+
-+if test "x$CXXFLAGS_FOR_TARGET" = x; then
-+  CXXFLAGS_FOR_TARGET=$CXXFLAGS
-+  case " $CXXFLAGS " in
-+    *" -O2 "*) ;;
-+    *) CXXFLAGS_FOR_TARGET="-O2 $CXXFLAGS" ;;
-+  esac
-+  case " $CXXFLAGS " in
-+    *" -g "* | *" -g3 "*) ;;
-+    *) CXXFLAGS_FOR_TARGET="-g $CXXFLAGS" ;;
-+  esac
-+fi
-+
-+
- # Handle --with-headers=XXX.  If the value is not "yes", the contents of
- # the named directory are copied to $(tooldir)/sys-include.
- if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0006-64-bit-multilib-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0006-64-bit-multilib-hack.patch
deleted file mode 100644
index 0dce95c..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0006-64-bit-multilib-hack.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-From 89af3b7399313b337f06c19cc2d787aa16d27711 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:10:06 +0400
-Subject: [PATCH 06/39] 64-bit multilib hack.
-
-GCC has internal multilib handling code but it assumes a very specific rigid directory
-layout. The build system implementation of multilib layout is very generic and allows
-complete customisation of the library directories.
-
-This patch is a partial solution to allow any custom directories to be passed into gcc
-and handled correctly. It forces gcc to use the base_libdir (which is the current
-directory, "."). We need to do this for each multilib that is configured as we don't
-know which compiler options may be being passed into the compiler. Since we have a compiler
-per mulitlib at this point that isn't an issue.
-
-The one problem is the target compiler is only going to work for the default multlilib at
-this point. Ideally we'd figure out which multilibs were being enabled with which paths
-and be able to patch these entries with a complete set of correct paths but this we
-don't have such code at this point. This is something the target gcc recipe should do
-and override these platform defaults in its build config.
-
-RP 15/8/11
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/config/i386/t-linux64   |  6 ++----
- gcc/config/mips/t-linux64   | 10 +++-------
- gcc/config/rs6000/t-linux64 |  5 ++---
- 3 files changed, 7 insertions(+), 14 deletions(-)
-
-diff --git a/gcc/config/i386/t-linux64 b/gcc/config/i386/t-linux64
-index 8ea0faff369..266c6008004 100644
---- a/gcc/config/i386/t-linux64
-+++ b/gcc/config/i386/t-linux64
-@@ -32,7 +32,5 @@
- #
- comma=,
- MULTILIB_OPTIONS    = $(subst $(comma),/,$(TM_MULTILIB_CONFIG))
--MULTILIB_DIRNAMES   = $(patsubst m%, %, $(subst /, ,$(MULTILIB_OPTIONS)))
--MULTILIB_OSDIRNAMES = m64=../lib64$(call if_multiarch,:x86_64-linux-gnu)
--MULTILIB_OSDIRNAMES+= m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:i386-linux-gnu)
--MULTILIB_OSDIRNAMES+= mx32=../libx32$(call if_multiarch,:x86_64-linux-gnux32)
-+MULTILIB_DIRNAMES = . .
-+MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
-diff --git a/gcc/config/mips/t-linux64 b/gcc/config/mips/t-linux64
-index c017b7d04c5..126892cf40b 100644
---- a/gcc/config/mips/t-linux64
-+++ b/gcc/config/mips/t-linux64
-@@ -17,10 +17,6 @@
- # <http://www.gnu.org/licenses/>.
- 
- MULTILIB_OPTIONS = mabi=n32/mabi=32/mabi=64
--MULTILIB_DIRNAMES = n32 32 64
--MIPS_EL = $(if $(filter %el, $(firstword $(subst -, ,$(target)))),el)
--MIPS_SOFT = $(if $(strip $(filter MASK_SOFT_FLOAT_ABI, $(target_cpu_default)) $(filter soft, $(with_float))),soft)
--MULTILIB_OSDIRNAMES = \
--	../lib32$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabin32$(MIPS_SOFT)) \
--	../lib$(call if_multiarch,:mips$(MIPS_EL)-linux-gnu$(MIPS_SOFT)) \
--	../lib64$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabi64$(MIPS_SOFT))
-+MULTILIB_DIRNAMES = . . .
-+MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
-+
-diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64
-index 0faa2a02df4..13fd8ca971e 100644
---- a/gcc/config/rs6000/t-linux64
-+++ b/gcc/config/rs6000/t-linux64
-@@ -26,10 +26,9 @@
- # MULTILIB_OSDIRNAMES according to what is found on the target.
- 
- MULTILIB_OPTIONS    := m64/m32
--MULTILIB_DIRNAMES   := 64 32
-+MULTILIB_DIRNAMES   := . .
- MULTILIB_EXTRA_OPTS := 
--MULTILIB_OSDIRNAMES := m64=../lib64$(call if_multiarch,:powerpc64-linux-gnu)
--MULTILIB_OSDIRNAMES += m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:powerpc-linux-gnu)
-+MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
- 
- rs6000-linux.o: $(srcdir)/config/rs6000/rs6000-linux.c
- 	$(COMPILE) $<
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0007-optional-libstdc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0007-optional-libstdc.patch
deleted file mode 100644
index 721ea03..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0007-optional-libstdc.patch
+++ /dev/null
@@ -1,125 +0,0 @@
-From fb7df63e9548c29b70601d642a1850fc455f8565 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:12:56 +0400
-Subject: [PATCH 07/39] optional libstdc
-
-gcc-runtime builds libstdc++ separately from gcc-cross-*. Its configure tests using g++
-will not run correctly since by default the linker will try to link against libstdc++
-which shouldn't exist yet. We need an option to disable -lstdc++
-option whilst leaving -lc, -lgcc and other automatic library dependencies added by gcc
-driver. This patch adds such an option which only disables the -lstdc++.
-
-A "standard" gcc build uses xgcc and hence avoids this. We should ask upstream how to
-do this officially, the likely answer is don't build libstdc++ separately.
-
-RP 29/6/10
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [embedded specific]
----
- gcc/c-family/c.opt  |  4 ++++
- gcc/cp/g++spec.c    |  1 +
- gcc/doc/invoke.texi | 32 +++++++++++++++++++++++++++++++-
- gcc/gcc.c           |  1 +
- 4 files changed, 37 insertions(+), 1 deletion(-)
-
-diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt
-index 5013501b232..6312f2c8f90 100644
---- a/gcc/c-family/c.opt
-+++ b/gcc/c-family/c.opt
-@@ -1900,6 +1900,10 @@ nostdinc++
- C++ ObjC++
- Do not search standard system include directories for C++.
- 
-+nostdlib++
-+Driver
-+Do not link standard C++ runtime library
-+
- o
- C ObjC C++ ObjC++ Joined Separate
- ; Documented in common.opt
-diff --git a/gcc/cp/g++spec.c b/gcc/cp/g++spec.c
-index 443a1746da3..e9b51be62ef 100644
---- a/gcc/cp/g++spec.c
-+++ b/gcc/cp/g++spec.c
-@@ -137,6 +137,7 @@ lang_specific_driver (struct cl_decoded_option **in_decoded_options,
-       switch (decoded_options[i].opt_index)
- 	{
- 	case OPT_nostdlib:
-+	case OPT_nostdlib__:
- 	case OPT_nodefaultlibs:
- 	  library = -1;
- 	  break;
-diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
-index cb71b60fe3c..b0d481e3a30 100644
---- a/gcc/doc/invoke.texi
-+++ b/gcc/doc/invoke.texi
-@@ -211,6 +211,9 @@ in the following sections.
- -fno-weak  -nostdinc++ @gol
- -fvisibility-inlines-hidden @gol
- -fvisibility-ms-compat @gol
-+-fvtable-verify=@r{[}std@r{|}preinit@r{|}none@r{]} @gol
-+-fvtv-counts -fvtv-debug @gol
-+-nostdlib++ @gol
- -fext-numeric-literals @gol
- -Wabi=@var{n}  -Wabi-tag  -Wconversion-null  -Wctor-dtor-privacy @gol
- -Wdelete-non-virtual-dtor  -Wliteral-suffix  -Wmultiple-inheritance @gol
-@@ -509,7 +512,7 @@ Objective-C and Objective-C++ Dialects}.
- -s  -static -static-pie -static-libgcc  -static-libstdc++ @gol
- -static-libasan  -static-libtsan  -static-liblsan  -static-libubsan @gol
- -static-libmpx  -static-libmpxwrappers @gol
---shared  -shared-libgcc  -symbolic @gol
-+-shared  -shared-libgcc  -symbolic -nostdlib++ @gol
- -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
- -u @var{symbol}  -z @var{keyword}}
- 
-@@ -12331,6 +12334,33 @@ library subroutines.
- constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
- GNU Compiler Collection (GCC) Internals}.)
- 
-+@item -nostdlib++
-+@opindex nostdlib++
-+Do not use the standard system C++ runtime libraries when linking.
-+Only the libraries you specify will be passed to the linker.
-+
-+@cindex @option{-lgcc}, use with @option{-nostdlib}
-+@cindex @option{-nostdlib} and unresolved references
-+@cindex unresolved references and @option{-nostdlib}
-+@cindex @option{-lgcc}, use with @option{-nodefaultlibs}
-+@cindex @option{-nodefaultlibs} and unresolved references
-+@cindex unresolved references and @option{-nodefaultlibs}
-+One of the standard libraries bypassed by @option{-nostdlib} and
-+@option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
-+which GCC uses to overcome shortcomings of particular machines, or special
-+needs for some languages.
-+(@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
-+Collection (GCC) Internals},
-+for more discussion of @file{libgcc.a}.)
-+In most cases, you need @file{libgcc.a} even when you want to avoid
-+other standard libraries.  In other words, when you specify @option{-nostdlib}
-+or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
-+This ensures that you have no unresolved references to internal GCC
-+library subroutines.
-+(An example of such an internal subroutine is @code{__main}, used to ensure C++
-+constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
-+GNU Compiler Collection (GCC) Internals}.)
-+
- @item -pie
- @opindex pie
- Produce a dynamically linked position independent executable on targets
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index 02b3cd39fc2..8cd27a5dad5 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -1047,6 +1047,7 @@ proper position among the other output files.  */
-     %(mflib) " STACK_SPLIT_SPEC "\
-     %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
-     %{!nostdlib:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}\
-+    %{!nostdlib++:}\
-     %{!nostdlib:%{!nostartfiles:%E}} %{T*}  \n%(post_link) }}}}}}"
- #endif
- 
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0008-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0008-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch
deleted file mode 100644
index a76b7f7..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0008-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From 11eb97efccb90b830c84ed077a25b1a15ad3335b Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:14:20 +0400
-Subject: [PATCH 08/39] gcc: disable MASK_RELAX_PIC_CALLS bit
-
-The new feature added after 4.3.3
-"http://www.pubbs.net/200909/gcc/94048-patch-add-support-for-rmipsjalr.html"
-will cause cc1plus eat up all the system memory when build webkit-gtk.
-The function mips_get_pic_call_symbol keeps on recursively calling itself.
-Disable this feature to walk aside the bug.
-
-Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [configuration]
----
- gcc/configure    | 7 -------
- gcc/configure.ac | 7 -------
- 2 files changed, 14 deletions(-)
-
-diff --git a/gcc/configure b/gcc/configure
-index cafd05fd150..19ba051d673 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -27553,13 +27553,6 @@ $as_echo_n "checking assembler and linker for explicit JALR relocation... " >&6;
-         rm -f conftest.*
-       fi
-     fi
--    if test $gcc_cv_as_ld_jalr_reloc = yes; then
--      if test x$target_cpu_default = x; then
--        target_cpu_default=MASK_RELAX_PIC_CALLS
--      else
--        target_cpu_default="($target_cpu_default)|MASK_RELAX_PIC_CALLS"
--      fi
--    fi
-     { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_as_ld_jalr_reloc" >&5
- $as_echo "$gcc_cv_as_ld_jalr_reloc" >&6; }
- 
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index dd5b38195ce..066dfe19bb6 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -4798,13 +4798,6 @@ x:
-         rm -f conftest.*
-       fi
-     fi
--    if test $gcc_cv_as_ld_jalr_reloc = yes; then
--      if test x$target_cpu_default = x; then
--        target_cpu_default=MASK_RELAX_PIC_CALLS
--      else
--        target_cpu_default="($target_cpu_default)|MASK_RELAX_PIC_CALLS"
--      fi
--    fi
-     AC_MSG_RESULT($gcc_cv_as_ld_jalr_reloc)
- 
-     AC_CACHE_CHECK([linker for .eh_frame personality relaxation],
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0009-COLLECT_GCC_OPTIONS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0009-COLLECT_GCC_OPTIONS.patch
deleted file mode 100644
index 3abece0..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0009-COLLECT_GCC_OPTIONS.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From e19d25847f08eeb5ef26a031fa5eff732bfd0d43 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:16:28 +0400
-Subject: [PATCH 09/39] COLLECT_GCC_OPTIONS
-
-This patch adds --sysroot into COLLECT_GCC_OPTIONS which is used to
-invoke collect2.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/gcc.c | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index 8cd27a5dad5..d355d65583a 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -4677,6 +4677,15 @@ set_collect_gcc_options (void)
- 		sizeof ("COLLECT_GCC_OPTIONS=") - 1);
- 
-   first_time = TRUE;
-+#ifdef HAVE_LD_SYSROOT
-+  if (target_system_root_changed && target_system_root)
-+    {
-+      obstack_grow (&collect_obstack, "'--sysroot=", sizeof("'--sysroot=")-1);
-+      obstack_grow (&collect_obstack, target_system_root,strlen(target_system_root));
-+      obstack_grow (&collect_obstack, "'", 1);
-+      first_time = FALSE;
-+    }
-+#endif
-   for (i = 0; (int) i < n_switches; i++)
-     {
-       const char *const *args;
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0010-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0010-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
deleted file mode 100644
index 5785b58..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0010-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
+++ /dev/null
@@ -1,96 +0,0 @@
-From 265cb883c310f3bb7e49fd13b81362476fbeb6c1 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:17:25 +0400
-Subject: [PATCH 10/39] Use the defaults.h in ${B} instead of ${S}, and t-oe in
- ${B}
-
-Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}, so that
-the source can be shared between gcc-cross-initial,
-gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
-
-While compiling gcc-crosssdk-initial-x86_64 on some host, there is
-occasionally failure that test the existance of default.h doesn't
-work, the reason is tm_include_list='** defaults.h' rather than
-tm_include_list='** ./defaults.h'
-
-So we add the test condition for this situation.
-Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
----
- gcc/Makefile.in  | 2 +-
- gcc/configure    | 4 ++--
- gcc/configure.ac | 4 ++--
- gcc/mkconfig.sh  | 4 ++--
- 4 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 20bee0494b1..1367136bfac 100644
---- a/gcc/Makefile.in
-+++ b/gcc/Makefile.in
-@@ -538,7 +538,7 @@ TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
- TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
- 
- xmake_file=@xmake_file@
--tmake_file=@tmake_file@
-+tmake_file=@tmake_file@ ./t-oe
- TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
- TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
- TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
-diff --git a/gcc/configure b/gcc/configure
-index 19ba051d673..a575839c1b2 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -12158,8 +12158,8 @@ for f in $tm_file; do
-        tm_include_list="${tm_include_list} $f"
-        ;;
-     defaults.h )
--       tm_file_list="${tm_file_list} \$(srcdir)/$f"
--       tm_include_list="${tm_include_list} $f"
-+       tm_file_list="${tm_file_list} ./$f"
-+       tm_include_list="${tm_include_list} ./$f"
-        ;;
-     * )
-        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 066dfe19bb6..676116a6d96 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -1922,8 +1922,8 @@ for f in $tm_file; do
-        tm_include_list="${tm_include_list} $f"
-        ;;
-     defaults.h )
--       tm_file_list="${tm_file_list} \$(srcdir)/$f"
--       tm_include_list="${tm_include_list} $f"
-+       tm_file_list="${tm_file_list} ./$f"
-+       tm_include_list="${tm_include_list} ./$f"
-        ;;
-     * )
-        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
-diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh
-index 0f75c863c0b..68d8d6613cf 100644
---- a/gcc/mkconfig.sh
-+++ b/gcc/mkconfig.sh
-@@ -77,7 +77,7 @@ if [ -n "$HEADERS" ]; then
-     if [ $# -ge 1 ]; then
- 	echo '#ifdef IN_GCC' >> ${output}T
- 	for file in "$@"; do
--	    if test x"$file" = x"defaults.h"; then
-+	    if test x"$file" = x"./defaults.h" -o x"$file" = x"defaults.h"; then
- 		postpone_defaults_h="yes"
- 	    else
- 		echo "# include \"$file\"" >> ${output}T
-@@ -106,7 +106,7 @@ esac
- 
- # If we postponed including defaults.h, add the #include now.
- if test x"$postpone_defaults_h" = x"yes"; then
--    echo "# include \"defaults.h\"" >> ${output}T
-+    echo "# include \"./defaults.h\"" >> ${output}T
- fi
- 
- # Add multiple inclusion protection guard, part two.
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0011-fortran-cross-compile-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0011-fortran-cross-compile-hack.patch
deleted file mode 100644
index fe0fb7d..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0011-fortran-cross-compile-hack.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 71cba188d47b6ae9d9b87261eb4bc9eb68ae355d Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:20:01 +0400
-Subject: [PATCH 11/39] fortran cross-compile hack.
-
-* Fortran would have searched for arm-angstrom-gnueabi-gfortran but would have used
-used gfortan. For gcc_4.2.2.bb we want to use the gfortran compiler from our cross
-directory.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [embedded specific]
----
- libgfortran/configure    | 2 +-
- libgfortran/configure.ac | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/libgfortran/configure b/libgfortran/configure
-index 91fce8fecd0..6747f86eb98 100755
---- a/libgfortran/configure
-+++ b/libgfortran/configure
-@@ -12883,7 +12883,7 @@ esac
- 
- # We need gfortran to compile parts of the library
- #AC_PROG_FC(gfortran)
--FC="$GFORTRAN"
-+#FC="$GFORTRAN"
- ac_ext=${ac_fc_srcext-f}
- ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5'
- ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5'
-diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac
-index bf6d3634dda..9dbe43cc616 100644
---- a/libgfortran/configure.ac
-+++ b/libgfortran/configure.ac
-@@ -250,7 +250,7 @@ AC_SUBST(enable_static)
- 
- # We need gfortran to compile parts of the library
- #AC_PROG_FC(gfortran)
--FC="$GFORTRAN"
-+#FC="$GFORTRAN"
- AC_PROG_FC(gfortran)
- 
- # extra LD Flags which are required for targets
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0012-cpp-honor-sysroot.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0012-cpp-honor-sysroot.patch
deleted file mode 100644
index 961f96f..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0012-cpp-honor-sysroot.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From b3e8e7e8ae106e3207e9edc3d23dcce1464b755f Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:22:00 +0400
-Subject: [PATCH 12/39] cpp: honor sysroot.
-
-Currently, if the gcc toolchain is relocated and installed from sstate, then you try and compile
-preprocessed source (.i or .ii files), the compiler will try and access the builtin sysroot location
-rather than the --sysroot option specified on the commandline. If access to that directory is
-permission denied (unreadable), gcc will error.
-
-This happens when ccache is in use due to the fact it uses preprocessed source files.
-
-The fix below adds %I to the cpp-output spec macro so the default substitutions for -iprefix,
--isystem, -isysroot happen and the correct sysroot is used.
-
-[YOCTO #2074]
-
-RP 2012/04/13
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/cp/lang-specs.h | 2 +-
- gcc/gcc.c           | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h
-index f0802b8915c..f324d299849 100644
---- a/gcc/cp/lang-specs.h
-+++ b/gcc/cp/lang-specs.h
-@@ -64,5 +64,5 @@ along with GCC; see the file COPYING3.  If not see
-   {".ii", "@c++-cpp-output", 0, 0, 0},
-   {"@c++-cpp-output",
-    "%{!M:%{!MM:%{!E:\
--    cc1plus -fpreprocessed %i %(cc1_options) %2\
-+    cc1plus -fpreprocessed %i %I %(cc1_options) %2\
-     %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index d355d65583a..570cdc00034 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -1343,7 +1343,7 @@ static const struct compiler default_compilers[] =
- 					   %W{o*:--output-pch=%*}}%V}}}}}}}", 0, 0, 0},
-   {".i", "@cpp-output", 0, 0, 0},
-   {"@cpp-output",
--   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
-+   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %I %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
-   {".s", "@assembler", 0, 0, 0},
-   {"@assembler",
-    "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0013-MIPS64-Default-to-N64-ABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0013-MIPS64-Default-to-N64-ABI.patch
deleted file mode 100644
index 8ef8806..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0013-MIPS64-Default-to-N64-ABI.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From 0f3629978cd7c98614e87d4fd190b89864221631 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:23:08 +0400
-Subject: [PATCH 13/39] MIPS64: Default to N64 ABI
-
-MIPS64 defaults to n32 ABI, this patch makes it
-so that it defaults to N64 ABI
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [OE config specific]
----
- gcc/config.gcc | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/gcc/config.gcc b/gcc/config.gcc
-index 8741dd1e3b2..2ffcb39d85f 100644
---- a/gcc/config.gcc
-+++ b/gcc/config.gcc
-@@ -2137,29 +2137,29 @@ mips*-*-linux*)				# Linux MIPS, either endian.
- 			default_mips_arch=mips32
- 			;;
- 		mips64el-st-linux-gnu)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			tm_file="${tm_file} mips/st.h"
- 			tmake_file="${tmake_file} mips/t-st"
- 			enable_mips_multilibs="yes"
- 			;;
- 		mips64octeon*-*-linux*)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
- 			target_cpu_default=MASK_SOFT_FLOAT_ABI
- 			enable_mips_multilibs="yes"
- 			;;
- 		mipsisa64r6*-*-linux*)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			default_mips_arch=mips64r6
- 			enable_mips_multilibs="yes"
- 			;;
- 		mipsisa64r2*-*-linux*)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			default_mips_arch=mips64r2
- 			enable_mips_multilibs="yes"
- 			;;
- 		mips64*-*-linux* | mipsisa64*-*-linux*)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			enable_mips_multilibs="yes"
- 			;;
- 	esac
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0014-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0014-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
deleted file mode 100644
index 043bb9d..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0014-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
+++ /dev/null
@@ -1,248 +0,0 @@
-From 53f1c382b1366c5621c8edead9c766950c290fd9 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:24:50 +0400
-Subject: [PATCH 14/39] Define GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
- relative to SYSTEMLIBS_DIR
-
-This patch defines GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
-relative to SYSTEMLIBS_DIR which can be set in generated headers
-This breaks the assumption of hardcoded multilib in gcc
-Change is only for the supported architectures in OE including
-SH, sparc, alpha for possible future support (if any)
-
-Removes the do_headerfix task in metadata
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [OE configuration]
----
- gcc/config/alpha/linux-elf.h |  4 ++--
- gcc/config/arm/linux-eabi.h  |  4 ++--
- gcc/config/arm/linux-elf.h   |  2 +-
- gcc/config/i386/linux.h      |  2 +-
- gcc/config/i386/linux64.h    |  6 +++---
- gcc/config/linux.h           |  8 ++++----
- gcc/config/mips/linux.h      | 12 ++++++------
- gcc/config/riscv/linux.h     |  2 +-
- gcc/config/rs6000/linux64.h  | 16 ++++++----------
- gcc/config/sh/linux.h        |  2 +-
- gcc/config/sparc/linux.h     |  2 +-
- gcc/config/sparc/linux64.h   |  4 ++--
- 12 files changed, 30 insertions(+), 34 deletions(-)
-
-diff --git a/gcc/config/alpha/linux-elf.h b/gcc/config/alpha/linux-elf.h
-index 36b74dc1993..02373578af8 100644
---- a/gcc/config/alpha/linux-elf.h
-+++ b/gcc/config/alpha/linux-elf.h
-@@ -23,8 +23,8 @@ along with GCC; see the file COPYING3.  If not see
- #define EXTRA_SPECS \
- { "elf_dynamic_linker", ELF_DYNAMIC_LINKER },
- 
--#define GLIBC_DYNAMIC_LINKER	"/lib/ld-linux.so.2"
--#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
-+#define GLIBC_DYNAMIC_LINKER	SYSTEMLIBS_DIR "ld-linux.so.2"
-+#define UCLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-uClibc.so.0"
- #if DEFAULT_LIBC == LIBC_UCLIBC
- #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
- #elif DEFAULT_LIBC == LIBC_GLIBC
-diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
-index 8585fde3d41..b3af68cac57 100644
---- a/gcc/config/arm/linux-eabi.h
-+++ b/gcc/config/arm/linux-eabi.h
-@@ -62,8 +62,8 @@
-    GLIBC_DYNAMIC_LINKER_DEFAULT and TARGET_DEFAULT_FLOAT_ABI.  */
- 
- #undef  GLIBC_DYNAMIC_LINKER
--#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "/lib/ld-linux.so.3"
--#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT "/lib/ld-linux-armhf.so.3"
-+#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT SYSTEMLIBS_DIR "ld-linux.so.3"
-+#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT SYSTEMLIBS_DIR "ld-linux-armhf.so.3"
- #define GLIBC_DYNAMIC_LINKER_DEFAULT GLIBC_DYNAMIC_LINKER_SOFT_FLOAT
- 
- #define GLIBC_DYNAMIC_LINKER \
-diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h
-index cfcd9cb1a5c..a798e987ecb 100644
---- a/gcc/config/arm/linux-elf.h
-+++ b/gcc/config/arm/linux-elf.h
-@@ -60,7 +60,7 @@
- 
- #define LIBGCC_SPEC "%{mfloat-abi=soft*:-lfloat} -lgcc"
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #define LINUX_TARGET_LINK_SPEC  "%{h*} \
-    %{static:-Bstatic} \
-diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h
-index 69f97f15b0d..71bc31d9231 100644
---- a/gcc/config/i386/linux.h
-+++ b/gcc/config/i386/linux.h
-@@ -20,7 +20,7 @@ along with GCC; see the file COPYING3.  If not see
- <http://www.gnu.org/licenses/>.  */
- 
- #define GNU_USER_LINK_EMULATION "elf_i386"
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #undef MUSL_DYNAMIC_LINKER
- #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-i386.so.1"
-diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h
-index f2d913e30ac..8725f33d8a5 100644
---- a/gcc/config/i386/linux64.h
-+++ b/gcc/config/i386/linux64.h
-@@ -27,9 +27,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
- #define GNU_USER_LINK_EMULATION64 "elf_x86_64"
- #define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64"
- 
--#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
--#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
--#define GLIBC_DYNAMIC_LINKERX32 "/libx32/ld-linux-x32.so.2"
-+#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux-x86-64.so.2"
-+#define GLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ld-linux-x32.so.2"
- 
- #undef MUSL_DYNAMIC_LINKER32
- #define MUSL_DYNAMIC_LINKER32 "/lib/ld-musl-i386.so.1"
-diff --git a/gcc/config/linux.h b/gcc/config/linux.h
-index 2ea4ff92c1d..487b0c0923b 100644
---- a/gcc/config/linux.h
-+++ b/gcc/config/linux.h
-@@ -81,10 +81,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
-    GLIBC_DYNAMIC_LINKER must be defined for each target using them, or
-    GLIBC_DYNAMIC_LINKER32 and GLIBC_DYNAMIC_LINKER64 for targets
-    supporting both 32-bit and 64-bit compilation.  */
--#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
--#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
--#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
--#define UCLIBC_DYNAMIC_LINKERX32 "/lib/ldx32-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ldx32-uClibc.so.0"
- #define BIONIC_DYNAMIC_LINKER "/system/bin/linker"
- #define BIONIC_DYNAMIC_LINKER32 "/system/bin/linker"
- #define BIONIC_DYNAMIC_LINKER64 "/system/bin/linker64"
-diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h
-index 2dfd0c18b90..12057c51b5e 100644
---- a/gcc/config/mips/linux.h
-+++ b/gcc/config/mips/linux.h
-@@ -22,20 +22,20 @@ along with GCC; see the file COPYING3.  If not see
- #define GNU_USER_LINK_EMULATIONN32 "elf32%{EB:b}%{EL:l}tsmipn32"
- 
- #define GLIBC_DYNAMIC_LINKER32 \
--  "%{mnan=2008:/lib/ld-linux-mipsn8.so.1;:/lib/ld.so.1}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
- #define GLIBC_DYNAMIC_LINKER64 \
--  "%{mnan=2008:/lib64/ld-linux-mipsn8.so.1;:/lib64/ld.so.1}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
- #define GLIBC_DYNAMIC_LINKERN32 \
--  "%{mnan=2008:/lib32/ld-linux-mipsn8.so.1;:/lib32/ld.so.1}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
- 
- #undef UCLIBC_DYNAMIC_LINKER32
- #define UCLIBC_DYNAMIC_LINKER32 \
--  "%{mnan=2008:/lib/ld-uClibc-mipsn8.so.0;:/lib/ld-uClibc.so.0}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
- #undef UCLIBC_DYNAMIC_LINKER64
- #define UCLIBC_DYNAMIC_LINKER64 \
--  "%{mnan=2008:/lib/ld64-uClibc-mipsn8.so.0;:/lib/ld64-uClibc.so.0}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld64-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld64-uClibc.so.0}"
- #define UCLIBC_DYNAMIC_LINKERN32 \
--  "%{mnan=2008:/lib32/ld-uClibc-mipsn8.so.0;:/lib32/ld-uClibc.so.0}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
- 
- #undef MUSL_DYNAMIC_LINKER32
- #define MUSL_DYNAMIC_LINKER32 \
-diff --git a/gcc/config/riscv/linux.h b/gcc/config/riscv/linux.h
-index aa8a28d5d..ebf9551c9 100644
---- a/gcc/config/riscv/linux.h
-+++ b/gcc/config/riscv/linux.h
-@@ -22,7 +22,7 @@ along with GCC; see the file COPYING3.
-     GNU_USER_TARGET_OS_CPP_BUILTINS();				\
-   } while (0)
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
- 
- #define MUSL_ABI_SUFFIX \
-   "%{mabi=ilp32:-sf}" \
-diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
-index 90fe6566255..55695dadd91 100644
---- a/gcc/config/rs6000/linux64.h
-+++ b/gcc/config/rs6000/linux64.h
-@@ -420,16 +420,11 @@ extern int dot_symbols;
- #undef	LINK_OS_DEFAULT_SPEC
- #define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
- 
--#define GLIBC_DYNAMIC_LINKER32 "%(dynamic_linker_prefix)/lib/ld.so.1"
--
-+#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld.so.1"
- #ifdef LINUX64_DEFAULT_ABI_ELFv2
--#define GLIBC_DYNAMIC_LINKER64 \
--"%{mabi=elfv1:%(dynamic_linker_prefix)/lib64/ld64.so.1;" \
--":%(dynamic_linker_prefix)/lib64/ld64.so.2}"
-+#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv1:" SYSTEMLIBS_DIR "ld64.so.1;:" SYSTEMLIBS_DIR "ld64.so.2}"
- #else
--#define GLIBC_DYNAMIC_LINKER64 \
--"%{mabi=elfv2:%(dynamic_linker_prefix)/lib64/ld64.so.2;" \
--":%(dynamic_linker_prefix)/lib64/ld64.so.1}"
-+#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv2:" SYSTEMLIBS_DIR "ld64.so.2;:" SYSTEMLIBS_DIR "ld64.so.1}"
- #endif
- 
- #define MUSL_DYNAMIC_LINKER32 \
-@@ -437,8 +432,9 @@ extern int dot_symbols;
- #define MUSL_DYNAMIC_LINKER64 \
-   "/lib/ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
- 
--#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
--#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
-+
- #if DEFAULT_LIBC == LIBC_UCLIBC
- #define CHOOSE_DYNAMIC_LINKER(G, U, M) \
-   "%{mglibc:" G ";:%{mmusl:" M ";:" U "}}"
-diff --git a/gcc/config/sh/linux.h b/gcc/config/sh/linux.h
-index 6d2ccd012ba..ec78a89ce15 100644
---- a/gcc/config/sh/linux.h
-+++ b/gcc/config/sh/linux.h
-@@ -64,7 +64,7 @@ along with GCC; see the file COPYING3.  If not see
-   "/lib/ld-musl-sh" MUSL_DYNAMIC_LINKER_E MUSL_DYNAMIC_LINKER_FP \
-   "%{mfdpic:-fdpic}.so.1"
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #undef SUBTARGET_LINK_EMUL_SUFFIX
- #define SUBTARGET_LINK_EMUL_SUFFIX "%{mfdpic:_fd;:_linux}"
-diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h
-index 9fb03af0fe9..401fddbbb22 100644
---- a/gcc/config/sparc/linux.h
-+++ b/gcc/config/sparc/linux.h
-@@ -83,7 +83,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv);
-    When the -shared link option is used a final link is not being
-    done.  */
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #undef  LINK_SPEC
- #define LINK_SPEC "-m elf32_sparc %{shared:-shared} \
-diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h
-index c1fe42165b7..26a79bfa2e3 100644
---- a/gcc/config/sparc/linux64.h
-+++ b/gcc/config/sparc/linux64.h
-@@ -84,8 +84,8 @@ along with GCC; see the file COPYING3.  If not see
-    When the -shared link option is used a final link is not being
-    done.  */
- 
--#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
--#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #ifdef SPARC_BI_ARCH
- 
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0015-gcc-Fix-argument-list-too-long-error.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0015-gcc-Fix-argument-list-too-long-error.patch
deleted file mode 100644
index 4bff842..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0015-gcc-Fix-argument-list-too-long-error.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 2e75a14cd60227e036790184f0eb400abc3c870b Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:26:37 +0400
-Subject: [PATCH 15/39] gcc: Fix argument list too long error.
-
-There would be an "Argument list too long" error when the
-build directory is longer than 200, this is caused by:
-
-headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`
-
-The PLUGIN_HEADERS is too long before sort, so the "echo" can't handle
-it, use the $(sort list) of GNU make which can handle the too long list
-would fix the problem, the header would be short enough after sorted.
-The "tr ' ' '\012'" was used for translating the space to "\n", the
-$(sort list) doesn't need this.
-
-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/Makefile.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 1367136bfac..71a8275c39f 100644
---- a/gcc/Makefile.in
-+++ b/gcc/Makefile.in
-@@ -3538,7 +3538,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
- # We keep the directory structure for files in config or c-family and .def
- # files. All other files are flattened to a single directory.
- 	$(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
--	headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
-+	headers="$(sort $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def))"; \
- 	srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
- 	for file in $$headers; do \
- 	  if [ -f $$file ] ; then \
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0016-Disable-sdt.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0016-Disable-sdt.patch
deleted file mode 100644
index 8197546..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0016-Disable-sdt.patch
+++ /dev/null
@@ -1,113 +0,0 @@
-From 423d87ac47d21e399d759d7ff3b638f0c721a7df Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:28:10 +0400
-Subject: [PATCH 16/39] Disable sdt.
-
-We don't list dtrace in DEPENDS so we shouldn't be depending on this header.
-It may or may not exist from preivous builds though. To be determinstic, disable
-sdt.h usage always. This avoids build failures if the header is removed after configure
-but before libgcc is compiled for example.
-
-RP 2012/8/7
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Disable sdt for libstdc++-v3.
-
-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-
-Upstream-Status: Inappropriate [hack]
----
- gcc/configure             | 12 ++++++------
- gcc/configure.ac          | 18 +++++++++---------
- libstdc++-v3/configure    |  6 +++---
- libstdc++-v3/configure.ac |  2 +-
- 4 files changed, 19 insertions(+), 19 deletions(-)
-
-diff --git a/gcc/configure b/gcc/configure
-index a575839c1b2..872338f29b6 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -29296,12 +29296,12 @@ fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking sys/sdt.h in the target C library" >&5
- $as_echo_n "checking sys/sdt.h in the target C library... " >&6; }
- have_sys_sdt_h=no
--if test -f $target_header_dir/sys/sdt.h; then
--  have_sys_sdt_h=yes
--
--$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
--
--fi
-+#if test -f $target_header_dir/sys/sdt.h; then
-+#  have_sys_sdt_h=yes
-+#
-+#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
-+#
-+#fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_sys_sdt_h" >&5
- $as_echo "$have_sys_sdt_h" >&6; }
- 
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 676116a6d96..55046e68926 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -5957,15 +5957,15 @@ fi
- AC_SUBST([enable_default_ssp])
- 
- # Test for <sys/sdt.h> on the target.
--GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
--AC_MSG_CHECKING(sys/sdt.h in the target C library)
--have_sys_sdt_h=no
--if test -f $target_header_dir/sys/sdt.h; then
--  have_sys_sdt_h=yes
--  AC_DEFINE(HAVE_SYS_SDT_H, 1,
--            [Define if your target C library provides sys/sdt.h])
--fi
--AC_MSG_RESULT($have_sys_sdt_h)
-+#GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
-+#AC_MSG_CHECKING(sys/sdt.h in the target C library)
-+#have_sys_sdt_h=no
-+#if test -f $target_header_dir/sys/sdt.h; then
-+#  have_sys_sdt_h=yes
-+#  AC_DEFINE(HAVE_SYS_SDT_H, 1,
-+#            [Define if your target C library provides sys/sdt.h])
-+#fi
-+#AC_MSG_RESULT($have_sys_sdt_h)
- 
- # Check if TFmode long double should be used by default or not.
- # Some glibc targets used DFmode long double, but with glibc 2.4
-diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
-index c9dbaa139d5..c64a77d152b 100755
---- a/libstdc++-v3/configure
-+++ b/libstdc++-v3/configure
-@@ -21786,11 +21786,11 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
- ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
- ac_compiler_gnu=$ac_cv_c_compiler_gnu
- 
--  if test $glibcxx_cv_sys_sdt_h = yes; then
-+#  if test $glibcxx_cv_sys_sdt_h = yes; then
- 
--$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
-+#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
- 
--  fi
-+#  fi
-   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_sdt_h" >&5
- $as_echo "$glibcxx_cv_sys_sdt_h" >&6; }
- 
-diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac
-index 0ef96270c9c..afe55a1b215 100644
---- a/libstdc++-v3/configure.ac
-+++ b/libstdc++-v3/configure.ac
-@@ -230,7 +230,7 @@ GLIBCXX_CHECK_SC_NPROCESSORS_ONLN
- GLIBCXX_CHECK_SC_NPROC_ONLN
- GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP
- GLIBCXX_CHECK_SYSCTL_HW_NCPU
--GLIBCXX_CHECK_SDT_H
-+#GLIBCXX_CHECK_SDT_H
- 
- # Check for available headers.
- AC_CHECK_HEADERS([endian.h execinfo.h float.h fp.h ieeefp.h inttypes.h \
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0017-libtool.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0017-libtool.patch
deleted file mode 100644
index 0caa1ce..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0017-libtool.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From c8b11e96b11910b2d4df6ae8104466e3303d933f Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:29:11 +0400
-Subject: [PATCH 17/39] libtool
-
-libstdc++ from gcc-runtime gets created with -rpath=/usr/lib/../lib for qemux86-64
-when running on am x86_64 build host.
-
-This patch stops this speading to libdir in the libstdc++.la file within libtool.
-Arguably, it shouldn't be passing this into libtool in the first place but
-for now this resolves the nastiest problems this causes.
-
-func_normal_abspath would resolve an empty path to `pwd` so we need
-to filter the zero case.
-
-RP 2012/8/24
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- ltmain.sh | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/ltmain.sh b/ltmain.sh
-index 9503ec85d70..0121fba707f 100644
---- a/ltmain.sh
-+++ b/ltmain.sh
-@@ -6359,6 +6359,10 @@ func_mode_link ()
- 	func_warning "ignoring multiple \`-rpath's for a libtool library"
- 
-       install_libdir="$1"
-+      if test -n "$install_libdir"; then
-+	func_normal_abspath "$install_libdir"
-+	install_libdir=$func_normal_abspath_result
-+      fi
- 
-       oldlibs=
-       if test -z "$rpath"; then
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0018-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0018-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
deleted file mode 100644
index 643cc67..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0018-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 7dbba844a59bdf6e7d724f8bfa7927246cb7af8f Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:30:32 +0400
-Subject: [PATCH 18/39] gcc: armv4: pass fix-v4bx to linker to support EABI.
-
-The LINK_SPEC for linux gets overwritten by linux-eabi.h which
-means the value of TARGET_FIX_V4BX_SPEC gets lost and as a result
-the option is not passed to linker when chosing march=armv4
-This patch redefines this in linux-eabi.h and reinserts it
-for eabi defaulting toolchains.
-
-We might want to send it upstream.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/config/arm/linux-eabi.h | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
-index b3af68cac57..330b6e13c5f 100644
---- a/gcc/config/arm/linux-eabi.h
-+++ b/gcc/config/arm/linux-eabi.h
-@@ -88,10 +88,14 @@
- #define MUSL_DYNAMIC_LINKER \
-   "/lib/ld-musl-arm" MUSL_DYNAMIC_LINKER_E "%{mfloat-abi=hard:hf}.so.1"
- 
-+/* For armv4 we pass --fix-v4bx to linker to support EABI */
-+#undef TARGET_FIX_V4BX_SPEC
-+#define TARGET_FIX_V4BX_SPEC "%{mcpu=arm8|mcpu=arm810|mcpu=strongarm*|march=armv4: --fix-v4bx}"
-+
- /* At this point, bpabi.h will have clobbered LINK_SPEC.  We want to
-    use the GNU/Linux version, not the generic BPABI version.  */
- #undef  LINK_SPEC
--#define LINK_SPEC EABI_LINK_SPEC					\
-+#define LINK_SPEC TARGET_FIX_V4BX_SPEC EABI_LINK_SPEC			\
-   LINUX_OR_ANDROID_LD (LINUX_TARGET_LINK_SPEC,				\
- 		       LINUX_TARGET_LINK_SPEC " " ANDROID_LINK_SPEC)
- 
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0019-Use-the-multilib-config-files-from-B-instead-of-usin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0019-Use-the-multilib-config-files-from-B-instead-of-usin.patch
deleted file mode 100644
index 0849186..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0019-Use-the-multilib-config-files-from-B-instead-of-usin.patch
+++ /dev/null
@@ -1,102 +0,0 @@
-From 117140acd3c383f620ff75894276001c7405dcce Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:33:04 +0400
-Subject: [PATCH 19/39] Use the multilib config files from ${B} instead of
- using the ones from ${S}
-
-Use the multilib config files from ${B} instead of using the ones from ${S}
-so that the source can be shared between gcc-cross-initial,
-gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
-
-Upstream-Status: Inappropriate [configuration]
----
- gcc/configure    | 22 ++++++++++++++++++----
- gcc/configure.ac | 22 ++++++++++++++++++----
- 2 files changed, 36 insertions(+), 8 deletions(-)
-
-diff --git a/gcc/configure b/gcc/configure
-index 872338f29b6..cfcadc93a01 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -12138,10 +12138,20 @@ done
- tmake_file_=
- for f in ${tmake_file}
- do
--	if test -f ${srcdir}/config/$f
--	then
--		tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
--	fi
-+  case $f in
-+    */t-linux64 )
-+       if test -f ./config/$f
-+       then
-+         tmake_file_="${tmake_file_} ./config/$f"
-+       fi
-+       ;;
-+    * )
-+       if test -f ${srcdir}/config/$f
-+       then
-+         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
-+       fi
-+       ;;
-+  esac
- done
- tmake_file="${tmake_file_}"
- 
-@@ -12152,6 +12162,10 @@ tm_file_list="options.h"
- tm_include_list="options.h insn-constants.h"
- for f in $tm_file; do
-   case $f in
-+    */linux64.h )
-+       tm_file_list="${tm_file_list} ./config/$f"
-+       tm_include_list="${tm_include_list} ./config/$f"
-+       ;;
-     ./* )
-        f=`echo $f | sed 's/^..//'`
-        tm_file_list="${tm_file_list} $f"
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 55046e68926..44b90478f55 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -1902,10 +1902,20 @@ done
- tmake_file_=
- for f in ${tmake_file}
- do
--	if test -f ${srcdir}/config/$f
--	then
--		tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
--	fi
-+  case $f in
-+    */t-linux64 )
-+       if test -f ./config/$f
-+       then
-+         tmake_file_="${tmake_file_} ./config/$f"
-+       fi
-+       ;;
-+    * )
-+       if test -f ${srcdir}/config/$f
-+       then
-+         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
-+       fi
-+       ;;
-+  esac
- done
- tmake_file="${tmake_file_}"
- 
-@@ -1916,6 +1926,10 @@ tm_file_list="options.h"
- tm_include_list="options.h insn-constants.h"
- for f in $tm_file; do
-   case $f in
-+    */linux64.h )
-+       tm_file_list="${tm_file_list} ./config/$f"
-+       tm_include_list="${tm_include_list} ./config/$f"
-+       ;;
-     ./* )
-        f=`echo $f | sed 's/^..//'`
-        tm_file_list="${tm_file_list} $f"
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0020-Avoid-using-libdir-from-.la-which-usually-points-to-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0020-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
deleted file mode 100644
index 911fe85..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0020-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From a7266111a5ba2d146c979e86ff84f6b807ca5fdc Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 09:39:38 +0000
-Subject: [PATCH 20/39] Avoid using libdir from .la which usually points to a
- host path
-
-Upstream-Status: Inappropriate [embedded specific]
-
-Signed-off-by: Jonathan Liu <net147@gmail.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- ltmain.sh | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/ltmain.sh b/ltmain.sh
-index 0121fba707f..52bdbdb5f9c 100644
---- a/ltmain.sh
-+++ b/ltmain.sh
-@@ -5628,6 +5628,9 @@ func_mode_link ()
- 	    absdir="$abs_ladir"
- 	    libdir="$abs_ladir"
- 	  else
-+	    # Instead of using libdir from .la which usually points to a host path,
-+	    # use the path the .la is contained in.
-+	    libdir="$abs_ladir"
- 	    dir="$libdir"
- 	    absdir="$libdir"
- 	  fi
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0021-export-CPP.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0021-export-CPP.patch
deleted file mode 100644
index 2e6b411..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0021-export-CPP.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From c8599fc3b5781b319707c9c0f1b0a1ef7cddb027 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 09:40:59 +0000
-Subject: [PATCH 21/39] export CPP
-
-The OE environment sets and exports CPP as being the target gcc. When
-building gcc-cross-canadian for a mingw targetted sdk, the following can be found
-in build.x86_64-pokysdk-mingw32.i586-poky-linux/build-x86_64-linux/libiberty/config.log:
-
-configure:3641: checking for _FILE_OFFSET_BITS value needed for large files
-configure:3666: gcc  -c -isystem/media/build1/poky/build/tmp/sysroots/x86_64-linux/usr/include -O2 -pipe  conftest.c >&5
-configure:3666: $? = 0
-configure:3698: result: no
-configure:3786: checking how to run the C preprocessor
-configure:3856: result: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32
-configure:3876: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32 conftest.c
-configure:3876: $? = 0
-
-Note this is a *build* target (in build-x86_64-linux) so it should be
-using the host "gcc", not x86_64-pokysdk-mingw32-gcc. Since the mingw32
-headers are very different, using the wrong cpp is a real problem. It is leaking
-into configure through the CPP variable. Ultimately this leads to build
-failures related to not being able to include a process.h file for pem-unix.c.
-
-The fix is to ensure we export a sane CPP value into the build
-environment when using build targets. We could define a CPP_FOR_BUILD value which may be
-the version which needs to be upstreamed but for now, this fix is good enough to
-avoid the problem.
-
-RP 22/08/2013
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- Makefile.in | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/Makefile.in b/Makefile.in
-index 2bf83b72265..1af45580086 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -149,6 +149,7 @@ BUILD_EXPORTS = \
- 	AR="$(AR_FOR_BUILD)"; export AR; \
- 	AS="$(AS_FOR_BUILD)"; export AS; \
- 	CC="$(CC_FOR_BUILD)"; export CC; \
-+	CPP="$(CC_FOR_BUILD) -E"; export CPP; \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
- 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0022-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0022-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch
deleted file mode 100644
index 17c581f..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0022-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 5e2ee46c720b6ce03a18da70dd4e0917c258ab0b Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 10:21:55 +0000
-Subject: [PATCH 22/39] Disable the MULTILIB_OSDIRNAMES and other multilib
- options.
-
-Hard coding the MULTILIB_OSDIRNAMES with ../lib64 is causing problems on
-systems where the libdir is NOT set to /lib64.  This is allowed by the
-ABI, as
-long as the dynamic loader is present in /lib.
-
-We simply want to use the default rules in gcc to find and configure the
-normal libdir.
-
-Upstream-Status: Inappropriate[OE-Specific]
-
-Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/aarch64/t-aarch64-linux | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/gcc/config/aarch64/t-aarch64-linux b/gcc/config/aarch64/t-aarch64-linux
-index b9897785a89..7d06f0d0edb 100644
---- a/gcc/config/aarch64/t-aarch64-linux
-+++ b/gcc/config/aarch64/t-aarch64-linux
-@@ -21,8 +21,8 @@
- LIB1ASMSRC   = aarch64/lib1funcs.asm
- LIB1ASMFUNCS = _aarch64_sync_cache_range
- 
--AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
--MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
--MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
-+#AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
-+#MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
-+#MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
- 
--MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
-+#MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0023-Ensure-target-gcc-headers-can-be-included.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0023-Ensure-target-gcc-headers-can-be-included.patch
deleted file mode 100644
index 73db3e6..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0023-Ensure-target-gcc-headers-can-be-included.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-From 73766424a2f71b1810fb8afdd863028855d87e5a Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 10:25:11 +0000
-Subject: [PATCH 23/39] Ensure target gcc headers can be included
-
-There are a few headers installed as part of the OpenEmbedded
-gcc-runtime target (omp.h, ssp/*.h). Being installed from a recipe
-built for the target architecture, these are within the target
-sysroot and not cross/nativesdk; thus they weren't able to be
-found by gcc with the existing search paths. Add support for
-picking up these headers under the sysroot supplied on the gcc
-command line in order to resolve this.
-
-Upstream-Status: Pending
-
-Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/Makefile.in  | 2 ++
- gcc/cppdefault.c | 4 ++++
- gcc/defaults.h   | 9 +++++++++
- gcc/gcc.c        | 7 -------
- 4 files changed, 15 insertions(+), 7 deletions(-)
-
-diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 71a8275c39f..5ae693fb06c 100644
---- a/gcc/Makefile.in
-+++ b/gcc/Makefile.in
-@@ -614,6 +614,7 @@ libexecdir = @libexecdir@
- 
- # Directory in which the compiler finds libraries etc.
- libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
-+libsubdir_target = gcc/$(target_noncanonical)/$(version)
- # Directory in which the compiler finds executables
- libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
- # Directory in which all plugin resources are installed
-@@ -2870,6 +2871,7 @@ CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\"
- 
- PREPROCESSOR_DEFINES = \
-   -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
-+  -DGCC_INCLUDE_SUBDIR_TARGET=\"$(libsubdir_target)/include\" \
-   -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
-   -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
-   -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \
-diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
-index b36a979d5ba..e2e187dedaf 100644
---- a/gcc/cppdefault.c
-+++ b/gcc/cppdefault.c
-@@ -59,6 +59,10 @@ const struct default_include cpp_include_defaults[]
-     /* This is the dir for gcc's private headers.  */
-     { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
- #endif
-+#ifdef GCC_INCLUDE_SUBDIR_TARGET
-+    /* This is the dir for gcc's private headers under the specified sysroot.  */
-+    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
-+#endif
- #ifdef LOCAL_INCLUDE_DIR
-     /* /usr/local/include comes before the fixincluded header files.  */
-     { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0024-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0024-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch
deleted file mode 100644
index 67b47f4..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0024-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 57beef69396f6c187014b8e61cdc966218479d07 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 11:17:19 +0000
-Subject: [PATCH 24/39] gcc 4.8+ won't build with --disable-dependency-tracking
-
-since the *.Ppo files don't get created unless --enable-dependency-tracking is true.
-
-This patch ensures we only use those compiler options when its enabled.
-
-Upstream-Status: Submitted
-
-(Problem was already reported upstream, attached this patch there
-http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55930)
-
-RP
-2012/09/22
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- libatomic/Makefile.am | 3 ++-
- libatomic/Makefile.in | 3 ++-
- 2 files changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
-index 803b292cce5..b47842eb590 100644
---- a/libatomic/Makefile.am
-+++ b/libatomic/Makefile.am
-@@ -101,7 +101,8 @@ PAT_S		= $(word 3,$(PAT_SPLIT))
- IFUNC_DEF	= -DIFUNC_ALT=$(PAT_S)
- IFUNC_OPT	= $(word $(PAT_S),$(IFUNC_OPTIONS))
- 
--M_DEPS		= -MT $@ -MD -MP -MF $(DEPDIR)/$(@F).Ppo
-+@AMDEP_TRUE@M_DEPS		= -MT $@ -MD -MP -MF $(DEPDIR)/$(@F).Ppo
-+@AMDEP_FALSE@M_DEPS		=
- M_SIZE		= -DN=$(PAT_N)
- M_IFUNC		= $(if $(PAT_S),$(IFUNC_DEF) $(IFUNC_OPT))
- M_FILE		= $(PAT_BASE)_n.c
-diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
-index c8f38be5835..4fab7cec3ea 100644
---- a/libatomic/Makefile.in
-+++ b/libatomic/Makefile.in
-@@ -335,7 +335,8 @@ PAT_N = $(word 2,$(PAT_SPLIT))
- PAT_S = $(word 3,$(PAT_SPLIT))
- IFUNC_DEF = -DIFUNC_ALT=$(PAT_S)
- IFUNC_OPT = $(word $(PAT_S),$(IFUNC_OPTIONS))
--M_DEPS = -MT $@ -MD -MP -MF $(DEPDIR)/$(@F).Ppo
-+@AMDEP_TRUE@M_DEPS = -MT $@ -MD -MP -MF $(DEPDIR)/$(@F).Ppo
-+@AMDEP_FALSE@M_DEPS =
- M_SIZE = -DN=$(PAT_N)
- M_IFUNC = $(if $(PAT_S),$(IFUNC_DEF) $(IFUNC_OPT))
- M_FILE = $(PAT_BASE)_n.c
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0025-Don-t-search-host-directory-during-relink-if-inst_pr.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0025-Don-t-search-host-directory-during-relink-if-inst_pr.patch
deleted file mode 100644
index d8b35bb..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0025-Don-t-search-host-directory-during-relink-if-inst_pr.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From fd96c9b35c592f1bdd32bc5ae669157473e44063 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 3 Mar 2015 08:21:19 +0000
-Subject: [PATCH 25/39] Don't search host directory during "relink" if
- $inst_prefix is provided
-
-http://lists.gnu.org/archive/html/libtool-patches/2011-01/msg00026.html
-
-Upstream-Status: Submitted
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- ltmain.sh | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/ltmain.sh b/ltmain.sh
-index 52bdbdb5f9c..82bcec39f05 100644
---- a/ltmain.sh
-+++ b/ltmain.sh
-@@ -6004,12 +6004,13 @@ func_mode_link ()
- 	      fi
- 	    else
- 	      # We cannot seem to hardcode it, guess we'll fake it.
-+	      # Default if $libdir is not relative to the prefix:
- 	      add_dir="-L$libdir"
--	      # Try looking first in the location we're being installed to.
-+
- 	      if test -n "$inst_prefix_dir"; then
- 		case $libdir in
- 		  [\\/]*)
--		    add_dir="$add_dir -L$inst_prefix_dir$libdir"
-+		    add_dir="-L$inst_prefix_dir$libdir"
- 		    ;;
- 		esac
- 	      fi
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0026-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0026-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
deleted file mode 100644
index d3ab5aa..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0026-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From c2e400afe8c514357859fca88af4d3e1fcbfe2ff Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 28 Apr 2015 23:15:27 -0700
-Subject: [PATCH 26/39] Use SYSTEMLIBS_DIR replacement instead of hardcoding
- base_libdir
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Pending
-
- gcc/config/aarch64/aarch64-linux.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
-index bf1327e98cc..64436183bc8 100644
---- a/gcc/config/aarch64/aarch64-linux.h
-+++ b/gcc/config/aarch64/aarch64-linux.h
-@@ -21,7 +21,7 @@
- #ifndef GCC_AARCH64_LINUX_H
- #define GCC_AARCH64_LINUX_H
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
-+#define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
- 
- #undef MUSL_DYNAMIC_LINKER
- #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0027-aarch64-Add-support-for-musl-ldso.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0027-aarch64-Add-support-for-musl-ldso.patch
deleted file mode 100644
index 9e5ce8a..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0027-aarch64-Add-support-for-musl-ldso.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From a2cc175769fd8255750eaecae64e3d1f9c38d48f Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 28 Apr 2015 23:18:39 -0700
-Subject: [PATCH 27/39] aarch64: Add support for musl ldso
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Pending
-
- gcc/config/aarch64/aarch64-linux.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
-index 64436183bc8..ba156676026 100644
---- a/gcc/config/aarch64/aarch64-linux.h
-+++ b/gcc/config/aarch64/aarch64-linux.h
-@@ -24,7 +24,7 @@
- #define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
- 
- #undef MUSL_DYNAMIC_LINKER
--#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
-+#define MUSL_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
- 
- #undef  ASAN_CC1_SPEC
- #define ASAN_CC1_SPEC "%{%:sanitize(address):-funwind-tables}"
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0028-libcc1-fix-libcc1-s-install-path-and-rpath.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0028-libcc1-fix-libcc1-s-install-path-and-rpath.patch
deleted file mode 100644
index 2673f4e..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0028-libcc1-fix-libcc1-s-install-path-and-rpath.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From a8a8a02788ff98f253ce0b33adcb0e661d24b1e3 Mon Sep 17 00:00:00 2001
-From: Robert Yang <liezhi.yang@windriver.com>
-Date: Sun, 5 Jul 2015 20:25:18 -0700
-Subject: [PATCH 28/39] libcc1: fix libcc1's install path and rpath
-
-* Install libcc1.so and libcc1plugin.so into
-  $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version), as what we
-  had done to lto-plugin.
-* Fix bad RPATH iussue:
-  gcc-5.2.0: package gcc-plugins contains bad RPATH /patht/to/tmp/sysroots/qemux86-64/usr/lib64/../lib64 in file
- /path/to/gcc/5.2.0-r0/packages-split/gcc-plugins/usr/lib64/gcc/x86_64-poky-linux/5.2.0/plugin/libcc1plugin.so.0.0.0
- [rpaths]
-
-Upstream-Status: Inappropriate [OE configuration]
-
-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
----
- libcc1/Makefile.am | 4 ++--
- libcc1/Makefile.in | 4 ++--
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am
-index 6ecb66b4365..634cce3c2a9 100644
---- a/libcc1/Makefile.am
-+++ b/libcc1/Makefile.am
-@@ -37,8 +37,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
- 	    $(Wc)$(libiberty_normal)))
- libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
- 
--plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
--cc1libdir = $(libdir)/$(libsuffix)
-+cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
-+plugindir = $(cc1libdir)
- 
- if ENABLE_PLUGIN
- plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
-diff --git a/libcc1/Makefile.in b/libcc1/Makefile.in
-index 47be10025ad..8d5481d87bd 100644
---- a/libcc1/Makefile.in
-+++ b/libcc1/Makefile.in
-@@ -303,8 +303,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
- 	    $(Wc)$(libiberty_normal)))
- 
- libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
--plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
--cc1libdir = $(libdir)/$(libsuffix)
-+cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
-+plugindir = $(cc1libdir)
- @ENABLE_PLUGIN_TRUE@plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
- @ENABLE_PLUGIN_TRUE@cc1lib_LTLIBRARIES = libcc1.la
- shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0029-handle-sysroot-support-for-nativesdk-gcc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0029-handle-sysroot-support-for-nativesdk-gcc.patch
deleted file mode 100644
index 727bb0d..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0029-handle-sysroot-support-for-nativesdk-gcc.patch
+++ /dev/null
@@ -1,213 +0,0 @@
-From 3bb74495e45e0e798daae5556497e688b8fc4eef Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 7 Dec 2015 23:39:54 +0000
-Subject: [PATCH 29/39] handle sysroot support for nativesdk-gcc
-
-Being able to build a nativesdk gcc is useful, particularly in cases
-where the host compiler may be of an incompatible version (or a 32
-bit compiler is needed).
-
-Sadly, building nativesdk-gcc is not straight forward. We install
-nativesdk-gcc into a relocatable location and this means that its
-library locations can change. "Normal" sysroot support doesn't help
-in this case since the values of paths like "libdir" change, not just
-base root directory of the system.
-
-In order to handle this we do two things:
-
-a) Add %r into spec file markup which can be used for injected paths
-   such as SYSTEMLIBS_DIR (see gcc_multilib_setup()).
-b) Add other paths which need relocation into a .gccrelocprefix section
-   which the relocation code will notice and adjust automatically.
-
-Upstream-Status: Inappropriate
-RP 2015/7/28
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/cppdefault.c | 50 +++++++++++++++++++++++++++++++++++-------------
- gcc/cppdefault.h |  3 ++-
- gcc/gcc.c        | 20 +++++++++++++------
- 3 files changed, 53 insertions(+), 20 deletions(-)
-
-diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
-index e2e187dedaf..2faba2b1d63 100644
---- a/gcc/cppdefault.c
-+++ b/gcc/cppdefault.c
-@@ -35,6 +35,30 @@
- # undef CROSS_INCLUDE_DIR
- #endif
- 
-+static char GPLUSPLUS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_INCLUDE_DIR;
-+static char GCC_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GCC_INCLUDE_DIR;
-+static char GPLUSPLUS_TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_TOOL_INCLUDE_DIR;
-+static char GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_BACKWARD_INCLUDE_DIR;
-+static char STANDARD_STARTFILE_PREFIX_2VAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET;
-+#ifdef LOCAL_INCLUDE_DIR
-+static char LOCAL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = LOCAL_INCLUDE_DIR;
-+#endif
-+#ifdef PREFIX_INCLUDE_DIR
-+static char PREFIX_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX_INCLUDE_DIR;
-+#endif
-+#ifdef FIXED_INCLUDE_DIR
-+static char FIXED_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = FIXED_INCLUDE_DIR;
-+#endif
-+#ifdef CROSS_INCLUDE_DIR
-+static char CROSS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = CROSS_INCLUDE_DIR;
-+#endif
-+#ifdef TOOL_INCLUDE_DIR
-+static char TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = TOOL_INCLUDE_DIR;
-+#endif
-+#ifdef NATIVE_SYSTEM_HEADER_DIR
-+static char NATIVE_SYSTEM_HEADER_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = NATIVE_SYSTEM_HEADER_DIR;
-+#endif
-+
- const struct default_include cpp_include_defaults[]
- #ifdef INCLUDE_DEFAULTS
- = INCLUDE_DEFAULTS;
-@@ -42,38 +66,38 @@ const struct default_include cpp_include_defaults[]
- = {
- #ifdef GPLUSPLUS_INCLUDE_DIR
-     /* Pick up GNU C++ generic include files.  */
--    { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1,
-+    { GPLUSPLUS_INCLUDE_DIRVAR, "G++", 1, 1,
-       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
- #endif
- #ifdef GPLUSPLUS_TOOL_INCLUDE_DIR
-     /* Pick up GNU C++ target-dependent include files.  */
--    { GPLUSPLUS_TOOL_INCLUDE_DIR, "G++", 1, 1,
-+    { GPLUSPLUS_TOOL_INCLUDE_DIRVAR, "G++", 1, 1,
-       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 1 },
- #endif
- #ifdef GPLUSPLUS_BACKWARD_INCLUDE_DIR
-     /* Pick up GNU C++ backward and deprecated include files.  */
--    { GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1,
-+    { GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR, "G++", 1, 1,
-       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
- #endif
- #ifdef GCC_INCLUDE_DIR
-     /* This is the dir for gcc's private headers.  */
--    { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
-+    { GCC_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
- #endif
- #ifdef GCC_INCLUDE_SUBDIR_TARGET
-     /* This is the dir for gcc's private headers under the specified sysroot.  */
--    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
-+    { STANDARD_STARTFILE_PREFIX_2VAR, "GCC", 0, 0, 1, 0 },
- #endif
- #ifdef LOCAL_INCLUDE_DIR
-     /* /usr/local/include comes before the fixincluded header files.  */
--    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
--    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 0 },
-+    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 2 },
-+    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 0 },
- #endif
- #ifdef PREFIX_INCLUDE_DIR
--    { PREFIX_INCLUDE_DIR, 0, 0, 1, 0, 0 },
-+    { PREFIX_INCLUDE_DIRVAR, 0, 0, 1, 0, 0 },
- #endif
- #ifdef FIXED_INCLUDE_DIR
-     /* This is the dir for fixincludes.  */
--    { FIXED_INCLUDE_DIR, "GCC", 0, 0, 0,
-+    { FIXED_INCLUDE_DIRVAR, "GCC", 0, 0, 0,
-       /* A multilib suffix needs adding if different multilibs use
- 	 different headers.  */
- #ifdef SYSROOT_HEADERS_SUFFIX_SPEC
-@@ -85,16 +109,16 @@ const struct default_include cpp_include_defaults[]
- #endif
- #ifdef CROSS_INCLUDE_DIR
-     /* One place the target system's headers might be.  */
--    { CROSS_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
-+    { CROSS_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
- #endif
- #ifdef TOOL_INCLUDE_DIR
-     /* Another place the target system's headers might be.  */
--    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1, 0, 0 },
-+    { TOOL_INCLUDE_DIRVAR, "BINUTILS", 0, 1, 0, 0 },
- #endif
- #ifdef NATIVE_SYSTEM_HEADER_DIR
-     /* /usr/include comes dead last.  */
--    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
--    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
-+    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
-+    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
- #endif
-     { 0, 0, 0, 0, 0, 0 }
-   };
-diff --git a/gcc/cppdefault.h b/gcc/cppdefault.h
-index 4a0186d1cf2..29e5d9da0dc 100644
---- a/gcc/cppdefault.h
-+++ b/gcc/cppdefault.h
-@@ -33,7 +33,8 @@
- 
- struct default_include
- {
--  const char *const fname;	/* The name of the directory.  */
-+  const char *fname;     /* The name of the directory.  */
-+
-   const char *const component;	/* The component containing the directory
- 				   (see update_path in prefix.c) */
-   const char cplusplus;		/* Only look here if we're compiling C++.  */
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index 3fb64d453f1..cd0c7fbe961 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -248,6 +248,8 @@ FILE *report_times_to_file = NULL;
- #endif
- static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
- 
-+static char target_relocatable_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = SYSTEMLIBS_DIR;
-+
- /* Nonzero means pass the updated target_system_root to the compiler.  */
- 
- static int target_system_root_changed;
-@@ -519,6 +521,7 @@ or with constant text in a single argument.
-  %G     process LIBGCC_SPEC as a spec.
-  %R     Output the concatenation of target_system_root and
-         target_sysroot_suffix.
-+ %r     Output the base path target_relocatable_prefix
-  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
-  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
-  %C     process CPP_SPEC as a spec.
-@@ -1487,10 +1490,10 @@ static const char *gcc_libexec_prefix;
-    gcc_exec_prefix is set because, in that case, we know where the
-    compiler has been installed, and use paths relative to that
-    location instead.  */
--static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
--static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
--static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
--static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
-+static char standard_exec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
-+static char standard_libexec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_LIBEXEC_PREFIX;
-+static char standard_bindir_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_BINDIR_PREFIX;
-+static char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
- 
- /* For native compilers, these are well-known paths containing
-    components that may be provided by the system.  For cross
-@@ -1498,9 +1501,9 @@ static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
- static const char *md_exec_prefix = MD_EXEC_PREFIX;
- static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
- static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
--static const char *const standard_startfile_prefix_1
-+static char standard_startfile_prefix_1[4096] __attribute__ ((section (".gccrelocprefix")))
-   = STANDARD_STARTFILE_PREFIX_1;
--static const char *const standard_startfile_prefix_2
-+static char standard_startfile_prefix_2[4096] __attribute__ ((section (".gccrelocprefix")))
-   = STANDARD_STARTFILE_PREFIX_2;
- 
- /* A relative path to be used in finding the location of tools
-@@ -5849,6 +5852,11 @@ do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
- 	      }
- 	    break;
- 
-+          case 'r':
-+              obstack_grow (&obstack, target_relocatable_prefix,
-+		      strlen (target_relocatable_prefix));
-+            break;
-+
- 	  case 'S':
- 	    value = do_spec_1 (startfile_spec, 0, NULL);
- 	    if (value != 0)
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0030-Search-target-sysroot-gcc-version-specific-dirs-with.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0030-Search-target-sysroot-gcc-version-specific-dirs-with.patch
deleted file mode 100644
index 33566df..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0030-Search-target-sysroot-gcc-version-specific-dirs-with.patch
+++ /dev/null
@@ -1,102 +0,0 @@
-From f5cc8cd0c44092dc487106ade27e011c1f584ada Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 7 Dec 2015 23:41:45 +0000
-Subject: [PATCH 30/39] Search target sysroot gcc version specific dirs with
- multilib.
-
-We install the gcc libraries (such as crtbegin.p) into
-<sysroot><libdir>/<target-sys>/5.2.0/
-which is a default search path for GCC (aka multi_suffix in the
-code below). <target-sys> is 'machine' in gcc's terminology. We use
-these directories so that multiple gcc versions could in theory
-co-exist on target.
-
-We only want to build one gcc-cross-canadian per arch and have this work
-for all multilibs. <target-sys> can be handled by mapping the multilib
-<target-sys> to the one used by gcc-cross-canadian, e.g.
-mips64-polkmllib32-linux
-is symlinked to by mips64-poky-linux.
-
-The default gcc search path in the target sysroot for a "lib64" mutlilib
-is:
-
-<sysroot>/lib32/mips64-poky-linux/5.2.0/
-<sysroot>/lib32/../lib64/
-<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
-<sysroot>/usr/lib32/../lib64/
-<sysroot>/lib32/
-<sysroot>/usr/lib32/
-
-which means that the lib32 crtbegin.o will be found and the lib64 ones
-will not which leads to compiler failures.
-
-This patch injects a multilib version of that path first so the lib64
-binaries can be found first. With this change the search path becomes:
-
-<sysroot>/lib32/../lib64/mips64-poky-linux/5.2.0/
-<sysroot>/lib32/mips64-poky-linux/5.2.0/
-<sysroot>/lib32/../lib64/
-<sysroot>/usr/lib32/../lib64/mips64-poky-linux/5.2.0/
-<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
-<sysroot>/usr/lib32/../lib64/
-<sysroot>/lib32/
-<sysroot>/usr/lib32/
-
-Upstream-Status: Pending
-RP 2015/7/31
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/gcc.c | 29 ++++++++++++++++++++++++++++-
- 1 file changed, 28 insertions(+), 1 deletion(-)
-
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index cd0c7fbe961..f6f3aa077c8 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -2527,7 +2527,7 @@ for_each_path (const struct path_prefix *paths,
-       if (path == NULL)
- 	{
- 	  len = paths->max_len + extra_space + 1;
--	  len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
-+	  len += MAX ((suffix_len + multi_os_dir_len), multiarch_len);
- 	  path = XNEWVEC (char, len);
- 	}
- 
-@@ -2539,6 +2539,33 @@ for_each_path (const struct path_prefix *paths,
- 	  /* Look first in MACHINE/VERSION subdirectory.  */
- 	  if (!skip_multi_dir)
- 	    {
-+	      if (!(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
-+	        {
-+	          const char *this_multi;
-+	          size_t this_multi_len;
-+
-+	          if (pl->os_multilib)
-+		    {
-+		      this_multi = multi_os_dir;
-+		      this_multi_len = multi_os_dir_len;
-+		    }
-+	          else
-+		    {
-+		      this_multi = multi_dir;
-+		      this_multi_len = multi_dir_len;
-+		    }
-+
-+	          /* Look in multilib MACHINE/VERSION subdirectory first */
-+	          if (this_multi_len)
-+	            {
-+		      memcpy (path + len, this_multi, this_multi_len + 1);
-+	              memcpy (path + len + this_multi_len, multi_suffix, suffix_len + 1);
-+	              ret = callback (path, callback_info);
-+	                if (ret)
-+		          break;
-+	            }
-+	        }
-+
- 	      memcpy (path + len, multi_suffix, suffix_len + 1);
- 	      ret = callback (path, callback_info);
- 	      if (ret)
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0031-Fix-various-_FOR_BUILD-and-related-variables.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0031-Fix-various-_FOR_BUILD-and-related-variables.patch
deleted file mode 100644
index dabc005..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0031-Fix-various-_FOR_BUILD-and-related-variables.patch
+++ /dev/null
@@ -1,137 +0,0 @@
-From 93b4e1d3a0f8417118d1c48fcd1ce51996e1420b Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 7 Dec 2015 23:42:45 +0000
-Subject: [PATCH 31/39] Fix various _FOR_BUILD and related variables
-
-When doing a FOR_BUILD thing, you have to override CFLAGS with
-CFLAGS_FOR_BUILD. And if you use C++, you also have to override
-CXXFLAGS with CXXFLAGS_FOR_BUILD.
-Without this, when building for mingw, you end up trying to use
-the mingw headers for a host build.
-
-The same goes for other variables as well, such as CPPFLAGS,
-CPP, and GMPINC.
-
-Upstream-Status: Pending
-
-Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
-Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- Makefile.in      | 6 ++++++
- Makefile.tpl     | 5 +++++
- gcc/Makefile.in  | 2 +-
- gcc/configure    | 2 +-
- gcc/configure.ac | 2 +-
- 5 files changed, 14 insertions(+), 3 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index 1af45580086..8966453c32c 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -152,6 +152,7 @@ BUILD_EXPORTS = \
- 	CPP="$(CC_FOR_BUILD) -E"; export CPP; \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
-+	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
- 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
- 	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
- 	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
-@@ -169,6 +170,9 @@ BUILD_EXPORTS = \
- # built for the build system to override those in BASE_FLAGS_TO_PASS.
- EXTRA_BUILD_FLAGS = \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)" \
-+	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
-+	CPP="$(CC_FOR_BUILD) -E" \
-+	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
- 	LDFLAGS="$(LDFLAGS_FOR_BUILD)"
- 
- # This is the list of directories to built for the host system.
-@@ -186,6 +190,7 @@ HOST_SUBDIR = @host_subdir@
- HOST_EXPORTS = \
- 	$(BASE_EXPORTS) \
- 	CC="$(CC)"; export CC; \
-+	CPP="$(CC) -E"; export CPP; \
- 	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
- 	CFLAGS="$(CFLAGS)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
-@@ -753,6 +758,7 @@ BASE_FLAGS_TO_PASS = \
- 	"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
- 	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
- 	"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
-+	"CXXFLAGS_FOR_BUILD=$(CXXFLAGS_FOR_BUILD)" \
- 	"EXPECT=$(EXPECT)" \
- 	"FLEX=$(FLEX)" \
- 	"INSTALL=$(INSTALL)" \
-diff --git a/Makefile.tpl b/Makefile.tpl
-index abd2bc2fb89..5822b260404 100644
---- a/Makefile.tpl
-+++ b/Makefile.tpl
-@@ -154,6 +154,7 @@ BUILD_EXPORTS = \
- 	CC="$(CC_FOR_BUILD)"; export CC; \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
-+	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
- 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
- 	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
- 	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
-@@ -171,6 +172,9 @@ BUILD_EXPORTS = \
- # built for the build system to override those in BASE_FLAGS_TO_PASS.
- EXTRA_BUILD_FLAGS = \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)" \
-+	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
-+	CPP="$(CC_FOR_BUILD) -E" \
-+	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
- 	LDFLAGS="$(LDFLAGS_FOR_BUILD)"
- 
- # This is the list of directories to built for the host system.
-@@ -188,6 +192,7 @@ HOST_SUBDIR = @host_subdir@
- HOST_EXPORTS = \
- 	$(BASE_EXPORTS) \
- 	CC="$(CC)"; export CC; \
-+	CPP="$(CC) -E"; export CPP; \
- 	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
- 	CFLAGS="$(CFLAGS)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
-diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 5ae693fb06c..02ee0aa72f4 100644
---- a/gcc/Makefile.in
-+++ b/gcc/Makefile.in
-@@ -801,7 +801,7 @@ BUILD_LDFLAGS=@BUILD_LDFLAGS@
- BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@
- BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG)
- BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
--		-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS)
-+		-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS_FOR_BUILD)
- 
- # Actual name to use when installing a native compiler.
- GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
-diff --git a/gcc/configure b/gcc/configure
-index cfcadc93a01..2f6b4f72ef3 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -11797,7 +11797,7 @@ else
- 	CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
- 	CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
- 	LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
--	GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
-+	GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
- 	${realsrcdir}/configure \
- 		--enable-languages=${enable_languages-all} \
- 		--target=$target_alias --host=$build_alias --build=$build_alias
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 44b90478f55..9f8a51fc9bd 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -1708,7 +1708,7 @@ else
- 	CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
- 	CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
- 	LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
--	GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
-+	GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
- 	${realsrcdir}/configure \
- 		--enable-languages=${enable_languages-all} \
- 		--target=$target_alias --host=$build_alias --build=$build_alias
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0032-nios2-Define-MUSL_DYNAMIC_LINKER.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0032-nios2-Define-MUSL_DYNAMIC_LINKER.patch
deleted file mode 100644
index 6dd9d54..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0032-nios2-Define-MUSL_DYNAMIC_LINKER.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 99f3e3b427996ac579d95e68440a0bd7af7ef0fc Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 2 Feb 2016 10:26:10 -0800
-Subject: [PATCH 32/39] nios2: Define MUSL_DYNAMIC_LINKER
-
-Signed-off-by: Marek Vasut <marex@denx.de>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Pending
-
- gcc/config/nios2/linux.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/gcc/config/nios2/linux.h b/gcc/config/nios2/linux.h
-index 4729105626d..36181eb7b85 100644
---- a/gcc/config/nios2/linux.h
-+++ b/gcc/config/nios2/linux.h
-@@ -30,6 +30,7 @@
- #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
- 
- #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-nios2.so.1"
-+#define MUSL_DYNAMIC_LINKER  "/lib/ld-musl-nios2.so.1"
- 
- #undef LINK_SPEC
- #define LINK_SPEC LINK_SPEC_ENDIAN \
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0033-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0033-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
deleted file mode 100644
index 05a6b0a..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0033-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
+++ /dev/null
@@ -1,87 +0,0 @@
-From 84b55ab2f68710a583d4ec810ea8b3b68576f8aa Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 27 Jun 2017 18:10:54 -0700
-Subject: [PATCH 33/39] Add ssp_nonshared to link commandline for musl targets
-
-when -fstack-protector options are enabled we need to
-link with ssp_shared on musl since it does not provide
-the __stack_chk_fail_local() so essentially it provides
-libssp but not libssp_nonshared something like
-TARGET_LIBC_PROVIDES_SSP_BUT_NOT_SSP_NONSHARED
- where-as for glibc the needed symbols
-are already present in libc_nonshared library therefore
-we do not need any library helper on glibc based systems
-but musl needs the libssp_noshared from gcc
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/linux.h          |  7 +++++++
- gcc/config/rs6000/linux.h   | 10 ++++++++++
- gcc/config/rs6000/linux64.h | 10 ++++++++++
- 3 files changed, 27 insertions(+)
-
-diff --git a/gcc/config/linux.h b/gcc/config/linux.h
-index 487b0c0923b..4769d089538 100644
---- a/gcc/config/linux.h
-+++ b/gcc/config/linux.h
-@@ -182,6 +182,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
-     { GCC_INCLUDE_DIR, "GCC", 0, 1, 0, 0 },		\
-     { 0, 0, 0, 0, 0, 0 }				\
-   }
-+#ifdef TARGET_LIBC_PROVIDES_SSP
-+#undef LINK_SSP_SPEC
-+#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
-+		       "|fstack-protector-strong|fstack-protector-explicit" \
-+		       ":-lssp_nonshared}"
-+#endif
-+
- #endif
- 
- #if (DEFAULT_LIBC == LIBC_UCLIBC) && defined (SINGLE_LIBC) /* uClinux */
-diff --git a/gcc/config/rs6000/linux.h b/gcc/config/rs6000/linux.h
-index 01b40c762f6..e7c5e92215c 100644
---- a/gcc/config/rs6000/linux.h
-+++ b/gcc/config/rs6000/linux.h
-@@ -92,6 +92,16 @@
- 					 " -m elf32ppclinux")
- #endif
- 
-+/* link libssp_nonshared.a with musl */
-+#if DEFAULT_LIBC == LIBC_MUSL
-+#ifdef TARGET_LIBC_PROVIDES_SSP
-+#undef LINK_SSP_SPEC
-+#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
-+		       "|fstack-protector-strong|fstack-protector-explicit" \
-+		       ":-lssp_nonshared}"
-+#endif
-+#endif
-+
- #undef LINK_OS_LINUX_SPEC
- #define LINK_OS_LINUX_SPEC LINK_OS_LINUX_EMUL " %{!shared: %{!static: \
-   %{!static-pie: \
-diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
-index 55695dadd91..60f1ee24985 100644
---- a/gcc/config/rs6000/linux64.h
-+++ b/gcc/config/rs6000/linux64.h
-@@ -473,6 +473,16 @@ extern int dot_symbols;
- 					   " -m elf64ppc")
- #endif
- 
-+/* link libssp_nonshared.a with musl */
-+#if DEFAULT_LIBC == LIBC_MUSL
-+#ifdef TARGET_LIBC_PROVIDES_SSP
-+#undef LINK_SSP_SPEC
-+#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
-+		       "|fstack-protector-strong|fstack-protector-explicit" \
-+		       ":-lssp_nonshared}"
-+#endif
-+#endif
-+
- #define LINK_OS_LINUX_SPEC32 LINK_OS_LINUX_EMUL32 " %{!shared: %{!static: \
-   %{!static-pie: \
-     %{rdynamic:-export-dynamic} \
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0034-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0034-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch
deleted file mode 100644
index 391cda7..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0034-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch
+++ /dev/null
@@ -1,465 +0,0 @@
-From faf35e26740461fe1a1da5433d5a0169a663e3b5 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Apr 2016 20:03:28 +0000
-Subject: [PATCH 34/39] libgcc: Add knob to use ldbl-128 on ppc
-
-musl does not support ldbl 128 so we can not assume
-that linux as a whole supports ldbl-128 bits, instead
-act upon configure option passed to gcc and assume no
-on musl and yes otherwise if no option is passed since
-default behaviour is to assume ldbl128 it does not
-change the defaults
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Pending
-
- libgcc/Makefile.in           |  1 +
- libgcc/config/rs6000/t-linux |  5 ++++-
- libgcc/configure             | 18 ++++++++++++++++++
- libgcc/configure.ac          | 12 ++++++++++++
- 4 files changed, 35 insertions(+), 1 deletion(-)
- mode change 100644 => 100755 libgcc/configure
-
-diff --git a/libgcc/Makefile.in b/libgcc/Makefile.in
-index dd8cee99fd3..b5f478af382 100644
---- a/libgcc/Makefile.in
-+++ b/libgcc/Makefile.in
-@@ -48,6 +48,7 @@ unwind_header = @unwind_header@
- md_unwind_header = @md_unwind_header@
- sfp_machine_header = @sfp_machine_header@
- thread_header = @thread_header@
-+with_ldbl128 = @with_ldbl128@
- 
- host_noncanonical = @host_noncanonical@
- real_host_noncanonical = @real_host_noncanonical@
-diff --git a/libgcc/config/rs6000/t-linux b/libgcc/config/rs6000/t-linux
-index 4f6d4c4a4d2..c50dd94a2da 100644
---- a/libgcc/config/rs6000/t-linux
-+++ b/libgcc/config/rs6000/t-linux
-@@ -1,3 +1,9 @@
- SHLIB_MAPFILES += $(srcdir)/config/rs6000/libgcc-glibc.ver
- 
--HOST_LIBGCC2_CFLAGS += -mlong-double-128 -mno-minimal-toc
-+ifeq ($(with_ldbl128),yes)
-+HOST_LIBGCC2_CFLAGS += -mlong-double-128
-+else
-+# We do not want to build ibm-ldouble.c.
-+LIB2ADD := $(filter-out %ibm-ldouble.c, $(LIB2ADD))
-+endif
-+HOST_LIBGCC2_CFLAGS += -mno-minimal-toc
-diff --git a/libgcc/config/rs6000/fixtfdi.c b/libgcc/config/rs6000/fixtfdi.c
---- a/libgcc/config/rs6000/fixtfdi.c	1969-12-31 19:00:00.000000000 -0500
-+++ b/libgcc/config/rs6000/fixtfdi.c	2018-12-12 17:54:50.110755540 -0500
-@@ -0,0 +1,42 @@
-+/* Software floating-point emulation.
-+   Convert a to 64bit signed integer
-+   Copyright (C) 1997-2016 Free Software Foundation, Inc.
-+   This file is part of the GNU C Library.
-+   Contributed by Richard Henderson (rth@cygnus.com) and
-+		  Jakub Jelinek (jj@ultra.linux.cz).
-+
-+   The GNU C Library is free software; you can redistribute it and/or
-+   modify it under the terms of the GNU Lesser General Public
-+   License as published by the Free Software Foundation; either
-+   version 2.1 of the License, or (at your option) any later version.
-+
-+   In addition to the permissions in the GNU Lesser General Public
-+   License, the Free Software Foundation gives you unlimited
-+   permission to link the compiled version of this file into
-+   combinations with other programs, and to distribute those
-+   combinations without any restriction coming from the use of this
-+   file.  (The Lesser General Public License restrictions do apply in
-+   other respects; for example, they cover modification of the file,
-+   and distribution when not linked into a combine executable.)
-+
-+   The GNU C Library is distributed in the hope that it will be useful,
-+   but WITHOUT ANY WARRANTY; without even the implied warranty of
-+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-+   Lesser General Public License for more details.
-+
-+   You should have received a copy of the GNU Lesser General Public
-+   License along with the GNU C Library; if not, see
-+   <http://www.gnu.org/licenses/>.  */
-+
-+#ifdef _ARCH_PPC64
-+#include "soft-fp.h"
-+#include "quad-float128.h"
-+
-+DItype
-+__fixtfdi (TFtype a)
-+{
-+  if (a < 0)
-+    return - __fixunstfdi (-a);
-+  return __fixunstfdi (a);
-+}
-+#endif
-diff --git a/libgcc/config/rs6000/fixunstfdi.c b/libgcc/config/rs6000/fixunstfdi.c
---- a/libgcc/config/rs6000/fixunstfdi.c	1969-12-31 19:00:00.000000000 -0500
-+++ b/libgcc/config/rs6000/fixunstfdi.c	2018-12-12 17:56:06.141654537 -0500
-@@ -0,0 +1,58 @@
-+/* Software floating-point emulation.
-+   Convert a to 64bit unsigned integer
-+   Copyright (C) 1997-2016 Free Software Foundation, Inc.
-+   This file is part of the GNU C Library.
-+   Contributed by Richard Henderson (rth@cygnus.com) and
-+		  Jakub Jelinek (jj@ultra.linux.cz).
-+
-+   The GNU C Library is free software; you can redistribute it and/or
-+   modify it under the terms of the GNU Lesser General Public
-+   License as published by the Free Software Foundation; either
-+   version 2.1 of the License, or (at your option) any later version.
-+
-+   In addition to the permissions in the GNU Lesser General Public
-+   License, the Free Software Foundation gives you unlimited
-+   permission to link the compiled version of this file into
-+   combinations with other programs, and to distribute those
-+   combinations without any restriction coming from the use of this
-+   file.  (The Lesser General Public License restrictions do apply in
-+   other respects; for example, they cover modification of the file,
-+   and distribution when not linked into a combine executable.)
-+
-+   The GNU C Library is distributed in the hope that it will be useful,
-+   but WITHOUT ANY WARRANTY; without even the implied warranty of
-+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-+   Lesser General Public License for more details.
-+
-+   You should have received a copy of the GNU Lesser General Public
-+   License along with the GNU C Library; if not, see
-+   <http://www.gnu.org/licenses/>.  */
-+
-+#ifdef _ARCH_PPC64
-+#include "soft-fp.h"
-+#include "quad-float128.h"
-+
-+DItype
-+__fixunstfdi (TFtype a)
-+{
-+  if (a < 0)
-+    return 0;
-+
-+  /* Compute high word of result, as a flonum.  */
-+  const TFtype b = (a / (((UDItype) 1) << (sizeof (SItype) * 8)));
-+  /* Convert that to fixed (but not to DItype!),
-+     and shift it into the high word.  */
-+  UDItype v = (USItype) b;
-+  v <<= (sizeof (SItype) * 8);
-+  /* Remove high part from the TFtype, leaving the low part as flonum.  */
-+  a -= (TFtype) v;
-+  /* Convert that to fixed (but not to DItype!) and add it in.
-+     Sometimes A comes out negative.  This is significant, since
-+     A has more bits than a long int does.  */
-+  if (a < 0)
-+    v -= (USItype) (-a);
-+  else
-+    v += (USItype) a;
-+  return v;
-+}
-+#endif
-diff --git a/libgcc/config/rs6000/floatditf.c b/libgcc/config/rs6000/floatditf.c
---- a/libgcc/config/rs6000/floatditf.c	1969-12-31 19:00:00.000000000 -0500
-+++ b/libgcc/config/rs6000/floatditf.c	2018-12-12 17:57:55.852953553 -0500
-@@ -0,0 +1,47 @@
-+/* Software floating-point emulation.
-+   Convert a 64bit signed integer to IEEE quad
-+   Copyright (C) 1997-2016 Free Software Foundation, Inc.
-+   This file is part of the GNU C Library.
-+   Contributed by Richard Henderson (rth@cygnus.com) and
-+		  Jakub Jelinek (jj@ultra.linux.cz).
-+
-+   The GNU C Library is free software; you can redistribute it and/or
-+   modify it under the terms of the GNU Lesser General Public
-+   License as published by the Free Software Foundation; either
-+   version 2.1 of the License, or (at your option) any later version.
-+
-+   In addition to the permissions in the GNU Lesser General Public
-+   License, the Free Software Foundation gives you unlimited
-+   permission to link the compiled version of this file into
-+   combinations with other programs, and to distribute those
-+   combinations without any restriction coming from the use of this
-+   file.  (The Lesser General Public License restrictions do apply in
-+   other respects; for example, they cover modification of the file,
-+   and distribution when not linked into a combine executable.)
-+
-+   The GNU C Library is distributed in the hope that it will be useful,
-+   but WITHOUT ANY WARRANTY; without even the implied warranty of
-+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-+   Lesser General Public License for more details.
-+
-+   You should have received a copy of the GNU Lesser General Public
-+   License along with the GNU C Library; if not, see
-+   <http://www.gnu.org/licenses/>.  */
-+
-+#ifdef _ARCH_PPC64
-+#include "soft-fp.h"
-+#include "double.h"
-+#include "quad-float128.h"
-+
-+TFtype
-+__floatditf (DItype u)
-+{
-+  DFtype dh, dl;
-+
-+  dh = (SItype) (u >> (sizeof (SItype) * 8));
-+  dh *= 2.0 * (((UDItype) 1) << ((sizeof (SItype) * 8) - 1));
-+  dl = (USItype) (u & ((((UDItype) 1) << (sizeof (SItype) * 8)) - 1));
-+
-+  return (TFtype) dh + (TFtype) dl;
-+}
-+#endif
-diff --git a/libgcc/config/rs6000/floatunditf.c b/libgcc/config/rs6000/floatunditf.c
---- a/libgcc/config/rs6000/floatunditf.c	1969-12-31 19:00:00.000000000 -0500
-+++ b/libgcc/config/rs6000/floatunditf.c	2018-12-12 17:57:15.262473574 -0500
-@@ -0,0 +1,47 @@
-+/* Software floating-point emulation.
-+   Convert a 64bit unsigned integer to IEEE quad
-+   Copyright (C) 1997-2016 Free Software Foundation, Inc.
-+   This file is part of the GNU C Library.
-+   Contributed by Richard Henderson (rth@cygnus.com) and
-+		  Jakub Jelinek (jj@ultra.linux.cz).
-+
-+   The GNU C Library is free software; you can redistribute it and/or
-+   modify it under the terms of the GNU Lesser General Public
-+   License as published by the Free Software Foundation; either
-+   version 2.1 of the License, or (at your option) any later version.
-+
-+   In addition to the permissions in the GNU Lesser General Public
-+   License, the Free Software Foundation gives you unlimited
-+   permission to link the compiled version of this file into
-+   combinations with other programs, and to distribute those
-+   combinations without any restriction coming from the use of this
-+   file.  (The Lesser General Public License restrictions do apply in
-+   other respects; for example, they cover modification of the file,
-+   and distribution when not linked into a combine executable.)
-+
-+   The GNU C Library is distributed in the hope that it will be useful,
-+   but WITHOUT ANY WARRANTY; without even the implied warranty of
-+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-+   Lesser General Public License for more details.
-+
-+   You should have received a copy of the GNU Lesser General Public
-+   License along with the GNU C Library; if not, see
-+   <http://www.gnu.org/licenses/>.  */
-+
-+#ifdef _ARCH_PPC64
-+#include "soft-fp.h"
-+#include "double.h"
-+#include "quad-float128.h"
-+
-+TFtype
-+__floatunditf (UDItype u)
-+{
-+  DFtype dh, dl;
-+
-+  dh = (USItype) (u >> (sizeof (SItype) * 8));
-+  dh *= 2.0 * (((UDItype) 1) << ((sizeof (SItype) * 8) - 1));
-+  dl = (USItype) (u & ((((UDItype) 1) << (sizeof (SItype) * 8)) - 1));
-+
-+  return (TFtype) dh + (TFtype) dl;
-+}
-+#endif
-diff --git a/libgcc/config/rs6000/ppc64-fp.c b/libgcc/config/rs6000/ppc64-fp.c
---- a/libgcc/config/rs6000/ppc64-fp.c	2018-12-12 17:53:49.540038500 -0500
-+++ b/libgcc/config/rs6000/ppc64-fp.c	2018-12-12 17:49:51.897235314 -0500
-@@ -25,34 +25,21 @@
- <http://www.gnu.org/licenses/>.  */
- 
- #if defined(__powerpc64__) || defined (__64BIT__) || defined(__ppc64__)
--#define TMODES
- #include "fp-bit.h"
- 
--extern DItype __fixtfdi (TFtype);
- extern DItype __fixdfdi (DFtype);
- extern DItype __fixsfdi (SFtype);
- extern USItype __fixunsdfsi (DFtype);
- extern USItype __fixunssfsi (SFtype);
--extern TFtype __floatditf (DItype);
--extern TFtype __floatunditf (UDItype);
- extern DFtype __floatdidf (DItype);
- extern DFtype __floatundidf (UDItype);
- extern SFtype __floatdisf (DItype);
- extern SFtype __floatundisf (UDItype);
--extern DItype __fixunstfdi (TFtype);
- 
- static DItype local_fixunssfdi (SFtype);
- static DItype local_fixunsdfdi (DFtype);
- 
- DItype
--__fixtfdi (TFtype a)
--{
--  if (a < 0)
--    return - __fixunstfdi (-a);
--  return __fixunstfdi (a);
--}
--
--DItype
- __fixdfdi (DFtype a)
- {
-   if (a < 0)
-@@ -86,30 +73,6 @@
-   return (SItype) a;
- }
- 
--TFtype
--__floatditf (DItype u)
--{
--  DFtype dh, dl;
--
--  dh = (SItype) (u >> (sizeof (SItype) * 8));
--  dh *= 2.0 * (((UDItype) 1) << ((sizeof (SItype) * 8) - 1));
--  dl = (USItype) (u & ((((UDItype) 1) << (sizeof (SItype) * 8)) - 1));
--
--  return (TFtype) dh + (TFtype) dl;
--}
--
--TFtype
--__floatunditf (UDItype u)
--{
--  DFtype dh, dl;
--
--  dh = (USItype) (u >> (sizeof (SItype) * 8));
--  dh *= 2.0 * (((UDItype) 1) << ((sizeof (SItype) * 8) - 1));
--  dl = (USItype) (u & ((((UDItype) 1) << (sizeof (SItype) * 8)) - 1));
--
--  return (TFtype) dh + (TFtype) dl;
--}
--
- DFtype
- __floatdidf (DItype u)
- {
-@@ -183,30 +146,6 @@
-   return (SFtype) f;
- }
- 
--DItype
--__fixunstfdi (TFtype a)
--{
--  if (a < 0)
--    return 0;
--
--  /* Compute high word of result, as a flonum.  */
--  const TFtype b = (a / (((UDItype) 1) << (sizeof (SItype) * 8)));
--  /* Convert that to fixed (but not to DItype!),
--     and shift it into the high word.  */
--  UDItype v = (USItype) b;
--  v <<= (sizeof (SItype) * 8);
--  /* Remove high part from the TFtype, leaving the low part as flonum.  */
--  a -= (TFtype) v;
--  /* Convert that to fixed (but not to DItype!) and add it in.
--     Sometimes A comes out negative.  This is significant, since
--     A has more bits than a long int does.  */
--  if (a < 0)
--    v -= (USItype) (-a);
--  else
--    v += (USItype) a;
--  return v;
--}
--
- /* This version is needed to prevent recursion; fixunsdfdi in libgcc
-    calls fixdfdi, which in turn calls calls fixunsdfdi.  */
- 
-diff --git a/libgcc/config/rs6000/quad-float128.h b/libgcc/config/rs6000/quad-float128.h
---- a/libgcc/config/rs6000/quad-float128.h	2018-12-12 17:53:49.540038500 -0500
-+++ b/libgcc/config/rs6000/quad-float128.h	2018-12-12 17:30:19.423468244 -0500
-@@ -104,6 +104,11 @@
- extern UTItype_ppc __fixunskfti (TFtype);
- extern TFtype __floattikf (TItype_ppc);
- extern TFtype __floatuntikf (UTItype_ppc);
-+
-+extern DItype_ppc __fixtfdi (TFtype);
-+extern DItype_ppc __fixunstfdi (TFtype);
-+extern TFtype __floatditf (DItype_ppc);
-+extern TFtype __floatunditf (UDItype_ppc);
- #endif
- 
- /* Functions using the ISA 3.0 hardware support.  If the code is compiled with
-diff --git a/libgcc/config/rs6000/t-float128 b/libgcc/config/rs6000/t-float128
---- a/libgcc/config/rs6000/t-float128	2018-12-12 17:53:49.540038500 -0500
-+++ b/libgcc/config/rs6000/t-float128	2018-12-12 17:45:12.233937136 -0500
-@@ -24,6 +24,7 @@
- 
- # New functions for software emulation
- fp128_ppc_funcs		= floattikf floatuntikf fixkfti fixunskfti \
-+			  floatditf floatunditf fixtfdi fixunstfdi \
- 			  extendkftf2-sw trunctfkf2-sw \
- 			  sfp-exceptions _mulkc3 _divkc3 _powikf2
- 
-
-diff --git a/libgcc/configure b/libgcc/configure
-old mode 100644
-new mode 100755
-index b2f3f870844..ed806587c17
---- a/libgcc/configure
-+++ b/libgcc/configure
-@@ -619,6 +619,7 @@ build_vendor
- build_cpu
- build
- with_aix_soname
-+with_ldbl128
- enable_vtable_verify
- enable_shared
- libgcc_topdir
-@@ -668,6 +669,7 @@ with_cross_host
- with_ld
- enable_shared
- enable_vtable_verify
-+with_long_double_128
- with_aix_soname
- enable_version_specific_runtime_libs
- with_slibdir
-@@ -1329,6 +1331,7 @@ Optional Packages:
-   --with-target-subdir=SUBDIR      Configuring in a subdirectory for target
-   --with-cross-host=HOST           Configuring with a cross compiler
-   --with-ld               arrange to use the specified ld (full pathname)
-+  --with-long-double-128  use 128-bit long double by default
-   --with-aix-soname=aix|svr4|both
-                           shared library versioning (aka "SONAME") variant to
-                           provide on AIX
-@@ -2213,6 +2216,21 @@ fi
- 
- 
- 
-+# Check whether --with-long-double-128 was given.
-+if test "${with_long_double_128+set}" = set; then :
-+  withval=$with_long_double_128; with_ldbl128="$with_long_double_128"
-+else
-+  case "${host}" in
-+ power*-*-musl*)
-+   with_ldbl128="no";;
-+ *) with_ldbl128="yes";;
-+ esac
-+
-+fi
-+
-+
-+
-+
- # Check whether --with-aix-soname was given.
- if test "${with_aix_soname+set}" = set; then :
-   withval=$with_aix_soname; case "${host}:${enable_shared}" in
-diff --git a/libgcc/configure.ac b/libgcc/configure.ac
-index b59aa746afc..42220a263c5 100644
---- a/libgcc/configure.ac
-+++ b/libgcc/configure.ac
-@@ -78,6 +78,18 @@ AC_ARG_ENABLE(vtable-verify,
- [enable_vtable_verify=no])
- AC_SUBST(enable_vtable_verify)
- 
-+AC_ARG_WITH(long-double-128,
-+[AS_HELP_STRING([--with-long-double-128],
-+    [use 128-bit long double by default])],
-+      with_ldbl128="$with_long_double_128",
-+[case "${host}" in
-+ power*-*-musl*)
-+   with_ldbl128="no";;
-+ *) with_ldbl128="yes";;
-+ esac
-+])
-+AC_SUBST(with_ldbl128)
-+
- AC_ARG_WITH(aix-soname,
- [AS_HELP_STRING([--with-aix-soname=aix|svr4|both],
-     [shared library versioning (aka "SONAME") variant to provide on AIX])],
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0035-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0035-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
deleted file mode 100644
index 5e416e0..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0035-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 775c7fafcbfebed2d4bd8a6a011f18f70f3b59d3 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Wed, 4 May 2016 21:11:34 -0700
-Subject: [PATCH 35/39] Link libgcc using LDFLAGS, not just SHLIB_LDFLAGS
-
-Upstream-Status: Pending
-
-Signed-off-by: Christopher Larson <chris_larson@mentor.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- libgcc/config/t-slibgcc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libgcc/config/t-slibgcc b/libgcc/config/t-slibgcc
-index 7e60b621a2d..ea22ede3361 100644
---- a/libgcc/config/t-slibgcc
-+++ b/libgcc/config/t-slibgcc
-@@ -32,7 +32,7 @@ SHLIB_INSTALL_SOLINK = $(LN_S) $(SHLIB_SONAME) \
- 	$(DESTDIR)$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
- 
- SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
--	$(SHLIB_LDFLAGS) \
-+	$(LDFLAGS) $(SHLIB_LDFLAGS) \
- 	-o $(SHLIB_DIR)/$(SHLIB_SONAME).tmp @multilib_flags@ \
- 	$(SHLIB_OBJS) $(SHLIB_LC) && \
- 	rm -f $(SHLIB_DIR)/$(SHLIB_SOLINK) && \
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0036-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0036-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
deleted file mode 100644
index 8def33a..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0036-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
+++ /dev/null
@@ -1,86 +0,0 @@
-From b7faeed60261d7b75f2db3823926de1650ef64bc Mon Sep 17 00:00:00 2001
-From: Szabolcs Nagy <nsz@port70.net>
-Date: Sat, 24 Oct 2015 20:09:53 +0000
-Subject: [PATCH 36/39] libgcc_s: Use alias for __cpu_indicator_init instead of
- symver
-
-Adapter from
-
-https://gcc.gnu.org/ml/gcc-patches/2015-05/msg00899.html
-
-This fix was debated but hasnt been applied gcc upstream since
-they expect musl to support '@' in symbol versioning which is
-a sun/gnu versioning extention. This patch however avoids the
-need for the '@' symbols at all
-
-libgcc/Changelog:
-
-2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
-
-	* config/i386/cpuinfo.c (__cpu_indicator_init_local): Add.
-	(__cpu_indicator_init@GCC_4.8.0, __cpu_model@GCC_4.8.0): Remove.
-
-	* config/i386/t-linux (HOST_LIBGCC2_CFLAGS): Remove -DUSE_ELF_SYMVER.
-
-gcc/Changelog:
-
-2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
-
-	* config/i386/i386.c (ix86_expand_builtin): Make __builtin_cpu_init
-	call __cpu_indicator_init_local instead of __cpu_indicator_init.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Pending
-
- gcc/config/i386/i386.c       | 4 ++--
- libgcc/config/i386/cpuinfo.c | 6 +++---
- libgcc/config/i386/t-linux   | 2 +-
- 3 files changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
-index 6a2141e48db..455fccbdd50 100644
---- a/gcc/config/i386/i386.c
-+++ b/gcc/config/i386/i386.c
-@@ -36490,10 +36490,10 @@ ix86_expand_builtin (tree exp, rtx target, rtx subtarget,
-     {
-     case IX86_BUILTIN_CPU_INIT:
-       {
--	/* Make it call __cpu_indicator_init in libgcc. */
-+	/* Make it call __cpu_indicator_init_local in libgcc.a. */
- 	tree call_expr, fndecl, type;
-         type = build_function_type_list (integer_type_node, NULL_TREE); 
--	fndecl = build_fn_decl ("__cpu_indicator_init", type);
-+	fndecl = build_fn_decl ("__cpu_indicator_init_local", type);
- 	call_expr = build_call_expr (fndecl, 0); 
- 	return expand_expr (call_expr, target, mode, EXPAND_NORMAL);
-       }
-diff --git a/libgcc/config/i386/cpuinfo.c b/libgcc/config/i386/cpuinfo.c
-index 86953db2743..e0476272810 100644
---- a/libgcc/config/i386/cpuinfo.c
-+++ b/libgcc/config/i386/cpuinfo.c
-@@ -482,7 +482,7 @@ __cpu_indicator_init (void)
-   return 0;
- }
- 
--#if defined SHARED && defined USE_ELF_SYMVER
--__asm__ (".symver __cpu_indicator_init, __cpu_indicator_init@GCC_4.8.0");
--__asm__ (".symver __cpu_model, __cpu_model@GCC_4.8.0");
-+#ifndef SHARED
-+int __cpu_indicator_init_local (void)
-+  __attribute__ ((weak, alias ("__cpu_indicator_init")));
- #endif
-diff --git a/libgcc/config/i386/t-linux b/libgcc/config/i386/t-linux
-index 8506a635790..564296f788e 100644
---- a/libgcc/config/i386/t-linux
-+++ b/libgcc/config/i386/t-linux
-@@ -3,5 +3,5 @@
- # t-slibgcc-elf-ver and t-linux
- SHLIB_MAPFILES = libgcc-std.ver $(srcdir)/config/i386/libgcc-glibc.ver
- 
--HOST_LIBGCC2_CFLAGS += -mlong-double-80 -DUSE_ELF_SYMVER $(CET_FLAGS)
-+HOST_LIBGCC2_CFLAGS += -mlong-double-80 $(CET_FLAGS)
- CRTSTUFF_T_CFLAGS += $(CET_FLAGS)
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0037-sync-gcc-stddef.h-with-musl.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0037-sync-gcc-stddef.h-with-musl.patch
deleted file mode 100644
index f8a7f41..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0037-sync-gcc-stddef.h-with-musl.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-From 602abaab15ffb60bf1797187a71b485042c56360 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 3 Feb 2017 12:56:00 -0800
-Subject: [PATCH 37/39] sync gcc stddef.h with musl
-
-musl defines ptrdiff_t size_t and wchar_t
-so dont define them here if musl is definining them
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
-Upstream-Status: Pending
-
- gcc/ginclude/stddef.h | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/gcc/ginclude/stddef.h b/gcc/ginclude/stddef.h
-index 31b96a7e5e1..438a3ce7c56 100644
---- a/gcc/ginclude/stddef.h
-+++ b/gcc/ginclude/stddef.h
-@@ -134,6 +134,7 @@ _TYPE_wchar_t;
- #ifndef ___int_ptrdiff_t_h
- #ifndef _GCC_PTRDIFF_T
- #ifndef _PTRDIFF_T_DECLARED /* DragonFly */
-+#ifndef __DEFINED_ptrdiff_t /* musl */
- #define _PTRDIFF_T
- #define _T_PTRDIFF_
- #define _T_PTRDIFF
-@@ -143,10 +144,12 @@ _TYPE_wchar_t;
- #define ___int_ptrdiff_t_h
- #define _GCC_PTRDIFF_T
- #define _PTRDIFF_T_DECLARED
-+#define __DEFINED_ptrdiff_t /* musl */
- #ifndef __PTRDIFF_TYPE__
- #define __PTRDIFF_TYPE__ long int
- #endif
- typedef __PTRDIFF_TYPE__ ptrdiff_t;
-+#endif /* __DEFINED_ptrdiff_t */
- #endif /* _PTRDIFF_T_DECLARED */
- #endif /* _GCC_PTRDIFF_T */
- #endif /* ___int_ptrdiff_t_h */
-@@ -184,6 +187,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
- #ifndef _GCC_SIZE_T
- #ifndef _SIZET_
- #ifndef __size_t
-+#ifndef __DEFINED_size_t /* musl */
- #define __size_t__	/* BeOS */
- #define __SIZE_T__	/* Cray Unicos/Mk */
- #define _SIZE_T
-@@ -200,6 +204,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
- #define ___int_size_t_h
- #define _GCC_SIZE_T
- #define _SIZET_
-+#define __DEFINED_size_t /* musl */
- #if (defined (__FreeBSD__) && (__FreeBSD__ >= 5)) \
-   || defined(__DragonFly__) \
-   || defined(__FreeBSD_kernel__)
-@@ -235,6 +240,7 @@ typedef long ssize_t;
- #endif /* _SIZE_T */
- #endif /* __SIZE_T__ */
- #endif /* __size_t__ */
-+#endif /* __DEFINED_size_t */
- #undef	__need_size_t
- #endif /* _STDDEF_H or __need_size_t.  */
- 
-@@ -264,6 +270,7 @@ typedef long ssize_t;
- #ifndef ___int_wchar_t_h
- #ifndef __INT_WCHAR_T_H
- #ifndef _GCC_WCHAR_T
-+#ifndef __DEFINED_wchar_t /* musl */
- #define __wchar_t__	/* BeOS */
- #define __WCHAR_T__	/* Cray Unicos/Mk */
- #define _WCHAR_T
-@@ -279,6 +286,7 @@ typedef long ssize_t;
- #define __INT_WCHAR_T_H
- #define _GCC_WCHAR_T
- #define _WCHAR_T_DECLARED
-+#define __DEFINED_wchar_t /* musl */
- 
- /* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
-    instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other
-@@ -344,6 +352,7 @@ typedef __WCHAR_TYPE__ wchar_t;
- #endif
- #endif /* __WCHAR_T__ */
- #endif /* __wchar_t__ */
-+#endif /* __DEFINED_wchar_t musl */
- #undef	__need_wchar_t
- #endif /* _STDDEF_H or __need_wchar_t.  */
- 
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0038-fix-segmentation-fault-in-precompiled-header-generat.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0038-fix-segmentation-fault-in-precompiled-header-generat.patch
deleted file mode 100644
index 224d2ae..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0038-fix-segmentation-fault-in-precompiled-header-generat.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-From 00694849632dee23741925c6104df134f6bff747 Mon Sep 17 00:00:00 2001
-From: Juro Bystricky <juro.bystricky@intel.com>
-Date: Mon, 19 Mar 2018 22:31:20 -0700
-Subject: [PATCH 38/39] fix segmentation fault in precompiled header generation
-
-Prevent a segmentation fault which occurs when using incorrect
-structure trying to access name of some named operators, such as
-CPP_NOT, CPP_AND etc. "token->val.node.spelling" cannot be used in
-those cases, as is may not be initialized at all.
-
-[YOCTO #11738]
-
-Upstream-Status: Pending
-
-Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- libcpp/lex.c | 26 +++++++++++++++++++++-----
- 1 file changed, 21 insertions(+), 5 deletions(-)
-
-diff --git a/libcpp/lex.c b/libcpp/lex.c
-index 37c365a3560..63480048db6 100644
---- a/libcpp/lex.c
-+++ b/libcpp/lex.c
-@@ -3279,11 +3279,27 @@ cpp_spell_token (cpp_reader *pfile, const cpp_token *token,
-     spell_ident:
-     case SPELL_IDENT:
-       if (forstring)
--	{
--	  memcpy (buffer, NODE_NAME (token->val.node.spelling),
--		  NODE_LEN (token->val.node.spelling));
--	  buffer += NODE_LEN (token->val.node.spelling);
--	}
-+        {
-+          if (token->type == CPP_NAME)
-+            {
-+              memcpy (buffer, NODE_NAME (token->val.node.spelling),
-+                    NODE_LEN (token->val.node.spelling));
-+              buffer += NODE_LEN (token->val.node.spelling);
-+              break;
-+            }
-+          /* NAMED_OP, cannot use node.spelling */
-+          if (token->flags & NAMED_OP)
-+            {
-+              const char *str = cpp_named_operator2name (token->type);
-+              if (str)
-+                {
-+                  size_t len = strlen(str);
-+                  memcpy(buffer, str, len);
-+                  buffer += len;
-+                }
-+              break;
-+            }
-+        }
-       else
- 	buffer = _cpp_spell_ident_ucns (buffer, token->val.node.node);
-       break;
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0039-Fix-for-testsuite-failure.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0039-Fix-for-testsuite-failure.patch
deleted file mode 100644
index f351630..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0039-Fix-for-testsuite-failure.patch
+++ /dev/null
@@ -1,258 +0,0 @@
-From d151a62c252749643c850a08d1335321e5b75d42 Mon Sep 17 00:00:00 2001
-From: RAGHUNATH LOLUR <raghunath.lolur@kpit.com>
-Date: Wed, 6 Dec 2017 22:52:26 -0800
-Subject: [PATCH 39/39] Fix for testsuite failure
-
-2017-11-16  Raghunath Lolur  <raghunath.lolur@kpit.com>
-
-	* gcc.dg/pr56275.c: If SSE is disabled, ensure that
-	"-mfpmath" is not set to use SSE. Set "-mfpmath=387".
-	* gcc.dg/pr68306.c: Likewise
-	* gcc.dg/pr68306-2.c: Likewise
-	* gcc.dg/pr68306-3.c: Likewise
-	* gcc.dg/pr69634.c: Likewise
-	* gcc.target/i386/amd64-abi-1.c: Likewise
-	* gcc.target/i386/funcspec-6.c: Likewise
-	* gcc.target/i386/interrupt-387-err-1.c: Likewise
-	* gcc.target/i386/isa-14.c: Likewise
-	* gcc.target/i386/pr44948-2b.c: Likewise
-	* gcc.target/i386/pr53425-1.c: Likewise
-	* gcc.target/i386/pr53425-2.c: Likewise
-	* gcc.target/i386/pr55247.c: Likewise
-	* gcc.target/i386/pr59644.c: Likewise
-	* gcc.target/i386/pr62120.c: Likewise
-	* gcc.target/i386/pr70467-1.c: Likewise
-	* gcc.target/i386/warn-vect-op-1.c: Likewise
-
-If -Wall, -Werror are used during compilation various test cases fail
-to compile.
-
-If SSE is disabled, be sure to -mfpmath=387 to resolve this.
-
-This patch removes the changes to Changelog from the original patch.
-This will help us avoid conflicts.
-
-Upstream-Status: Pending
-
-Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
----
- gcc/testsuite/gcc.dg/pr56275.c                      | 2 +-
- gcc/testsuite/gcc.dg/pr68306-2.c                    | 2 +-
- gcc/testsuite/gcc.dg/pr68306-3.c                    | 2 +-
- gcc/testsuite/gcc.dg/pr68306.c                      | 2 +-
- gcc/testsuite/gcc.dg/pr69634.c                      | 2 +-
- gcc/testsuite/gcc.target/i386/amd64-abi-1.c         | 2 +-
- gcc/testsuite/gcc.target/i386/funcspec-6.c          | 1 +
- gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | 2 +-
- gcc/testsuite/gcc.target/i386/isa-14.c              | 2 +-
- gcc/testsuite/gcc.target/i386/pr44948-2b.c          | 2 +-
- gcc/testsuite/gcc.target/i386/pr53425-1.c           | 2 +-
- gcc/testsuite/gcc.target/i386/pr53425-2.c           | 2 +-
- gcc/testsuite/gcc.target/i386/pr55247.c             | 2 +-
- gcc/testsuite/gcc.target/i386/pr59644.c             | 2 +-
- gcc/testsuite/gcc.target/i386/pr62120.c             | 2 +-
- gcc/testsuite/gcc.target/i386/pr70467-1.c           | 2 +-
- gcc/testsuite/gcc.target/i386/warn-vect-op-1.c      | 2 +-
- 17 files changed, 17 insertions(+), 16 deletions(-)
-
-diff --git a/gcc/testsuite/gcc.dg/pr56275.c b/gcc/testsuite/gcc.dg/pr56275.c
-index b901bb2b199..a4f6c95e1a1 100644
---- a/gcc/testsuite/gcc.dg/pr56275.c
-+++ b/gcc/testsuite/gcc.dg/pr56275.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O2" } */
--/* { dg-additional-options "-mno-sse" { target { i?86-*-* x86_64-*-* } } } */
-+/* { dg-additional-options "-mno-sse -mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */
- 
- typedef long long v2tw __attribute__ ((vector_size (2 * sizeof (long long))));
- 
-diff --git a/gcc/testsuite/gcc.dg/pr68306-2.c b/gcc/testsuite/gcc.dg/pr68306-2.c
-index 4672ebe7987..2a368c484b6 100644
---- a/gcc/testsuite/gcc.dg/pr68306-2.c
-+++ b/gcc/testsuite/gcc.dg/pr68306-2.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O3" } */
--/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
-+/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
- 
- struct {
-     int tz_minuteswest;
-diff --git a/gcc/testsuite/gcc.dg/pr68306-3.c b/gcc/testsuite/gcc.dg/pr68306-3.c
-index f5a8c102cf8..df3390c64c2 100644
---- a/gcc/testsuite/gcc.dg/pr68306-3.c
-+++ b/gcc/testsuite/gcc.dg/pr68306-3.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O3" } */
--/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
-+/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
- /* { dg-additional-options "-mno-altivec -mno-vsx" { target powerpc*-*-* } } */
- 
- extern void fn2();
-diff --git a/gcc/testsuite/gcc.dg/pr68306.c b/gcc/testsuite/gcc.dg/pr68306.c
-index 54e5b40f221..0813389e2c1 100644
---- a/gcc/testsuite/gcc.dg/pr68306.c
-+++ b/gcc/testsuite/gcc.dg/pr68306.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O3" } */
--/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
-+/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
- 
- enum powerpc_pmc_type { PPC_PMC_IBM };
- struct {
-diff --git a/gcc/testsuite/gcc.dg/pr69634.c b/gcc/testsuite/gcc.dg/pr69634.c
-index 60a56149463..bcc23f9ccd6 100644
---- a/gcc/testsuite/gcc.dg/pr69634.c
-+++ b/gcc/testsuite/gcc.dg/pr69634.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O2 -fno-dce -fschedule-insns -fno-tree-vrp -fcompare-debug -Wno-psabi" } */
--/* { dg-additional-options "-mno-sse" { target i?86-*-* x86_64-*-* } } */
-+/* { dg-additional-options "-mno-sse -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
- /* { dg-require-effective-target scheduling } */
- 
- typedef unsigned short u16;
-diff --git a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
-index 69fde57bf06..7f1f1c03edf 100644
---- a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
-+++ b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile { target { ! ia32 } } } */
--/* { dg-options "-mno-sse" } */
-+/* { dg-options "-mno-sse -mfpmath=387" } */
- /* { dg-additional-options "-mabi=sysv" { target *-*-mingw* } } */
- 
- double foo(void) { return 0; }	/* { dg-error "SSE disabled" } */
-diff --git a/gcc/testsuite/gcc.target/i386/funcspec-6.c b/gcc/testsuite/gcc.target/i386/funcspec-6.c
-index ea896b7ebfd..bf15569b826 100644
---- a/gcc/testsuite/gcc.target/i386/funcspec-6.c
-+++ b/gcc/testsuite/gcc.target/i386/funcspec-6.c
-@@ -1,6 +1,7 @@
- /* Test whether all of the 64-bit function specific options are accepted
-    without error.  */
- /* { dg-do compile { target { ! ia32 } } } */
-+/* { dg-additional-options "-mfpmath=387" } */
- 
- #include "funcspec-56.inc"
- 
-diff --git a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
-index 3fbdc881dda..6b4d9d1252a 100644
---- a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
-+++ b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile } */
--/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387" } */
-+/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387 -mfpmath=387" } */
- 
- typedef unsigned int uword_t __attribute__ ((mode (__word__)));
- 
-diff --git a/gcc/testsuite/gcc.target/i386/isa-14.c b/gcc/testsuite/gcc.target/i386/isa-14.c
-index 5d49e6e77fe..1de2db92bdd 100644
---- a/gcc/testsuite/gcc.target/i386/isa-14.c
-+++ b/gcc/testsuite/gcc.target/i386/isa-14.c
-@@ -1,5 +1,5 @@
- /* { dg-do run } */
--/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse" } */
-+/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse -mfpmath=387" } */
- 
- extern void abort (void);
- 
-diff --git a/gcc/testsuite/gcc.target/i386/pr44948-2b.c b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
-index fa1769b62fb..f79fb12726f 100644
---- a/gcc/testsuite/gcc.target/i386/pr44948-2b.c
-+++ b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile } */
--/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic" } */
-+/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic -mfpmath=387" } */
- 
- struct A
- { 
-diff --git a/gcc/testsuite/gcc.target/i386/pr53425-1.c b/gcc/testsuite/gcc.target/i386/pr53425-1.c
-index 2e89ff7d81d..6339bf6b736 100644
---- a/gcc/testsuite/gcc.target/i386/pr53425-1.c
-+++ b/gcc/testsuite/gcc.target/i386/pr53425-1.c
-@@ -1,6 +1,6 @@
- /* PR target/53425 */
- /* { dg-do compile { target { ! ia32 } } } */
--/* { dg-options "-O2 -mno-sse" } */
-+/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
- /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
- 
- typedef double __v2df __attribute__ ((__vector_size__ (16)));
-diff --git a/gcc/testsuite/gcc.target/i386/pr53425-2.c b/gcc/testsuite/gcc.target/i386/pr53425-2.c
-index 61f6283dbe9..2c5a55f0ac3 100644
---- a/gcc/testsuite/gcc.target/i386/pr53425-2.c
-+++ b/gcc/testsuite/gcc.target/i386/pr53425-2.c
-@@ -1,6 +1,6 @@
- /* PR target/53425 */
- /* { dg-do compile { target { ! ia32 } } } */
--/* { dg-options "-O2 -mno-sse" } */
-+/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
- /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
- 
- typedef float __v2sf __attribute__ ((__vector_size__ (8)));
-diff --git a/gcc/testsuite/gcc.target/i386/pr55247.c b/gcc/testsuite/gcc.target/i386/pr55247.c
-index 23366d0909d..9810e3abb76 100644
---- a/gcc/testsuite/gcc.target/i386/pr55247.c
-+++ b/gcc/testsuite/gcc.target/i386/pr55247.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile { target { ! ia32 } } } */
- /* { dg-require-effective-target maybe_x32 } */
--/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long" } */
-+/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long -mfpmath=387" } */
- 
- typedef unsigned int uint32_t;
- typedef uint32_t Elf32_Word;
-diff --git a/gcc/testsuite/gcc.target/i386/pr59644.c b/gcc/testsuite/gcc.target/i386/pr59644.c
-index 96006b3e338..4287e4538bf 100644
---- a/gcc/testsuite/gcc.target/i386/pr59644.c
-+++ b/gcc/testsuite/gcc.target/i386/pr59644.c
-@@ -1,6 +1,6 @@
- /* PR target/59644 */
- /* { dg-do run { target lp64 } } */
--/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone" } */
-+/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone -mfpmath=387" } */
- 
- /* This test uses __builtin_trap () instead of e.g. abort,
-    because due to -mpreferred-stack-boundary=3 it should not call
-diff --git a/gcc/testsuite/gcc.target/i386/pr62120.c b/gcc/testsuite/gcc.target/i386/pr62120.c
-index bfb8c4703eb..ed04cf181f3 100644
---- a/gcc/testsuite/gcc.target/i386/pr62120.c
-+++ b/gcc/testsuite/gcc.target/i386/pr62120.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile } */
--/* { dg-options "-mno-sse" } */
-+/* { dg-options "-mno-sse -mfpmath=387" } */
- 
- void foo ()
- {
-diff --git a/gcc/testsuite/gcc.target/i386/pr70467-1.c b/gcc/testsuite/gcc.target/i386/pr70467-1.c
-index 4e112c88d07..bcfb396a68d 100644
---- a/gcc/testsuite/gcc.target/i386/pr70467-1.c
-+++ b/gcc/testsuite/gcc.target/i386/pr70467-1.c
-@@ -1,6 +1,6 @@
- /* PR rtl-optimization/70467 */
- /* { dg-do compile } */
--/* { dg-options "-O2 -mno-sse" } */
-+/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
- 
- void foo (unsigned long long *);
- 
-diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
-index 6cda1534311..26e37f5b8ba 100644
---- a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
-+++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile { target { ! ia32 } } }  */
--/* { dg-options "-mno-sse -Wvector-operation-performance" }  */
-+/* { dg-options "-mno-sse -Wvector-operation-performance -mfpmath=387" }  */
- #define vector(elcount, type)  \
- __attribute__((vector_size((elcount)*sizeof(type)))) type
- 
--- 
-2.17.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0040-Re-introduce-spe-commandline-options.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0040-Re-introduce-spe-commandline-options.patch
deleted file mode 100644
index 8afa010..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0040-Re-introduce-spe-commandline-options.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 8fb8f773e117ee70be00bb0da5f343fe110da5c4 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Wed, 6 Jun 2018 12:10:22 -0700
-Subject: [PATCH 40/40] Re-introduce spe commandline options
-
-This should ensure that we keep accepting
-spe options
-
-Upstream-Status: Inappropriate [SPE port is removed from rs600 port]
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/rs6000/rs6000.opt | 12 ++++++++++++
- 1 file changed, 12 insertions(+)
-
-diff --git a/gcc/config/rs6000/rs6000.opt b/gcc/config/rs6000/rs6000.opt
-index ace8a477550..d6a8f825d88 100644
---- a/gcc/config/rs6000/rs6000.opt
-+++ b/gcc/config/rs6000/rs6000.opt
-@@ -365,6 +365,18 @@ mdebug=
- Target RejectNegative Joined
- -mdebug=	Enable debug output.
- 
-+mspe
-+Target Var(rs6000_spe) Save
-+Generate SPE SIMD instructions on E500.
-+
-+mabi=spe
-+Target RejectNegative Var(rs6000_spe_abi) Save
-+Use the SPE ABI extensions.
-+
-+mabi=no-spe
-+Target RejectNegative Var(rs6000_spe_abi, 0)
-+Do not use the SPE ABI extensions.
-+
- mabi=altivec
- Target RejectNegative Var(rs6000_altivec_abi) Save
- Use the AltiVec ABI extensions.
--- 
-2.17.1
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0041-ARC-fix-spec-gen.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0041-ARC-fix-spec-gen.patch
deleted file mode 100644
index cbd5e41..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0041-ARC-fix-spec-gen.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 892142379c6b99fe8c3ebdfe0b79e2a435228c1d Mon Sep 17 00:00:00 2001
-From: claziss <claziss@138bc75d-0d04-0410-961f-82ee72b054a4>
-Date: Mon, 17 Sep 2018 08:52:10 +0000
-Subject: [PATCH] [ARC] Update LINK_EH_SPEC linker spec.
-
-With no trailing space in LINK_EH_SPEC linker spec gets generated as:
------------------------->8---------------------
-%{!r:--build-id} --eh-frame-hdr%{h*} ...
------------------------->8---------------------
-
-or even worse if hash style is added:
------------------------->8---------------------
-%{!r:--build-id} --eh-frame-hdr--hash-style=sysv %{h*} ...
------------------------->8---------------------
-
-Now if that spec is really used by LD then it fails inevitably
-saying that it doesn't know option "--eh-frame-hdr--hash-style=sysv".
-
-2018-09-17  Alexey Brodkin  <abrodkin@synopsys.com>
-
-	* config/arc/linux.h (LINK_EH_SPEC): Add missing space.
-
-git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@264361 138bc75d-0d04-0410-961f-82ee72b054a4
-
-Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
-
-Upstream-Status: Backport[https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=892142379c6b]
----
- gcc/config/arc/linux.h | 2 +-
- 1 files changed, 1 insertions(+), 1 deletion(-)
-
-diff --git a/gcc/config/arc/linux.h b/gcc/config/arc/linux.h
-index 96d548eae341..62ebe4de0fc7 100644
---- a/gcc/config/arc/linux.h
-+++ b/gcc/config/arc/linux.h
-@@ -98,7 +98,7 @@ along with GCC; see the file COPYING3.  If not see
-    Signalize that because we have fde-glibc, we don't need all C shared libs
-    linked against -lgcc_s.  */
- #undef LINK_EH_SPEC
--#define LINK_EH_SPEC "--eh-frame-hdr"
-+#define LINK_EH_SPEC "--eh-frame-hdr "
- #endif
- 
- #undef SUBTARGET_CPP_SPEC
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0042-powerpc-powerpc64-Add-support-for-musl-ldso.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0042-powerpc-powerpc64-Add-support-for-musl-ldso.patch
deleted file mode 100644
index b0c735b..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0042-powerpc-powerpc64-Add-support-for-musl-ldso.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 3f5f5da776be86b408a15f38c9782f2185f97073 Mon Sep 17 00:00:00 2001
-From: Serhey Popovych <serhe.popovych@gmail.com>
-Date: Tue, 11 Dec 2018 02:30:50 -0500
-Subject: [PATCH] powerpc/powerpc64: Add support for musl ldso
-
-Signed-off-by: Serhey Popovych <serhe.popovych@gmail.com>
----
-Upstream-Status: Inappropriate [OE-Specific]
-
- gcc/config/rs6000/linux64.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
-index 619e113..ee8b44f 100644
---- a/gcc/config/rs6000/linux64.h
-+++ b/gcc/config/rs6000/linux64.h
-@@ -421,9 +421,9 @@ extern int dot_symbols;
- #endif
- 
- #define MUSL_DYNAMIC_LINKER32 \
--  "/lib/ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
-+  SYSTEMLIBS_DIR "ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
- #define MUSL_DYNAMIC_LINKER64 \
--  "/lib/ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
-+  SYSTEMLIBS_DIR "ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
- 
- #define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
- #define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
--- 
-2.7.4
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0043-riscv-Disable-multilib-for-OE.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0043-riscv-Disable-multilib-for-OE.patch
deleted file mode 100644
index dc28d1b..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.2/0043-riscv-Disable-multilib-for-OE.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From ca0a6e035eef0cdbd0ef3a222c75d4b9f873c512 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 28 Dec 2018 09:59:53 -0800
-Subject: [PATCH 39/39] riscv: Disable multilib for OE
-
-Upstream-Status: Inappropriate [OE-Specific]
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/riscv/t-linux | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/gcc/config/riscv/t-linux b/gcc/config/riscv/t-linux
-index 216d2776a18..e4d817621fc 100644
---- a/gcc/config/riscv/t-linux
-+++ b/gcc/config/riscv/t-linux
-@@ -1,3 +1,5 @@
- # Only XLEN and ABI affect Linux multilib dir names, e.g. /lib32/ilp32d/
--MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
--MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
-+#MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
-+MULTILIB_DIRNAMES := . .
-+#MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
-+MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
--- 
-2.20.1
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3.inc b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3.inc
deleted file mode 100644
index 3fb87bb..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3.inc
+++ /dev/null
@@ -1,114 +0,0 @@
-require recipes-devtools/gcc/gcc-common.inc
-
-BASEPV = "8.3"
-PV = "arm-${BASEPV}"
-CVE_VERSION = "${BASEPV}"
-
-MMYY = "19.03"
-RELEASE = "20${MMYY}"
-PR = "r${RELEASE}"
-BINV = "${BASEPV}.0"
-
-FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc-${BASEPV}:${FILE_DIRNAME}/gcc-${BASEPV}/backport:"
-
-DEPENDS =+ "mpfr gmp libmpc zlib flex-native"
-NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native flex-native"
-
-LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
-
-LIC_FILES_CHKSUM = "\
-    file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
-    file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
-    file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
-    file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
-    file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \
-"
-
-#BASEURI ?= "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2"
-SRCREV = "47335befa47297ab810945cece69c466417a95c1"
-BASEURI ?= "git://git.linaro.org/toolchain/gcc.git;protocol=https;branch=linaro-local/ARM/arm-8-branch"
-
-SRC_URI = "\
-           ${BASEURI} \
-           file://0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \
-           file://0002-gcc-poison-system-directories.patch \
-           file://0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch \
-           file://0004-64-bit-multilib-hack.patch \
-           file://0005-optional-libstdc.patch \
-           file://0006-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch \
-           file://0007-COLLECT_GCC_OPTIONS.patch \
-           file://0008-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \
-           file://0009-fortran-cross-compile-hack.patch \
-           file://0010-cpp-honor-sysroot.patch \
-           file://0011-MIPS64-Default-to-N64-ABI.patch \
-           file://0012-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \
-           file://0013-gcc-Fix-argument-list-too-long-error.patch \
-           file://0014-Disable-sdt.patch \
-           file://0015-libtool.patch \
-           file://0016-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch \
-           file://0017-Use-the-multilib-config-files-from-B-instead-of-usin.patch \
-           file://0018-Avoid-using-libdir-from-.la-which-usually-points-to-.patch \
-           file://0019-export-CPP.patch \
-           file://0020-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch \
-           file://0021-Ensure-target-gcc-headers-can-be-included.patch \
-           file://0022-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch \
-           file://0023-Don-t-search-host-directory-during-relink-if-inst_pr.patch \
-           file://0024-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch \
-           file://0025-aarch64-Add-support-for-musl-ldso.patch \
-           file://0026-libcc1-fix-libcc1-s-install-path-and-rpath.patch \
-           file://0027-handle-sysroot-support-for-nativesdk-gcc.patch \
-           file://0028-Search-target-sysroot-gcc-version-specific-dirs-with.patch \
-           file://0029-Fix-various-_FOR_BUILD-and-related-variables.patch \
-           file://0030-nios2-Define-MUSL_DYNAMIC_LINKER.patch \
-           file://0031-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch \
-           file://0032-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch \
-           file://0033-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \
-           file://0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \
-           file://0035-sync-gcc-stddef.h-with-musl.patch \
-           file://0036-fix-segmentation-fault-in-precompiled-header-generat.patch \
-           file://0037-Fix-for-testsuite-failure.patch \
-           file://0038-Re-introduce-spe-commandline-options.patch \
-           file://0039-riscv-Disable-multilib-for-OE.patch \
-           file://0040-powerpc-powerpc64-Add-support-for-musl-ldso.patch \
-           ${BACKPORTS} \
-"
-BACKPORTS = "\
-"
-
-S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/git"
-#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${PV}"
-#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/git"
-#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${RELEASE}"
-B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
-
-# Language Overrides
-FORTRAN = ""
-JAVA = ""
-
-LTO = "--enable-lto"
-SSP ?= "--disable-libssp"
-SSP_mingw32 = "--enable-libssp"
-
-EXTRA_OECONF_BASE = "\
-    ${LTO} \
-    ${SSP} \
-    --enable-libitm \
-    --disable-bootstrap \
-    --disable-libmudflap \
-    --with-system-zlib \
-    ${@'--with-linker-hash-style=${LINKER_HASH_STYLE}' if '${LINKER_HASH_STYLE}' else ''} \
-    --enable-linker-build-id \
-    --with-ppl=no \
-    --with-cloog=no \
-    --enable-checking=release \
-    --enable-cheaders=c_global \
-    --without-isl \
-"
-
-EXTRA_OECONF_append_aarchilp32 = " --with-abi=ilp32"
-
-EXTRA_OECONF_PATHS = "\
-    --with-gxx-include-dir=/not/exist{target_includedir}/c++/${BINV} \
-    --with-sysroot=/not/exist \
-    --with-build-sysroot=${STAGING_DIR_TARGET} \
-"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
deleted file mode 100644
index 4ad79e4..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From d7b284a9bede9d5059ad7e95a867254bf913c638 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 08:37:11 +0400
-Subject: [PATCH 01/40] gcc-4.3.1: ARCH_FLAGS_FOR_TARGET
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [embedded specific]
----
- configure    | 2 +-
- configure.ac | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/configure b/configure
-index 0601395512f..8c5b1e9d561 100755
---- a/configure
-+++ b/configure
-@@ -7507,7 +7507,7 @@ fi
- # for target_alias and gcc doesn't manage it consistently.
- target_configargs="--cache-file=./config.cache ${target_configargs}"
- 
--FLAGS_FOR_TARGET=
-+FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
- case " $target_configdirs " in
-  *" newlib "*)
-   case " $target_configargs " in
-diff --git a/configure.ac b/configure.ac
-index c3433336523..69c31c65ad7 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -3096,7 +3096,7 @@ fi
- # for target_alias and gcc doesn't manage it consistently.
- target_configargs="--cache-file=./config.cache ${target_configargs}"
- 
--FLAGS_FOR_TARGET=
-+FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
- case " $target_configdirs " in
-  *" newlib "*)
-   case " $target_configargs " in
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0002-gcc-poison-system-directories.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0002-gcc-poison-system-directories.patch
deleted file mode 100644
index e7ff124..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0002-gcc-poison-system-directories.patch
+++ /dev/null
@@ -1,203 +0,0 @@
-From 95ec476dd7726cc9c1bfd6fb23ba3aea8bbf61a4 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 08:59:00 +0400
-Subject: [PATCH 02/40] gcc: poison-system-directories
-
-Add /sw/include and /opt/include based on the original
-zecke-no-host-includes.patch patch.  The original patch checked for
-/usr/include, /sw/include and /opt/include and then triggered a failure and
-aborted.
-
-Instead, we add the two missing items to the current scan.  If the user
-wants this to be a failure, they can add "-Werror=poison-system-directories".
-
-Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/common.opt      |  4 ++++
- gcc/config.in       |  6 ++++++
- gcc/configure       | 16 ++++++++++++++++
- gcc/configure.ac    | 10 ++++++++++
- gcc/doc/invoke.texi |  9 +++++++++
- gcc/gcc.c           |  2 ++
- gcc/incpath.c       | 21 +++++++++++++++++++++
- 7 files changed, 68 insertions(+)
-
-diff --git a/gcc/common.opt b/gcc/common.opt
-index b52ef0b38c8..0de3f0924cd 100644
---- a/gcc/common.opt
-+++ b/gcc/common.opt
-@@ -679,6 +679,10 @@ Wreturn-local-addr
- Common Var(warn_return_local_addr) Init(1) Warning
- Warn about returning a pointer/reference to a local or temporary variable.
- 
-+Wpoison-system-directories
-+Common Var(flag_poison_system_directories) Init(1) Warning
-+Warn for -I and -L options using system directories if cross compiling
-+
- Wshadow
- Common Var(warn_shadow) Warning
- Warn when one variable shadows another.  Same as -Wshadow=global.
-diff --git a/gcc/config.in b/gcc/config.in
-index 5bccb408016..1c784a8276b 100644
---- a/gcc/config.in
-+++ b/gcc/config.in
-@@ -194,6 +194,12 @@
- #endif
- 
- 
-+/* Define to warn for use of native system header directories */
-+#ifndef USED_FOR_TARGET
-+#undef ENABLE_POISON_SYSTEM_DIRECTORIES
-+#endif
-+
-+
- /* Define if you want all operations on RTL (the basic data structure of the
-    optimizer and back end) to be checked for dynamic type safety at runtime.
-    This is quite expensive. */
-diff --git a/gcc/configure b/gcc/configure
-index 6121e163259..3901722400c 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -953,6 +953,7 @@ with_system_zlib
- enable_maintainer_mode
- enable_link_mutex
- enable_version_specific_runtime_libs
-+enable_poison_system_directories
- enable_plugin
- enable_host_shared
- enable_libquadmath_support
-@@ -1696,6 +1697,8 @@ Optional Features:
-   --enable-version-specific-runtime-libs
-                           specify that runtime libraries should be installed
-                           in a compiler-specific directory
-+  --enable-poison-system-directories
-+                          warn for use of native system header directories
-   --enable-plugin         enable plugin support
-   --enable-host-shared    build host code as shared libraries
-   --disable-libquadmath-support
-@@ -29701,6 +29704,19 @@ if test "${enable_version_specific_runtime_libs+set}" = set; then :
- fi
- 
- 
-+# Check whether --enable-poison-system-directories was given.
-+if test "${enable_poison_system_directories+set}" = set; then :
-+  enableval=$enable_poison_system_directories;
-+else
-+  enable_poison_system_directories=no
-+fi
-+
-+if test "x${enable_poison_system_directories}" = "xyes"; then
-+
-+$as_echo "#define ENABLE_POISON_SYSTEM_DIRECTORIES 1" >>confdefs.h
-+
-+fi
-+
- # Substitute configuration variables
- 
- 
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index b066cc609e1..1b1362f70fe 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -6327,6 +6327,16 @@ AC_ARG_ENABLE(version-specific-runtime-libs,
-                 [specify that runtime libraries should be
-                  installed in a compiler-specific directory])])
- 
-+AC_ARG_ENABLE([poison-system-directories],
-+             AS_HELP_STRING([--enable-poison-system-directories],
-+                            [warn for use of native system header directories]),,
-+             [enable_poison_system_directories=no])
-+if test "x${enable_poison_system_directories}" = "xyes"; then
-+  AC_DEFINE([ENABLE_POISON_SYSTEM_DIRECTORIES],
-+           [1],
-+           [Define to warn for use of native system header directories])
-+fi
-+
- # Substitute configuration variables
- AC_SUBST(subdirs)
- AC_SUBST(srcdir)
-diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
-index e5c4e8125aa..fb228631a42 100644
---- a/gcc/doc/invoke.texi
-+++ b/gcc/doc/invoke.texi
-@@ -304,6 +304,7 @@ Objective-C and Objective-C++ Dialects}.
- -Wpacked  -Wpacked-bitfield-compat -Wpacked-not-aligned -Wpadded @gol
- -Wparentheses  -Wno-pedantic-ms-format @gol
- -Wplacement-new  -Wplacement-new=@var{n} @gol
-+-Wno-poison-system-directories @gol
- -Wpointer-arith  -Wpointer-compare  -Wno-pointer-to-int-cast @gol
- -Wno-pragmas  -Wredundant-decls  -Wrestrict  -Wno-return-local-addr @gol
- -Wreturn-type  -Wsequence-point  -Wshadow  -Wno-shadow-ivar @gol
-@@ -5743,6 +5744,14 @@ made up of data only and thus requires no special treatment.  But, for
- most targets, it is made up of code and thus requires the stack to be
- made executable in order for the program to work properly.
- 
-+@item -Wno-poison-system-directories
-+@opindex Wno-poison-system-directories
-+Do not warn for @option{-I} or @option{-L} options using system
-+directories such as @file{/usr/include} when cross compiling.  This
-+option is intended for use in chroot environments when such
-+directories contain the correct headers and libraries for the target
-+system rather than the host.
-+
- @item -Wfloat-equal
- @opindex Wfloat-equal
- @opindex Wno-float-equal
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index a716f708259..02b3cd39fc2 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -1037,6 +1037,8 @@ proper position among the other output files.  */
-    "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
-    "%X %{o*} %{e*} %{N} %{n} %{r}\
-     %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!nostartfiles:%S}} \
-+    %{Wno-poison-system-directories:--no-poison-system-directories} \
-+    %{Werror=poison-system-directories:--error-poison-system-directories} \
-     %{static|no-pie|static-pie:} %{L*} %(mfwrap) %(link_libgcc) " \
-     VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o " CHKP_SPEC " \
-     %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
-diff --git a/gcc/incpath.c b/gcc/incpath.c
-index b11c6a57939..9a457e02dd3 100644
---- a/gcc/incpath.c
-+++ b/gcc/incpath.c
-@@ -26,6 +26,7 @@
- #include "intl.h"
- #include "incpath.h"
- #include "cppdefault.h"
-+#include "diagnostic-core.h"
- 
- /* Microsoft Windows does not natively support inodes.
-    VMS has non-numeric inodes.  */
-@@ -393,6 +394,26 @@ merge_include_chains (const char *sysroot, cpp_reader *pfile, int verbose)
- 	}
-       fprintf (stderr, _("End of search list.\n"));
-     }
-+
-+#ifdef ENABLE_POISON_SYSTEM_DIRECTORIES
-+  if (flag_poison_system_directories)
-+    {
-+       struct cpp_dir *p;
-+
-+       for (p = heads[INC_QUOTE]; p; p = p->next)
-+         {
-+          if ((!strncmp (p->name, "/usr/include", 12))
-+              || (!strncmp (p->name, "/usr/local/include", 18))
-+              || (!strncmp (p->name, "/usr/X11R6/include", 18))
-+              || (!strncmp (p->name, "/sw/include", 11))
-+              || (!strncmp (p->name, "/opt/include", 12)))
-+            warning (OPT_Wpoison_system_directories,
-+                     "include location \"%s\" is unsafe for "
-+                     "cross-compilation",
-+                     p->name);
-+         }
-+    }
-+#endif
- }
- 
- /* Use given -I paths for #include "..." but not #include <...>, and
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
deleted file mode 100644
index e62deb2..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
+++ /dev/null
@@ -1,73 +0,0 @@
-From 6640d7e39b13d1ef26d249153ab15d510fda3566 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:08:31 +0400
-Subject: [PATCH 03/40] gcc-4.3.3: SYSROOT_CFLAGS_FOR_TARGET
-
-Before committing, I noticed that PR/32161 was marked as a dup of PR/32009, but my previous patch did not fix it.
-
-This alternative patch is better because it lets you just use CFLAGS_FOR_TARGET to set the compilation flags for libgcc. Since bootstrapped target libraries are never compiled with the native compiler, it makes little sense to use different flags for stage1 and later stages. And it also makes little sense to use a different variable than CFLAGS_FOR_TARGET.
-
-Other changes I had to do include:
-
-- moving the creation of default CFLAGS_FOR_TARGET from Makefile.am to configure.ac, because otherwise the BOOT_CFLAGS are substituted into CFLAGS_FOR_TARGET (which is "-O2 -g $(CFLAGS)") via $(CFLAGS). It is also cleaner this way though.
-
-- passing the right CFLAGS to configure scripts as exported environment variables
-
-I also stopped passing LIBCFLAGS to configure scripts since they are unused in the whole src tree. And I updated the documentation as H-P reminded me to do.
-
-Bootstrapped/regtested i686-pc-linux-gnu, will commit to 4.4 shortly. Ok for 4.3?
-
-Signed-off-by: Paolo Bonzini  <bonzini@gnu.org>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- configure | 32 ++++++++++++++++++++++++++++++++
- 1 file changed, 32 insertions(+)
-
-diff --git a/configure b/configure
-index 8c5b1e9d561..2d1fc6b94d9 100755
---- a/configure
-+++ b/configure
-@@ -6768,6 +6768,38 @@ fi
- 
- 
- 
-+# During gcc bootstrap, if we use some random cc for stage1 then CFLAGS
-+# might be empty or "-g".  We don't require a C++ compiler, so CXXFLAGS
-+# might also be empty (or "-g", if a non-GCC C++ compiler is in the path).
-+# We want to ensure that TARGET libraries (which we know are built with
-+# gcc) are built with "-O2 -g", so include those options when setting
-+# CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
-+if test "x$CFLAGS_FOR_TARGET" = x; then
-+  CFLAGS_FOR_TARGET=$CFLAGS
-+  case " $CFLAGS " in
-+    *" -O2 "*) ;;
-+    *) CFLAGS_FOR_TARGET="-O2 $CFLAGS" ;;
-+  esac
-+  case " $CFLAGS " in
-+    *" -g "* | *" -g3 "*) ;;
-+    *) CFLAGS_FOR_TARGET="-g $CFLAGS" ;;
-+  esac
-+fi
-+
-+
-+if test "x$CXXFLAGS_FOR_TARGET" = x; then
-+  CXXFLAGS_FOR_TARGET=$CXXFLAGS
-+  case " $CXXFLAGS " in
-+    *" -O2 "*) ;;
-+    *) CXXFLAGS_FOR_TARGET="-O2 $CXXFLAGS" ;;
-+  esac
-+  case " $CXXFLAGS " in
-+    *" -g "* | *" -g3 "*) ;;
-+    *) CXXFLAGS_FOR_TARGET="-g $CXXFLAGS" ;;
-+  esac
-+fi
-+
-+
- # Handle --with-headers=XXX.  If the value is not "yes", the contents of
- # the named directory are copied to $(tooldir)/sys-include.
- if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0004-64-bit-multilib-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0004-64-bit-multilib-hack.patch
deleted file mode 100644
index 371d877..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0004-64-bit-multilib-hack.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-From 1e649d81ca662c4cdf73882ebb8a11f0f19f5baf Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:10:06 +0400
-Subject: [PATCH 04/40] 64-bit multilib hack.
-
-GCC has internal multilib handling code but it assumes a very specific rigid directory
-layout. The build system implementation of multilib layout is very generic and allows
-complete customisation of the library directories.
-
-This patch is a partial solution to allow any custom directories to be passed into gcc
-and handled correctly. It forces gcc to use the base_libdir (which is the current
-directory, "."). We need to do this for each multilib that is configured as we don't
-know which compiler options may be being passed into the compiler. Since we have a compiler
-per mulitlib at this point that isn't an issue.
-
-The one problem is the target compiler is only going to work for the default multlilib at
-this point. Ideally we'd figure out which multilibs were being enabled with which paths
-and be able to patch these entries with a complete set of correct paths but this we
-don't have such code at this point. This is something the target gcc recipe should do
-and override these platform defaults in its build config.
-
-RP 15/8/11
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/config/i386/t-linux64   |  6 ++----
- gcc/config/mips/t-linux64   | 10 +++-------
- gcc/config/rs6000/t-linux64 |  5 ++---
- 3 files changed, 7 insertions(+), 14 deletions(-)
-
-diff --git a/gcc/config/i386/t-linux64 b/gcc/config/i386/t-linux64
-index 8ea0faff369..266c6008004 100644
---- a/gcc/config/i386/t-linux64
-+++ b/gcc/config/i386/t-linux64
-@@ -32,7 +32,5 @@
- #
- comma=,
- MULTILIB_OPTIONS    = $(subst $(comma),/,$(TM_MULTILIB_CONFIG))
--MULTILIB_DIRNAMES   = $(patsubst m%, %, $(subst /, ,$(MULTILIB_OPTIONS)))
--MULTILIB_OSDIRNAMES = m64=../lib64$(call if_multiarch,:x86_64-linux-gnu)
--MULTILIB_OSDIRNAMES+= m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:i386-linux-gnu)
--MULTILIB_OSDIRNAMES+= mx32=../libx32$(call if_multiarch,:x86_64-linux-gnux32)
-+MULTILIB_DIRNAMES = . .
-+MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
-diff --git a/gcc/config/mips/t-linux64 b/gcc/config/mips/t-linux64
-index c017b7d04c5..126892cf40b 100644
---- a/gcc/config/mips/t-linux64
-+++ b/gcc/config/mips/t-linux64
-@@ -17,10 +17,6 @@
- # <http://www.gnu.org/licenses/>.
- 
- MULTILIB_OPTIONS = mabi=n32/mabi=32/mabi=64
--MULTILIB_DIRNAMES = n32 32 64
--MIPS_EL = $(if $(filter %el, $(firstword $(subst -, ,$(target)))),el)
--MIPS_SOFT = $(if $(strip $(filter MASK_SOFT_FLOAT_ABI, $(target_cpu_default)) $(filter soft, $(with_float))),soft)
--MULTILIB_OSDIRNAMES = \
--	../lib32$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabin32$(MIPS_SOFT)) \
--	../lib$(call if_multiarch,:mips$(MIPS_EL)-linux-gnu$(MIPS_SOFT)) \
--	../lib64$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabi64$(MIPS_SOFT))
-+MULTILIB_DIRNAMES = . . .
-+MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
-+
-diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64
-index 0faa2a02df4..13fd8ca971e 100644
---- a/gcc/config/rs6000/t-linux64
-+++ b/gcc/config/rs6000/t-linux64
-@@ -26,10 +26,9 @@
- # MULTILIB_OSDIRNAMES according to what is found on the target.
- 
- MULTILIB_OPTIONS    := m64/m32
--MULTILIB_DIRNAMES   := 64 32
-+MULTILIB_DIRNAMES   := . .
- MULTILIB_EXTRA_OPTS := 
--MULTILIB_OSDIRNAMES := m64=../lib64$(call if_multiarch,:powerpc64-linux-gnu)
--MULTILIB_OSDIRNAMES += m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:powerpc-linux-gnu)
-+MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
- 
- rs6000-linux.o: $(srcdir)/config/rs6000/rs6000-linux.c
- 	$(COMPILE) $<
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0005-optional-libstdc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0005-optional-libstdc.patch
deleted file mode 100644
index f9cf6c2..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0005-optional-libstdc.patch
+++ /dev/null
@@ -1,125 +0,0 @@
-From b486380dcc4758e856ab6d847eb358d05bd79d64 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:12:56 +0400
-Subject: [PATCH 05/40] optional libstdc
-
-gcc-runtime builds libstdc++ separately from gcc-cross-*. Its configure tests using g++
-will not run correctly since by default the linker will try to link against libstdc++
-which shouldn't exist yet. We need an option to disable -lstdc++
-option whilst leaving -lc, -lgcc and other automatic library dependencies added by gcc
-driver. This patch adds such an option which only disables the -lstdc++.
-
-A "standard" gcc build uses xgcc and hence avoids this. We should ask upstream how to
-do this officially, the likely answer is don't build libstdc++ separately.
-
-RP 29/6/10
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [embedded specific]
----
- gcc/c-family/c.opt  |  4 ++++
- gcc/cp/g++spec.c    |  1 +
- gcc/doc/invoke.texi | 32 +++++++++++++++++++++++++++++++-
- gcc/gcc.c           |  1 +
- 4 files changed, 37 insertions(+), 1 deletion(-)
-
-diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt
-index f591b39be5a..2955fcea867 100644
---- a/gcc/c-family/c.opt
-+++ b/gcc/c-family/c.opt
-@@ -1901,6 +1901,10 @@ nostdinc++
- C++ ObjC++
- Do not search standard system include directories for C++.
- 
-+nostdlib++
-+Driver
-+Do not link standard C++ runtime library
-+
- o
- C ObjC C++ ObjC++ Joined Separate
- ; Documented in common.opt
-diff --git a/gcc/cp/g++spec.c b/gcc/cp/g++spec.c
-index 443a1746da3..e9b51be62ef 100644
---- a/gcc/cp/g++spec.c
-+++ b/gcc/cp/g++spec.c
-@@ -137,6 +137,7 @@ lang_specific_driver (struct cl_decoded_option **in_decoded_options,
-       switch (decoded_options[i].opt_index)
- 	{
- 	case OPT_nostdlib:
-+	case OPT_nostdlib__:
- 	case OPT_nodefaultlibs:
- 	  library = -1;
- 	  break;
-diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
-index fb228631a42..310ba8109ed 100644
---- a/gcc/doc/invoke.texi
-+++ b/gcc/doc/invoke.texi
-@@ -212,6 +212,9 @@ in the following sections.
- -fno-weak  -nostdinc++ @gol
- -fvisibility-inlines-hidden @gol
- -fvisibility-ms-compat @gol
-+-fvtable-verify=@r{[}std@r{|}preinit@r{|}none@r{]} @gol
-+-fvtv-counts -fvtv-debug @gol
-+-nostdlib++ @gol
- -fext-numeric-literals @gol
- -Wabi=@var{n}  -Wabi-tag  -Wconversion-null  -Wctor-dtor-privacy @gol
- -Wdelete-non-virtual-dtor  -Wliteral-suffix  -Wmultiple-inheritance @gol
-@@ -510,7 +513,7 @@ Objective-C and Objective-C++ Dialects}.
- -s  -static -static-pie -static-libgcc  -static-libstdc++ @gol
- -static-libasan  -static-libtsan  -static-liblsan  -static-libubsan @gol
- -static-libmpx  -static-libmpxwrappers @gol
---shared  -shared-libgcc  -symbolic @gol
-+-shared  -shared-libgcc  -symbolic -nostdlib++ @gol
- -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
- -u @var{symbol}  -z @var{keyword}}
- 
-@@ -12359,6 +12362,33 @@ library subroutines.
- constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
- GNU Compiler Collection (GCC) Internals}.)
- 
-+@item -nostdlib++
-+@opindex nostdlib++
-+Do not use the standard system C++ runtime libraries when linking.
-+Only the libraries you specify will be passed to the linker.
-+
-+@cindex @option{-lgcc}, use with @option{-nostdlib}
-+@cindex @option{-nostdlib} and unresolved references
-+@cindex unresolved references and @option{-nostdlib}
-+@cindex @option{-lgcc}, use with @option{-nodefaultlibs}
-+@cindex @option{-nodefaultlibs} and unresolved references
-+@cindex unresolved references and @option{-nodefaultlibs}
-+One of the standard libraries bypassed by @option{-nostdlib} and
-+@option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
-+which GCC uses to overcome shortcomings of particular machines, or special
-+needs for some languages.
-+(@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
-+Collection (GCC) Internals},
-+for more discussion of @file{libgcc.a}.)
-+In most cases, you need @file{libgcc.a} even when you want to avoid
-+other standard libraries.  In other words, when you specify @option{-nostdlib}
-+or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
-+This ensures that you have no unresolved references to internal GCC
-+library subroutines.
-+(An example of such an internal subroutine is @code{__main}, used to ensure C++
-+constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
-+GNU Compiler Collection (GCC) Internals}.)
-+
- @item -pie
- @opindex pie
- Produce a dynamically linked position independent executable on targets
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index 02b3cd39fc2..8cd27a5dad5 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -1047,6 +1047,7 @@ proper position among the other output files.  */
-     %(mflib) " STACK_SPLIT_SPEC "\
-     %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
-     %{!nostdlib:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}\
-+    %{!nostdlib++:}\
-     %{!nostdlib:%{!nostartfiles:%E}} %{T*}  \n%(post_link) }}}}}}"
- #endif
- 
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0006-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0006-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch
deleted file mode 100644
index 0cea228..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0006-gcc-disable-MASK_RELAX_PIC_CALLS-bit.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From 1dba090a11c40b0926f9707a543d658c95e1f156 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:14:20 +0400
-Subject: [PATCH 06/40] gcc: disable MASK_RELAX_PIC_CALLS bit
-
-The new feature added after 4.3.3
-"http://www.pubbs.net/200909/gcc/94048-patch-add-support-for-rmipsjalr.html"
-will cause cc1plus eat up all the system memory when build webkit-gtk.
-The function mips_get_pic_call_symbol keeps on recursively calling itself.
-Disable this feature to walk aside the bug.
-
-Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [configuration]
----
- gcc/configure    | 7 -------
- gcc/configure.ac | 7 -------
- 2 files changed, 14 deletions(-)
-
-diff --git a/gcc/configure b/gcc/configure
-index 3901722400c..0c9b8ac5f55 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -27553,13 +27553,6 @@ $as_echo_n "checking assembler and linker for explicit JALR relocation... " >&6;
-         rm -f conftest.*
-       fi
-     fi
--    if test $gcc_cv_as_ld_jalr_reloc = yes; then
--      if test x$target_cpu_default = x; then
--        target_cpu_default=MASK_RELAX_PIC_CALLS
--      else
--        target_cpu_default="($target_cpu_default)|MASK_RELAX_PIC_CALLS"
--      fi
--    fi
-     { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gcc_cv_as_ld_jalr_reloc" >&5
- $as_echo "$gcc_cv_as_ld_jalr_reloc" >&6; }
- 
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 1b1362f70fe..53840363115 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -4798,13 +4798,6 @@ x:
-         rm -f conftest.*
-       fi
-     fi
--    if test $gcc_cv_as_ld_jalr_reloc = yes; then
--      if test x$target_cpu_default = x; then
--        target_cpu_default=MASK_RELAX_PIC_CALLS
--      else
--        target_cpu_default="($target_cpu_default)|MASK_RELAX_PIC_CALLS"
--      fi
--    fi
-     AC_MSG_RESULT($gcc_cv_as_ld_jalr_reloc)
- 
-     AC_CACHE_CHECK([linker for .eh_frame personality relaxation],
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0007-COLLECT_GCC_OPTIONS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0007-COLLECT_GCC_OPTIONS.patch
deleted file mode 100644
index 8c7e72e..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0007-COLLECT_GCC_OPTIONS.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 209e46f45382088caab54425b92b5dfc43ebb4fc Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:16:28 +0400
-Subject: [PATCH 07/40] COLLECT_GCC_OPTIONS
-
-This patch adds --sysroot into COLLECT_GCC_OPTIONS which is used to
-invoke collect2.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/gcc.c | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index 8cd27a5dad5..d355d65583a 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -4677,6 +4677,15 @@ set_collect_gcc_options (void)
- 		sizeof ("COLLECT_GCC_OPTIONS=") - 1);
- 
-   first_time = TRUE;
-+#ifdef HAVE_LD_SYSROOT
-+  if (target_system_root_changed && target_system_root)
-+    {
-+      obstack_grow (&collect_obstack, "'--sysroot=", sizeof("'--sysroot=")-1);
-+      obstack_grow (&collect_obstack, target_system_root,strlen(target_system_root));
-+      obstack_grow (&collect_obstack, "'", 1);
-+      first_time = FALSE;
-+    }
-+#endif
-   for (i = 0; (int) i < n_switches; i++)
-     {
-       const char *const *args;
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0008-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0008-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
deleted file mode 100644
index f9632af..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0008-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
+++ /dev/null
@@ -1,96 +0,0 @@
-From 3bcbdf5ade54a72820ad7798119d0bbad4baf6ec Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:17:25 +0400
-Subject: [PATCH 08/40] Use the defaults.h in ${B} instead of ${S}, and t-oe in
- ${B}
-
-Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}, so that
-the source can be shared between gcc-cross-initial,
-gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
-
-While compiling gcc-crosssdk-initial-x86_64 on some host, there is
-occasionally failure that test the existance of default.h doesn't
-work, the reason is tm_include_list='** defaults.h' rather than
-tm_include_list='** ./defaults.h'
-
-So we add the test condition for this situation.
-Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
----
- gcc/Makefile.in  | 2 +-
- gcc/configure    | 4 ++--
- gcc/configure.ac | 4 ++--
- gcc/mkconfig.sh  | 4 ++--
- 4 files changed, 7 insertions(+), 7 deletions(-)
-
-diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 20bee0494b1..1367136bfac 100644
---- a/gcc/Makefile.in
-+++ b/gcc/Makefile.in
-@@ -538,7 +538,7 @@ TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
- TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
- 
- xmake_file=@xmake_file@
--tmake_file=@tmake_file@
-+tmake_file=@tmake_file@ ./t-oe
- TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
- TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
- TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
-diff --git a/gcc/configure b/gcc/configure
-index 0c9b8ac5f55..134c2c2f156 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -12158,8 +12158,8 @@ for f in $tm_file; do
-        tm_include_list="${tm_include_list} $f"
-        ;;
-     defaults.h )
--       tm_file_list="${tm_file_list} \$(srcdir)/$f"
--       tm_include_list="${tm_include_list} $f"
-+       tm_file_list="${tm_file_list} ./$f"
-+       tm_include_list="${tm_include_list} ./$f"
-        ;;
-     * )
-        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 53840363115..0c3c82e4ff7 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -1922,8 +1922,8 @@ for f in $tm_file; do
-        tm_include_list="${tm_include_list} $f"
-        ;;
-     defaults.h )
--       tm_file_list="${tm_file_list} \$(srcdir)/$f"
--       tm_include_list="${tm_include_list} $f"
-+       tm_file_list="${tm_file_list} ./$f"
-+       tm_include_list="${tm_include_list} ./$f"
-        ;;
-     * )
-        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
-diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh
-index 0f75c863c0b..68d8d6613cf 100644
---- a/gcc/mkconfig.sh
-+++ b/gcc/mkconfig.sh
-@@ -77,7 +77,7 @@ if [ -n "$HEADERS" ]; then
-     if [ $# -ge 1 ]; then
- 	echo '#ifdef IN_GCC' >> ${output}T
- 	for file in "$@"; do
--	    if test x"$file" = x"defaults.h"; then
-+	    if test x"$file" = x"./defaults.h" -o x"$file" = x"defaults.h"; then
- 		postpone_defaults_h="yes"
- 	    else
- 		echo "# include \"$file\"" >> ${output}T
-@@ -106,7 +106,7 @@ esac
- 
- # If we postponed including defaults.h, add the #include now.
- if test x"$postpone_defaults_h" = x"yes"; then
--    echo "# include \"defaults.h\"" >> ${output}T
-+    echo "# include \"./defaults.h\"" >> ${output}T
- fi
- 
- # Add multiple inclusion protection guard, part two.
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0009-fortran-cross-compile-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0009-fortran-cross-compile-hack.patch
deleted file mode 100644
index 50d895b..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0009-fortran-cross-compile-hack.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From e654573352d28f160f379ee77e4067cf108714d0 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:20:01 +0400
-Subject: [PATCH 09/40] fortran cross-compile hack.
-
-* Fortran would have searched for arm-angstrom-gnueabi-gfortran but would have used
-used gfortan. For gcc_4.2.2.bb we want to use the gfortran compiler from our cross
-directory.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [embedded specific]
----
- libgfortran/configure    | 2 +-
- libgfortran/configure.ac | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/libgfortran/configure b/libgfortran/configure
-index 91fce8fecd0..6747f86eb98 100755
---- a/libgfortran/configure
-+++ b/libgfortran/configure
-@@ -12883,7 +12883,7 @@ esac
- 
- # We need gfortran to compile parts of the library
- #AC_PROG_FC(gfortran)
--FC="$GFORTRAN"
-+#FC="$GFORTRAN"
- ac_ext=${ac_fc_srcext-f}
- ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5'
- ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5'
-diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac
-index bf6d3634dda..9dbe43cc616 100644
---- a/libgfortran/configure.ac
-+++ b/libgfortran/configure.ac
-@@ -250,7 +250,7 @@ AC_SUBST(enable_static)
- 
- # We need gfortran to compile parts of the library
- #AC_PROG_FC(gfortran)
--FC="$GFORTRAN"
-+#FC="$GFORTRAN"
- AC_PROG_FC(gfortran)
- 
- # extra LD Flags which are required for targets
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0010-cpp-honor-sysroot.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0010-cpp-honor-sysroot.patch
deleted file mode 100644
index 037eacf..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0010-cpp-honor-sysroot.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 2ae7af4eb70eff6aeda1fe96333ff50cfaa9d906 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:22:00 +0400
-Subject: [PATCH 10/40] cpp: honor sysroot.
-
-Currently, if the gcc toolchain is relocated and installed from sstate, then you try and compile
-preprocessed source (.i or .ii files), the compiler will try and access the builtin sysroot location
-rather than the --sysroot option specified on the commandline. If access to that directory is
-permission denied (unreadable), gcc will error.
-
-This happens when ccache is in use due to the fact it uses preprocessed source files.
-
-The fix below adds %I to the cpp-output spec macro so the default substitutions for -iprefix,
--isystem, -isysroot happen and the correct sysroot is used.
-
-[YOCTO #2074]
-
-RP 2012/04/13
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/cp/lang-specs.h | 2 +-
- gcc/gcc.c           | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h
-index f0802b8915c..f324d299849 100644
---- a/gcc/cp/lang-specs.h
-+++ b/gcc/cp/lang-specs.h
-@@ -64,5 +64,5 @@ along with GCC; see the file COPYING3.  If not see
-   {".ii", "@c++-cpp-output", 0, 0, 0},
-   {"@c++-cpp-output",
-    "%{!M:%{!MM:%{!E:\
--    cc1plus -fpreprocessed %i %(cc1_options) %2\
-+    cc1plus -fpreprocessed %i %I %(cc1_options) %2\
-     %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index d355d65583a..570cdc00034 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -1343,7 +1343,7 @@ static const struct compiler default_compilers[] =
- 					   %W{o*:--output-pch=%*}}%V}}}}}}}", 0, 0, 0},
-   {".i", "@cpp-output", 0, 0, 0},
-   {"@cpp-output",
--   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
-+   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %I %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
-   {".s", "@assembler", 0, 0, 0},
-   {"@assembler",
-    "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0011-MIPS64-Default-to-N64-ABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0011-MIPS64-Default-to-N64-ABI.patch
deleted file mode 100644
index c863cff..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0011-MIPS64-Default-to-N64-ABI.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From 1e1ea0eb55a594ac4cd7b838f74dec7405aae02b Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:23:08 +0400
-Subject: [PATCH 11/40] MIPS64: Default to N64 ABI
-
-MIPS64 defaults to n32 ABI, this patch makes it
-so that it defaults to N64 ABI
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [OE config specific]
----
- gcc/config.gcc | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/gcc/config.gcc b/gcc/config.gcc
-index 7af8e028104..fc7c91246ed 100644
---- a/gcc/config.gcc
-+++ b/gcc/config.gcc
-@@ -2143,29 +2143,29 @@ mips*-*-linux*)				# Linux MIPS, either endian.
- 			default_mips_arch=mips32
- 			;;
- 		mips64el-st-linux-gnu)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			tm_file="${tm_file} mips/st.h"
- 			tmake_file="${tmake_file} mips/t-st"
- 			enable_mips_multilibs="yes"
- 			;;
- 		mips64octeon*-*-linux*)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
- 			target_cpu_default=MASK_SOFT_FLOAT_ABI
- 			enable_mips_multilibs="yes"
- 			;;
- 		mipsisa64r6*-*-linux*)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			default_mips_arch=mips64r6
- 			enable_mips_multilibs="yes"
- 			;;
- 		mipsisa64r2*-*-linux*)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			default_mips_arch=mips64r2
- 			enable_mips_multilibs="yes"
- 			;;
- 		mips64*-*-linux* | mipsisa64*-*-linux*)
--			default_mips_abi=n32
-+			default_mips_abi=64
- 			enable_mips_multilibs="yes"
- 			;;
- 	esac
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0012-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0012-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
deleted file mode 100644
index d3be10f..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0012-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
+++ /dev/null
@@ -1,248 +0,0 @@
-From 6f8649936df3677109b8396f563c716ae8b237fe Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:24:50 +0400
-Subject: [PATCH 12/40] Define GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
- relative to SYSTEMLIBS_DIR
-
-This patch defines GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
-relative to SYSTEMLIBS_DIR which can be set in generated headers
-This breaks the assumption of hardcoded multilib in gcc
-Change is only for the supported architectures in OE including
-SH, sparc, alpha for possible future support (if any)
-
-Removes the do_headerfix task in metadata
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Inappropriate [OE configuration]
----
- gcc/config/alpha/linux-elf.h |  4 ++--
- gcc/config/arm/linux-eabi.h  |  4 ++--
- gcc/config/arm/linux-elf.h   |  2 +-
- gcc/config/i386/linux.h      |  2 +-
- gcc/config/i386/linux64.h    |  6 +++---
- gcc/config/linux.h           |  8 ++++----
- gcc/config/mips/linux.h      | 12 ++++++------
- gcc/config/riscv/linux.h     |  2 +-
- gcc/config/rs6000/linux64.h  | 16 ++++++----------
- gcc/config/sh/linux.h        |  2 +-
- gcc/config/sparc/linux.h     |  2 +-
- gcc/config/sparc/linux64.h   |  4 ++--
- 12 files changed, 30 insertions(+), 34 deletions(-)
-
-diff --git a/gcc/config/alpha/linux-elf.h b/gcc/config/alpha/linux-elf.h
-index 36b74dc1993..02373578af8 100644
---- a/gcc/config/alpha/linux-elf.h
-+++ b/gcc/config/alpha/linux-elf.h
-@@ -23,8 +23,8 @@ along with GCC; see the file COPYING3.  If not see
- #define EXTRA_SPECS \
- { "elf_dynamic_linker", ELF_DYNAMIC_LINKER },
- 
--#define GLIBC_DYNAMIC_LINKER	"/lib/ld-linux.so.2"
--#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
-+#define GLIBC_DYNAMIC_LINKER	SYSTEMLIBS_DIR "ld-linux.so.2"
-+#define UCLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-uClibc.so.0"
- #if DEFAULT_LIBC == LIBC_UCLIBC
- #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
- #elif DEFAULT_LIBC == LIBC_GLIBC
-diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
-index 8585fde3d41..b3af68cac57 100644
---- a/gcc/config/arm/linux-eabi.h
-+++ b/gcc/config/arm/linux-eabi.h
-@@ -62,8 +62,8 @@
-    GLIBC_DYNAMIC_LINKER_DEFAULT and TARGET_DEFAULT_FLOAT_ABI.  */
- 
- #undef  GLIBC_DYNAMIC_LINKER
--#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "/lib/ld-linux.so.3"
--#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT "/lib/ld-linux-armhf.so.3"
-+#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT SYSTEMLIBS_DIR "ld-linux.so.3"
-+#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT SYSTEMLIBS_DIR "ld-linux-armhf.so.3"
- #define GLIBC_DYNAMIC_LINKER_DEFAULT GLIBC_DYNAMIC_LINKER_SOFT_FLOAT
- 
- #define GLIBC_DYNAMIC_LINKER \
-diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h
-index cfcd9cb1a5c..a798e987ecb 100644
---- a/gcc/config/arm/linux-elf.h
-+++ b/gcc/config/arm/linux-elf.h
-@@ -60,7 +60,7 @@
- 
- #define LIBGCC_SPEC "%{mfloat-abi=soft*:-lfloat} -lgcc"
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #define LINUX_TARGET_LINK_SPEC  "%{h*} \
-    %{static:-Bstatic} \
-diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h
-index 69f97f15b0d..71bc31d9231 100644
---- a/gcc/config/i386/linux.h
-+++ b/gcc/config/i386/linux.h
-@@ -20,7 +20,7 @@ along with GCC; see the file COPYING3.  If not see
- <http://www.gnu.org/licenses/>.  */
- 
- #define GNU_USER_LINK_EMULATION "elf_i386"
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #undef MUSL_DYNAMIC_LINKER
- #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-i386.so.1"
-diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h
-index f2d913e30ac..8725f33d8a5 100644
---- a/gcc/config/i386/linux64.h
-+++ b/gcc/config/i386/linux64.h
-@@ -27,9 +27,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
- #define GNU_USER_LINK_EMULATION64 "elf_x86_64"
- #define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64"
- 
--#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
--#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
--#define GLIBC_DYNAMIC_LINKERX32 "/libx32/ld-linux-x32.so.2"
-+#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux-x86-64.so.2"
-+#define GLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ld-linux-x32.so.2"
- 
- #undef MUSL_DYNAMIC_LINKER32
- #define MUSL_DYNAMIC_LINKER32 "/lib/ld-musl-i386.so.1"
-diff --git a/gcc/config/linux.h b/gcc/config/linux.h
-index 2ea4ff92c1d..487b0c0923b 100644
---- a/gcc/config/linux.h
-+++ b/gcc/config/linux.h
-@@ -81,10 +81,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
-    GLIBC_DYNAMIC_LINKER must be defined for each target using them, or
-    GLIBC_DYNAMIC_LINKER32 and GLIBC_DYNAMIC_LINKER64 for targets
-    supporting both 32-bit and 64-bit compilation.  */
--#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
--#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
--#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
--#define UCLIBC_DYNAMIC_LINKERX32 "/lib/ldx32-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ldx32-uClibc.so.0"
- #define BIONIC_DYNAMIC_LINKER "/system/bin/linker"
- #define BIONIC_DYNAMIC_LINKER32 "/system/bin/linker"
- #define BIONIC_DYNAMIC_LINKER64 "/system/bin/linker64"
-diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h
-index 2dfd0c18b90..12057c51b5e 100644
---- a/gcc/config/mips/linux.h
-+++ b/gcc/config/mips/linux.h
-@@ -22,20 +22,20 @@ along with GCC; see the file COPYING3.  If not see
- #define GNU_USER_LINK_EMULATIONN32 "elf32%{EB:b}%{EL:l}tsmipn32"
- 
- #define GLIBC_DYNAMIC_LINKER32 \
--  "%{mnan=2008:/lib/ld-linux-mipsn8.so.1;:/lib/ld.so.1}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
- #define GLIBC_DYNAMIC_LINKER64 \
--  "%{mnan=2008:/lib64/ld-linux-mipsn8.so.1;:/lib64/ld.so.1}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
- #define GLIBC_DYNAMIC_LINKERN32 \
--  "%{mnan=2008:/lib32/ld-linux-mipsn8.so.1;:/lib32/ld.so.1}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
- 
- #undef UCLIBC_DYNAMIC_LINKER32
- #define UCLIBC_DYNAMIC_LINKER32 \
--  "%{mnan=2008:/lib/ld-uClibc-mipsn8.so.0;:/lib/ld-uClibc.so.0}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
- #undef UCLIBC_DYNAMIC_LINKER64
- #define UCLIBC_DYNAMIC_LINKER64 \
--  "%{mnan=2008:/lib/ld64-uClibc-mipsn8.so.0;:/lib/ld64-uClibc.so.0}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld64-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld64-uClibc.so.0}"
- #define UCLIBC_DYNAMIC_LINKERN32 \
--  "%{mnan=2008:/lib32/ld-uClibc-mipsn8.so.0;:/lib32/ld-uClibc.so.0}"
-+  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
- 
- #undef MUSL_DYNAMIC_LINKER32
- #define MUSL_DYNAMIC_LINKER32 \
-diff --git a/gcc/config/riscv/linux.h b/gcc/config/riscv/linux.h
-index aa8a28d5d31..ebf9551c955 100644
---- a/gcc/config/riscv/linux.h
-+++ b/gcc/config/riscv/linux.h
-@@ -22,7 +22,7 @@ along with GCC; see the file COPYING3.  If not see
-     GNU_USER_TARGET_OS_CPP_BUILTINS();				\
-   } while (0)
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
- 
- #define MUSL_ABI_SUFFIX \
-   "%{mabi=ilp32:-sf}" \
-diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
-index 44eab40a234..54aa8d957e7 100644
---- a/gcc/config/rs6000/linux64.h
-+++ b/gcc/config/rs6000/linux64.h
-@@ -413,16 +413,11 @@ extern int dot_symbols;
- #undef	LINK_OS_DEFAULT_SPEC
- #define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
- 
--#define GLIBC_DYNAMIC_LINKER32 "%(dynamic_linker_prefix)/lib/ld.so.1"
--
-+#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld.so.1"
- #ifdef LINUX64_DEFAULT_ABI_ELFv2
--#define GLIBC_DYNAMIC_LINKER64 \
--"%{mabi=elfv1:%(dynamic_linker_prefix)/lib64/ld64.so.1;" \
--":%(dynamic_linker_prefix)/lib64/ld64.so.2}"
-+#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv1:" SYSTEMLIBS_DIR "ld64.so.1;:" SYSTEMLIBS_DIR "ld64.so.2}"
- #else
--#define GLIBC_DYNAMIC_LINKER64 \
--"%{mabi=elfv2:%(dynamic_linker_prefix)/lib64/ld64.so.2;" \
--":%(dynamic_linker_prefix)/lib64/ld64.so.1}"
-+#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv2:" SYSTEMLIBS_DIR "ld64.so.2;:" SYSTEMLIBS_DIR "ld64.so.1}"
- #endif
- 
- #define MUSL_DYNAMIC_LINKER32 \
-@@ -430,8 +425,9 @@ extern int dot_symbols;
- #define MUSL_DYNAMIC_LINKER64 \
-   "/lib/ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
- 
--#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
--#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
-+#define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
-+
- #if DEFAULT_LIBC == LIBC_UCLIBC
- #define CHOOSE_DYNAMIC_LINKER(G, U, M) \
-   "%{mglibc:" G ";:%{mmusl:" M ";:" U "}}"
-diff --git a/gcc/config/sh/linux.h b/gcc/config/sh/linux.h
-index 6d2ccd012ba..ec78a89ce15 100644
---- a/gcc/config/sh/linux.h
-+++ b/gcc/config/sh/linux.h
-@@ -64,7 +64,7 @@ along with GCC; see the file COPYING3.  If not see
-   "/lib/ld-musl-sh" MUSL_DYNAMIC_LINKER_E MUSL_DYNAMIC_LINKER_FP \
-   "%{mfdpic:-fdpic}.so.1"
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #undef SUBTARGET_LINK_EMUL_SUFFIX
- #define SUBTARGET_LINK_EMUL_SUFFIX "%{mfdpic:_fd;:_linux}"
-diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h
-index 9fb03af0fe9..401fddbbb22 100644
---- a/gcc/config/sparc/linux.h
-+++ b/gcc/config/sparc/linux.h
-@@ -83,7 +83,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv);
-    When the -shared link option is used a final link is not being
-    done.  */
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #undef  LINK_SPEC
- #define LINK_SPEC "-m elf32_sparc %{shared:-shared} \
-diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h
-index c1fe42165b7..26a79bfa2e3 100644
---- a/gcc/config/sparc/linux64.h
-+++ b/gcc/config/sparc/linux64.h
-@@ -84,8 +84,8 @@ along with GCC; see the file COPYING3.  If not see
-    When the -shared link option is used a final link is not being
-    done.  */
- 
--#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
--#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
-+#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux.so.2"
- 
- #ifdef SPARC_BI_ARCH
- 
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0013-gcc-Fix-argument-list-too-long-error.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0013-gcc-Fix-argument-list-too-long-error.patch
deleted file mode 100644
index e9d2cac..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0013-gcc-Fix-argument-list-too-long-error.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 9e815965fbaa90134be0e777cfc2fbcfab16b674 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:26:37 +0400
-Subject: [PATCH 13/40] gcc: Fix argument list too long error.
-
-There would be an "Argument list too long" error when the
-build directory is longer than 200, this is caused by:
-
-headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`
-
-The PLUGIN_HEADERS is too long before sort, so the "echo" can't handle
-it, use the $(sort list) of GNU make which can handle the too long list
-would fix the problem, the header would be short enough after sorted.
-The "tr ' ' '\012'" was used for translating the space to "\n", the
-$(sort list) doesn't need this.
-
-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/Makefile.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 1367136bfac..71a8275c39f 100644
---- a/gcc/Makefile.in
-+++ b/gcc/Makefile.in
-@@ -3538,7 +3538,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
- # We keep the directory structure for files in config or c-family and .def
- # files. All other files are flattened to a single directory.
- 	$(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
--	headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
-+	headers="$(sort $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def))"; \
- 	srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
- 	for file in $$headers; do \
- 	  if [ -f $$file ] ; then \
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0014-Disable-sdt.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0014-Disable-sdt.patch
deleted file mode 100644
index 2bc4451..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0014-Disable-sdt.patch
+++ /dev/null
@@ -1,113 +0,0 @@
-From 00c7a7fdd4b4aad9e57d8b541de17ad209b6cd06 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:28:10 +0400
-Subject: [PATCH 14/40] Disable sdt.
-
-We don't list dtrace in DEPENDS so we shouldn't be depending on this header.
-It may or may not exist from preivous builds though. To be determinstic, disable
-sdt.h usage always. This avoids build failures if the header is removed after configure
-but before libgcc is compiled for example.
-
-RP 2012/8/7
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Disable sdt for libstdc++-v3.
-
-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-
-Upstream-Status: Inappropriate [hack]
----
- gcc/configure             | 12 ++++++------
- gcc/configure.ac          | 18 +++++++++---------
- libstdc++-v3/configure    |  6 +++---
- libstdc++-v3/configure.ac |  2 +-
- 4 files changed, 19 insertions(+), 19 deletions(-)
-
-diff --git a/gcc/configure b/gcc/configure
-index 134c2c2f156..5111ec0aabb 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -29282,12 +29282,12 @@ fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking sys/sdt.h in the target C library" >&5
- $as_echo_n "checking sys/sdt.h in the target C library... " >&6; }
- have_sys_sdt_h=no
--if test -f $target_header_dir/sys/sdt.h; then
--  have_sys_sdt_h=yes
--
--$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
--
--fi
-+#if test -f $target_header_dir/sys/sdt.h; then
-+#  have_sys_sdt_h=yes
-+#
-+#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
-+#
-+#fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_sys_sdt_h" >&5
- $as_echo "$have_sys_sdt_h" >&6; }
- 
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 0c3c82e4ff7..3e09af916fd 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -5943,15 +5943,15 @@ fi
- AC_SUBST([enable_default_ssp])
- 
- # Test for <sys/sdt.h> on the target.
--GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
--AC_MSG_CHECKING(sys/sdt.h in the target C library)
--have_sys_sdt_h=no
--if test -f $target_header_dir/sys/sdt.h; then
--  have_sys_sdt_h=yes
--  AC_DEFINE(HAVE_SYS_SDT_H, 1,
--            [Define if your target C library provides sys/sdt.h])
--fi
--AC_MSG_RESULT($have_sys_sdt_h)
-+#GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
-+#AC_MSG_CHECKING(sys/sdt.h in the target C library)
-+#have_sys_sdt_h=no
-+#if test -f $target_header_dir/sys/sdt.h; then
-+#  have_sys_sdt_h=yes
-+#  AC_DEFINE(HAVE_SYS_SDT_H, 1,
-+#            [Define if your target C library provides sys/sdt.h])
-+#fi
-+#AC_MSG_RESULT($have_sys_sdt_h)
- 
- # Check if TFmode long double should be used by default or not.
- # Some glibc targets used DFmode long double, but with glibc 2.4
-diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
-index 5535bfa2b5a..13d793f5059 100755
---- a/libstdc++-v3/configure
-+++ b/libstdc++-v3/configure
-@@ -21786,11 +21786,11 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
- ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
- ac_compiler_gnu=$ac_cv_c_compiler_gnu
- 
--  if test $glibcxx_cv_sys_sdt_h = yes; then
-+#  if test $glibcxx_cv_sys_sdt_h = yes; then
- 
--$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
-+#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
- 
--  fi
-+#  fi
-   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_sdt_h" >&5
- $as_echo "$glibcxx_cv_sys_sdt_h" >&6; }
- 
-diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac
-index 0ef96270c9c..afe55a1b215 100644
---- a/libstdc++-v3/configure.ac
-+++ b/libstdc++-v3/configure.ac
-@@ -230,7 +230,7 @@ GLIBCXX_CHECK_SC_NPROCESSORS_ONLN
- GLIBCXX_CHECK_SC_NPROC_ONLN
- GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP
- GLIBCXX_CHECK_SYSCTL_HW_NCPU
--GLIBCXX_CHECK_SDT_H
-+#GLIBCXX_CHECK_SDT_H
- 
- # Check for available headers.
- AC_CHECK_HEADERS([endian.h execinfo.h float.h fp.h ieeefp.h inttypes.h \
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0015-libtool.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0015-libtool.patch
deleted file mode 100644
index 750f8a2..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0015-libtool.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 80f2b01b3f917cea08294328c8bbc51dadece4af Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:29:11 +0400
-Subject: [PATCH 15/40] libtool
-
-libstdc++ from gcc-runtime gets created with -rpath=/usr/lib/../lib for qemux86-64
-when running on am x86_64 build host.
-
-This patch stops this speading to libdir in the libstdc++.la file within libtool.
-Arguably, it shouldn't be passing this into libtool in the first place but
-for now this resolves the nastiest problems this causes.
-
-func_normal_abspath would resolve an empty path to `pwd` so we need
-to filter the zero case.
-
-RP 2012/8/24
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- ltmain.sh | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/ltmain.sh b/ltmain.sh
-index 9503ec85d70..0121fba707f 100644
---- a/ltmain.sh
-+++ b/ltmain.sh
-@@ -6359,6 +6359,10 @@ func_mode_link ()
- 	func_warning "ignoring multiple \`-rpath's for a libtool library"
- 
-       install_libdir="$1"
-+      if test -n "$install_libdir"; then
-+	func_normal_abspath "$install_libdir"
-+	install_libdir=$func_normal_abspath_result
-+      fi
- 
-       oldlibs=
-       if test -z "$rpath"; then
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0016-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0016-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
deleted file mode 100644
index 9b1b4d4..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0016-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From a66ec1e382bf869749588f072a4a7c09039f2b3a Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:30:32 +0400
-Subject: [PATCH 16/40] gcc: armv4: pass fix-v4bx to linker to support EABI.
-
-The LINK_SPEC for linux gets overwritten by linux-eabi.h which
-means the value of TARGET_FIX_V4BX_SPEC gets lost and as a result
-the option is not passed to linker when chosing march=armv4
-This patch redefines this in linux-eabi.h and reinserts it
-for eabi defaulting toolchains.
-
-We might want to send it upstream.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Upstream-Status: Pending
----
- gcc/config/arm/linux-eabi.h | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
-index b3af68cac57..330b6e13c5f 100644
---- a/gcc/config/arm/linux-eabi.h
-+++ b/gcc/config/arm/linux-eabi.h
-@@ -88,10 +88,14 @@
- #define MUSL_DYNAMIC_LINKER \
-   "/lib/ld-musl-arm" MUSL_DYNAMIC_LINKER_E "%{mfloat-abi=hard:hf}.so.1"
- 
-+/* For armv4 we pass --fix-v4bx to linker to support EABI */
-+#undef TARGET_FIX_V4BX_SPEC
-+#define TARGET_FIX_V4BX_SPEC "%{mcpu=arm8|mcpu=arm810|mcpu=strongarm*|march=armv4: --fix-v4bx}"
-+
- /* At this point, bpabi.h will have clobbered LINK_SPEC.  We want to
-    use the GNU/Linux version, not the generic BPABI version.  */
- #undef  LINK_SPEC
--#define LINK_SPEC EABI_LINK_SPEC					\
-+#define LINK_SPEC TARGET_FIX_V4BX_SPEC EABI_LINK_SPEC			\
-   LINUX_OR_ANDROID_LD (LINUX_TARGET_LINK_SPEC,				\
- 		       LINUX_TARGET_LINK_SPEC " " ANDROID_LINK_SPEC)
- 
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0017-Use-the-multilib-config-files-from-B-instead-of-usin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0017-Use-the-multilib-config-files-from-B-instead-of-usin.patch
deleted file mode 100644
index 382fecd..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0017-Use-the-multilib-config-files-from-B-instead-of-usin.patch
+++ /dev/null
@@ -1,102 +0,0 @@
-From 624db734f656ad8cdf8b3cf3fc8e860b70c6c251 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Mar 2013 09:33:04 +0400
-Subject: [PATCH 17/40] Use the multilib config files from ${B} instead of
- using the ones from ${S}
-
-Use the multilib config files from ${B} instead of using the ones from ${S}
-so that the source can be shared between gcc-cross-initial,
-gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
-
-Upstream-Status: Inappropriate [configuration]
----
- gcc/configure    | 22 ++++++++++++++++++----
- gcc/configure.ac | 22 ++++++++++++++++++----
- 2 files changed, 36 insertions(+), 8 deletions(-)
-
-diff --git a/gcc/configure b/gcc/configure
-index 5111ec0aabb..3d9dcbdc93d 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -12138,10 +12138,20 @@ done
- tmake_file_=
- for f in ${tmake_file}
- do
--	if test -f ${srcdir}/config/$f
--	then
--		tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
--	fi
-+  case $f in
-+    */t-linux64 )
-+       if test -f ./config/$f
-+       then
-+         tmake_file_="${tmake_file_} ./config/$f"
-+       fi
-+       ;;
-+    * )
-+       if test -f ${srcdir}/config/$f
-+       then
-+         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
-+       fi
-+       ;;
-+  esac
- done
- tmake_file="${tmake_file_}"
- 
-@@ -12152,6 +12162,10 @@ tm_file_list="options.h"
- tm_include_list="options.h insn-constants.h"
- for f in $tm_file; do
-   case $f in
-+    */linux64.h )
-+       tm_file_list="${tm_file_list} ./config/$f"
-+       tm_include_list="${tm_include_list} ./config/$f"
-+       ;;
-     ./* )
-        f=`echo $f | sed 's/^..//'`
-        tm_file_list="${tm_file_list} $f"
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index 3e09af916fd..e09c840b605 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -1902,10 +1902,20 @@ done
- tmake_file_=
- for f in ${tmake_file}
- do
--	if test -f ${srcdir}/config/$f
--	then
--		tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
--	fi
-+  case $f in
-+    */t-linux64 )
-+       if test -f ./config/$f
-+       then
-+         tmake_file_="${tmake_file_} ./config/$f"
-+       fi
-+       ;;
-+    * )
-+       if test -f ${srcdir}/config/$f
-+       then
-+         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
-+       fi
-+       ;;
-+  esac
- done
- tmake_file="${tmake_file_}"
- 
-@@ -1916,6 +1926,10 @@ tm_file_list="options.h"
- tm_include_list="options.h insn-constants.h"
- for f in $tm_file; do
-   case $f in
-+    */linux64.h )
-+       tm_file_list="${tm_file_list} ./config/$f"
-+       tm_include_list="${tm_include_list} ./config/$f"
-+       ;;
-     ./* )
-        f=`echo $f | sed 's/^..//'`
-        tm_file_list="${tm_file_list} $f"
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0018-Avoid-using-libdir-from-.la-which-usually-points-to-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0018-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
deleted file mode 100644
index 20e77d6..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0018-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 27cca95dcfeead8c52d292c4824ee96f178d6183 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 09:39:38 +0000
-Subject: [PATCH 18/40] Avoid using libdir from .la which usually points to a
- host path
-
-Upstream-Status: Inappropriate [embedded specific]
-
-Signed-off-by: Jonathan Liu <net147@gmail.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- ltmain.sh | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/ltmain.sh b/ltmain.sh
-index 0121fba707f..52bdbdb5f9c 100644
---- a/ltmain.sh
-+++ b/ltmain.sh
-@@ -5628,6 +5628,9 @@ func_mode_link ()
- 	    absdir="$abs_ladir"
- 	    libdir="$abs_ladir"
- 	  else
-+	    # Instead of using libdir from .la which usually points to a host path,
-+	    # use the path the .la is contained in.
-+	    libdir="$abs_ladir"
- 	    dir="$libdir"
- 	    absdir="$libdir"
- 	  fi
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0019-export-CPP.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0019-export-CPP.patch
deleted file mode 100644
index 140c67a..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0019-export-CPP.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From a2936382da81aefa9b69c1fc625f6c706b7ea1d8 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 09:40:59 +0000
-Subject: [PATCH 19/40] export CPP
-
-The OE environment sets and exports CPP as being the target gcc. When
-building gcc-cross-canadian for a mingw targetted sdk, the following can be found
-in build.x86_64-pokysdk-mingw32.i586-poky-linux/build-x86_64-linux/libiberty/config.log:
-
-configure:3641: checking for _FILE_OFFSET_BITS value needed for large files
-configure:3666: gcc  -c -isystem/media/build1/poky/build/tmp/sysroots/x86_64-linux/usr/include -O2 -pipe  conftest.c >&5
-configure:3666: $? = 0
-configure:3698: result: no
-configure:3786: checking how to run the C preprocessor
-configure:3856: result: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32
-configure:3876: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32 conftest.c
-configure:3876: $? = 0
-
-Note this is a *build* target (in build-x86_64-linux) so it should be
-using the host "gcc", not x86_64-pokysdk-mingw32-gcc. Since the mingw32
-headers are very different, using the wrong cpp is a real problem. It is leaking
-into configure through the CPP variable. Ultimately this leads to build
-failures related to not being able to include a process.h file for pem-unix.c.
-
-The fix is to ensure we export a sane CPP value into the build
-environment when using build targets. We could define a CPP_FOR_BUILD value which may be
-the version which needs to be upstreamed but for now, this fix is good enough to
-avoid the problem.
-
-RP 22/08/2013
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- Makefile.in | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/Makefile.in b/Makefile.in
-index 38774f542a6..b426d4f9350 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -149,6 +149,7 @@ BUILD_EXPORTS = \
- 	AR="$(AR_FOR_BUILD)"; export AR; \
- 	AS="$(AS_FOR_BUILD)"; export AS; \
- 	CC="$(CC_FOR_BUILD)"; export CC; \
-+	CPP="$(CC_FOR_BUILD) -E"; export CPP; \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
- 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0020-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0020-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch
deleted file mode 100644
index b22557e..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0020-Disable-the-MULTILIB_OSDIRNAMES-and-other-multilib-o.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From d4326ab74a362b0fc83ed866f82c359389a36adc Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 10:21:55 +0000
-Subject: [PATCH 20/40] Disable the MULTILIB_OSDIRNAMES and other multilib
- options.
-
-Hard coding the MULTILIB_OSDIRNAMES with ../lib64 is causing problems on
-systems where the libdir is NOT set to /lib64.  This is allowed by the
-ABI, as
-long as the dynamic loader is present in /lib.
-
-We simply want to use the default rules in gcc to find and configure the
-normal libdir.
-
-Upstream-Status: Inappropriate[OE-Specific]
-
-Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/aarch64/t-aarch64-linux | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/gcc/config/aarch64/t-aarch64-linux b/gcc/config/aarch64/t-aarch64-linux
-index b9897785a89..7d06f0d0edb 100644
---- a/gcc/config/aarch64/t-aarch64-linux
-+++ b/gcc/config/aarch64/t-aarch64-linux
-@@ -21,8 +21,8 @@
- LIB1ASMSRC   = aarch64/lib1funcs.asm
- LIB1ASMFUNCS = _aarch64_sync_cache_range
- 
--AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
--MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
--MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
-+#AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
-+#MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
-+#MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
- 
--MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
-+#MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0021-Ensure-target-gcc-headers-can-be-included.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0021-Ensure-target-gcc-headers-can-be-included.patch
deleted file mode 100644
index 60d7269..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0021-Ensure-target-gcc-headers-can-be-included.patch
+++ /dev/null
@@ -1,98 +0,0 @@
-From 476eda9054df443d094273c8b61fce63d940adfc Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 10:25:11 +0000
-Subject: [PATCH 21/40] Ensure target gcc headers can be included
-
-There are a few headers installed as part of the OpenEmbedded
-gcc-runtime target (omp.h, ssp/*.h). Being installed from a recipe
-built for the target architecture, these are within the target
-sysroot and not cross/nativesdk; thus they weren't able to be
-found by gcc with the existing search paths. Add support for
-picking up these headers under the sysroot supplied on the gcc
-command line in order to resolve this.
-
-Upstream-Status: Pending
-
-Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/Makefile.in  | 2 ++
- gcc/cppdefault.c | 4 ++++
- gcc/defaults.h   | 9 +++++++++
- gcc/gcc.c        | 7 -------
- 4 files changed, 15 insertions(+), 7 deletions(-)
-
-diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 71a8275c39f..5ae693fb06c 100644
---- a/gcc/Makefile.in
-+++ b/gcc/Makefile.in
-@@ -614,6 +614,7 @@ libexecdir = @libexecdir@
- 
- # Directory in which the compiler finds libraries etc.
- libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
-+libsubdir_target = gcc/$(target_noncanonical)/$(version)
- # Directory in which the compiler finds executables
- libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
- # Directory in which all plugin resources are installed
-@@ -2870,6 +2871,7 @@ CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\"
- 
- PREPROCESSOR_DEFINES = \
-   -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
-+  -DGCC_INCLUDE_SUBDIR_TARGET=\"$(libsubdir_target)/include\" \
-   -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
-   -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
-   -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \
-diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
-index b36a979d5ba..e2e187dedaf 100644
---- a/gcc/cppdefault.c
-+++ b/gcc/cppdefault.c
-@@ -59,6 +59,10 @@ const struct default_include cpp_include_defaults[]
-     /* This is the dir for gcc's private headers.  */
-     { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
- #endif
-+#ifdef GCC_INCLUDE_SUBDIR_TARGET
-+    /* This is the dir for gcc's private headers under the specified sysroot.  */
-+    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
-+#endif
- #ifdef LOCAL_INCLUDE_DIR
-     /* /usr/local/include comes before the fixincluded header files.  */
-     { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
-diff --git a/gcc/defaults.h b/gcc/defaults.h
-index 9035b333be8..5982bbda61d 100644
---- a/gcc/defaults.h
-+++ b/gcc/defaults.h
-@@ -1455,4 +1455,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
- #define DWARF_GNAT_ENCODINGS_DEFAULT DWARF_GNAT_ENCODINGS_GDB
- #endif
- 
-+/* Default prefixes to attach to command names.  */
-+
-+#ifndef STANDARD_STARTFILE_PREFIX_1
-+#define STANDARD_STARTFILE_PREFIX_1 "/lib/"
-+#endif
-+#ifndef STANDARD_STARTFILE_PREFIX_2
-+#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
-+#endif
-+
- #endif  /* ! GCC_DEFAULTS_H */
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index 570cdc00034..3fb64d453f1 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -1464,13 +1464,6 @@ static const char *gcc_libexec_prefix;
- 
- /* Default prefixes to attach to command names.  */
- 
--#ifndef STANDARD_STARTFILE_PREFIX_1
--#define STANDARD_STARTFILE_PREFIX_1 "/lib/"
--#endif
--#ifndef STANDARD_STARTFILE_PREFIX_2
--#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
--#endif
--
- #ifdef CROSS_DIRECTORY_STRUCTURE  /* Don't use these prefixes for a cross compiler.  */
- #undef MD_EXEC_PREFIX
- #undef MD_STARTFILE_PREFIX
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0022-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0022-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch
deleted file mode 100644
index 6f0d3f1..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0022-gcc-4.8-won-t-build-with-disable-dependency-tracking.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From bc192f0a07ad819dee93446c5ef6895d9550d92d Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 20 Feb 2015 11:17:19 +0000
-Subject: [PATCH 22/40] gcc 4.8+ won't build with --disable-dependency-tracking
-
-since the *.Ppo files don't get created unless --enable-dependency-tracking is true.
-
-This patch ensures we only use those compiler options when its enabled.
-
-Upstream-Status: Submitted
-
-(Problem was already reported upstream, attached this patch there
-http://gcc.gnu.org/bugzilla/show_bug.cgi?id=55930)
-
-RP
-2012/09/22
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- libatomic/Makefile.am | 3 ++-
- libatomic/Makefile.in | 3 ++-
- 2 files changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
-index 803b292cce5..b47842eb590 100644
---- a/libatomic/Makefile.am
-+++ b/libatomic/Makefile.am
-@@ -101,7 +101,8 @@ PAT_S		= $(word 3,$(PAT_SPLIT))
- IFUNC_DEF	= -DIFUNC_ALT=$(PAT_S)
- IFUNC_OPT	= $(word $(PAT_S),$(IFUNC_OPTIONS))
- 
--M_DEPS		= -MT $@ -MD -MP -MF $(DEPDIR)/$(@F).Ppo
-+@AMDEP_TRUE@M_DEPS		= -MT $@ -MD -MP -MF $(DEPDIR)/$(@F).Ppo
-+@AMDEP_FALSE@M_DEPS		=
- M_SIZE		= -DN=$(PAT_N)
- M_IFUNC		= $(if $(PAT_S),$(IFUNC_DEF) $(IFUNC_OPT))
- M_FILE		= $(PAT_BASE)_n.c
-diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
-index c8f38be5835..4fab7cec3ea 100644
---- a/libatomic/Makefile.in
-+++ b/libatomic/Makefile.in
-@@ -335,7 +335,8 @@ PAT_N = $(word 2,$(PAT_SPLIT))
- PAT_S = $(word 3,$(PAT_SPLIT))
- IFUNC_DEF = -DIFUNC_ALT=$(PAT_S)
- IFUNC_OPT = $(word $(PAT_S),$(IFUNC_OPTIONS))
--M_DEPS = -MT $@ -MD -MP -MF $(DEPDIR)/$(@F).Ppo
-+@AMDEP_TRUE@M_DEPS = -MT $@ -MD -MP -MF $(DEPDIR)/$(@F).Ppo
-+@AMDEP_FALSE@M_DEPS =
- M_SIZE = -DN=$(PAT_N)
- M_IFUNC = $(if $(PAT_S),$(IFUNC_DEF) $(IFUNC_OPT))
- M_FILE = $(PAT_BASE)_n.c
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0023-Don-t-search-host-directory-during-relink-if-inst_pr.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0023-Don-t-search-host-directory-during-relink-if-inst_pr.patch
deleted file mode 100644
index fe3f343..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0023-Don-t-search-host-directory-during-relink-if-inst_pr.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 0409d2dd7322ecbed731cbe29b034fea43c5dddc Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 3 Mar 2015 08:21:19 +0000
-Subject: [PATCH 23/40] Don't search host directory during "relink" if
- $inst_prefix is provided
-
-http://lists.gnu.org/archive/html/libtool-patches/2011-01/msg00026.html
-
-Upstream-Status: Submitted
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- ltmain.sh | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/ltmain.sh b/ltmain.sh
-index 52bdbdb5f9c..82bcec39f05 100644
---- a/ltmain.sh
-+++ b/ltmain.sh
-@@ -6004,12 +6004,13 @@ func_mode_link ()
- 	      fi
- 	    else
- 	      # We cannot seem to hardcode it, guess we'll fake it.
-+	      # Default if $libdir is not relative to the prefix:
- 	      add_dir="-L$libdir"
--	      # Try looking first in the location we're being installed to.
-+
- 	      if test -n "$inst_prefix_dir"; then
- 		case $libdir in
- 		  [\\/]*)
--		    add_dir="$add_dir -L$inst_prefix_dir$libdir"
-+		    add_dir="-L$inst_prefix_dir$libdir"
- 		    ;;
- 		esac
- 	      fi
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0024-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0024-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
deleted file mode 100644
index c388a0a..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0024-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 56e2e1fc2a27c4a5cc9b471d5d0af90bcb871bfa Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 28 Apr 2015 23:15:27 -0700
-Subject: [PATCH 24/40] Use SYSTEMLIBS_DIR replacement instead of hardcoding base_libdir
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/aarch64/aarch64-linux.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
-index bf1327e98cc..64436183bc8 100644
---- a/gcc/config/aarch64/aarch64-linux.h
-+++ b/gcc/config/aarch64/aarch64-linux.h
-@@ -21,7 +21,7 @@
- #ifndef GCC_AARCH64_LINUX_H
- #define GCC_AARCH64_LINUX_H
- 
--#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
-+#define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
- 
- #undef MUSL_DYNAMIC_LINKER
- #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0025-aarch64-Add-support-for-musl-ldso.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0025-aarch64-Add-support-for-musl-ldso.patch
deleted file mode 100644
index 03f9725..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0025-aarch64-Add-support-for-musl-ldso.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From b142e77e44e1acece6da54ccdc24c4da89cf4b99 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 28 Apr 2015 23:18:39 -0700
-Subject: [PATCH 25/40] aarch64: Add support for musl ldso
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/aarch64/aarch64-linux.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
-index 64436183bc8..ba156676026 100644
---- a/gcc/config/aarch64/aarch64-linux.h
-+++ b/gcc/config/aarch64/aarch64-linux.h
-@@ -24,7 +24,7 @@
- #define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
- 
- #undef MUSL_DYNAMIC_LINKER
--#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
-+#define MUSL_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
- 
- #undef  ASAN_CC1_SPEC
- #define ASAN_CC1_SPEC "%{%:sanitize(address):-funwind-tables}"
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0026-libcc1-fix-libcc1-s-install-path-and-rpath.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0026-libcc1-fix-libcc1-s-install-path-and-rpath.patch
deleted file mode 100644
index 8591738..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0026-libcc1-fix-libcc1-s-install-path-and-rpath.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 3d4e53fc7cd71ce1181af8a5e9655398857af741 Mon Sep 17 00:00:00 2001
-From: Robert Yang <liezhi.yang@windriver.com>
-Date: Sun, 5 Jul 2015 20:25:18 -0700
-Subject: [PATCH 26/40] libcc1: fix libcc1's install path and rpath
-
-* Install libcc1.so and libcc1plugin.so into
-  $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version), as what we
-  had done to lto-plugin.
-* Fix bad RPATH iussue:
-  gcc-5.2.0: package gcc-plugins contains bad RPATH /patht/to/tmp/sysroots/qemux86-64/usr/lib64/../lib64 in file
- /path/to/gcc/5.2.0-r0/packages-split/gcc-plugins/usr/lib64/gcc/x86_64-poky-linux/5.2.0/plugin/libcc1plugin.so.0.0.0
- [rpaths]
-
-Upstream-Status: Inappropriate [OE configuration]
-
-Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
----
- libcc1/Makefile.am | 4 ++--
- libcc1/Makefile.in | 4 ++--
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am
-index 6ecb66b4365..634cce3c2a9 100644
---- a/libcc1/Makefile.am
-+++ b/libcc1/Makefile.am
-@@ -37,8 +37,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
- 	    $(Wc)$(libiberty_normal)))
- libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
- 
--plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
--cc1libdir = $(libdir)/$(libsuffix)
-+cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
-+plugindir = $(cc1libdir)
- 
- if ENABLE_PLUGIN
- plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
-diff --git a/libcc1/Makefile.in b/libcc1/Makefile.in
-index 47be10025ad..8d5481d87bd 100644
---- a/libcc1/Makefile.in
-+++ b/libcc1/Makefile.in
-@@ -303,8 +303,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
- 	    $(Wc)$(libiberty_normal)))
- 
- libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
--plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
--cc1libdir = $(libdir)/$(libsuffix)
-+cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
-+plugindir = $(cc1libdir)
- @ENABLE_PLUGIN_TRUE@plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
- @ENABLE_PLUGIN_TRUE@cc1lib_LTLIBRARIES = libcc1.la
- shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0027-handle-sysroot-support-for-nativesdk-gcc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0027-handle-sysroot-support-for-nativesdk-gcc.patch
deleted file mode 100644
index 4b955de..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0027-handle-sysroot-support-for-nativesdk-gcc.patch
+++ /dev/null
@@ -1,213 +0,0 @@
-From c033c1df11b692213d03db91d6cc145b4adedfac Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 7 Dec 2015 23:39:54 +0000
-Subject: [PATCH 27/40] handle sysroot support for nativesdk-gcc
-
-Being able to build a nativesdk gcc is useful, particularly in cases
-where the host compiler may be of an incompatible version (or a 32
-bit compiler is needed).
-
-Sadly, building nativesdk-gcc is not straight forward. We install
-nativesdk-gcc into a relocatable location and this means that its
-library locations can change. "Normal" sysroot support doesn't help
-in this case since the values of paths like "libdir" change, not just
-base root directory of the system.
-
-In order to handle this we do two things:
-
-a) Add %r into spec file markup which can be used for injected paths
-   such as SYSTEMLIBS_DIR (see gcc_multilib_setup()).
-b) Add other paths which need relocation into a .gccrelocprefix section
-   which the relocation code will notice and adjust automatically.
-
-Upstream-Status: Inappropriate
-RP 2015/7/28
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/cppdefault.c | 50 +++++++++++++++++++++++++++++++++++-------------
- gcc/cppdefault.h |  3 ++-
- gcc/gcc.c        | 20 +++++++++++++------
- 3 files changed, 53 insertions(+), 20 deletions(-)
-
-diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
-index e2e187dedaf..2faba2b1d63 100644
---- a/gcc/cppdefault.c
-+++ b/gcc/cppdefault.c
-@@ -35,6 +35,30 @@
- # undef CROSS_INCLUDE_DIR
- #endif
- 
-+static char GPLUSPLUS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_INCLUDE_DIR;
-+static char GCC_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GCC_INCLUDE_DIR;
-+static char GPLUSPLUS_TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_TOOL_INCLUDE_DIR;
-+static char GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_BACKWARD_INCLUDE_DIR;
-+static char STANDARD_STARTFILE_PREFIX_2VAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET;
-+#ifdef LOCAL_INCLUDE_DIR
-+static char LOCAL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = LOCAL_INCLUDE_DIR;
-+#endif
-+#ifdef PREFIX_INCLUDE_DIR
-+static char PREFIX_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX_INCLUDE_DIR;
-+#endif
-+#ifdef FIXED_INCLUDE_DIR
-+static char FIXED_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = FIXED_INCLUDE_DIR;
-+#endif
-+#ifdef CROSS_INCLUDE_DIR
-+static char CROSS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = CROSS_INCLUDE_DIR;
-+#endif
-+#ifdef TOOL_INCLUDE_DIR
-+static char TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = TOOL_INCLUDE_DIR;
-+#endif
-+#ifdef NATIVE_SYSTEM_HEADER_DIR
-+static char NATIVE_SYSTEM_HEADER_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = NATIVE_SYSTEM_HEADER_DIR;
-+#endif
-+
- const struct default_include cpp_include_defaults[]
- #ifdef INCLUDE_DEFAULTS
- = INCLUDE_DEFAULTS;
-@@ -42,38 +66,38 @@ const struct default_include cpp_include_defaults[]
- = {
- #ifdef GPLUSPLUS_INCLUDE_DIR
-     /* Pick up GNU C++ generic include files.  */
--    { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1,
-+    { GPLUSPLUS_INCLUDE_DIRVAR, "G++", 1, 1,
-       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
- #endif
- #ifdef GPLUSPLUS_TOOL_INCLUDE_DIR
-     /* Pick up GNU C++ target-dependent include files.  */
--    { GPLUSPLUS_TOOL_INCLUDE_DIR, "G++", 1, 1,
-+    { GPLUSPLUS_TOOL_INCLUDE_DIRVAR, "G++", 1, 1,
-       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 1 },
- #endif
- #ifdef GPLUSPLUS_BACKWARD_INCLUDE_DIR
-     /* Pick up GNU C++ backward and deprecated include files.  */
--    { GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1,
-+    { GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR, "G++", 1, 1,
-       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
- #endif
- #ifdef GCC_INCLUDE_DIR
-     /* This is the dir for gcc's private headers.  */
--    { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
-+    { GCC_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
- #endif
- #ifdef GCC_INCLUDE_SUBDIR_TARGET
-     /* This is the dir for gcc's private headers under the specified sysroot.  */
--    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
-+    { STANDARD_STARTFILE_PREFIX_2VAR, "GCC", 0, 0, 1, 0 },
- #endif
- #ifdef LOCAL_INCLUDE_DIR
-     /* /usr/local/include comes before the fixincluded header files.  */
--    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
--    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 0 },
-+    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 2 },
-+    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 0 },
- #endif
- #ifdef PREFIX_INCLUDE_DIR
--    { PREFIX_INCLUDE_DIR, 0, 0, 1, 0, 0 },
-+    { PREFIX_INCLUDE_DIRVAR, 0, 0, 1, 0, 0 },
- #endif
- #ifdef FIXED_INCLUDE_DIR
-     /* This is the dir for fixincludes.  */
--    { FIXED_INCLUDE_DIR, "GCC", 0, 0, 0,
-+    { FIXED_INCLUDE_DIRVAR, "GCC", 0, 0, 0,
-       /* A multilib suffix needs adding if different multilibs use
- 	 different headers.  */
- #ifdef SYSROOT_HEADERS_SUFFIX_SPEC
-@@ -85,16 +109,16 @@ const struct default_include cpp_include_defaults[]
- #endif
- #ifdef CROSS_INCLUDE_DIR
-     /* One place the target system's headers might be.  */
--    { CROSS_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
-+    { CROSS_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
- #endif
- #ifdef TOOL_INCLUDE_DIR
-     /* Another place the target system's headers might be.  */
--    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1, 0, 0 },
-+    { TOOL_INCLUDE_DIRVAR, "BINUTILS", 0, 1, 0, 0 },
- #endif
- #ifdef NATIVE_SYSTEM_HEADER_DIR
-     /* /usr/include comes dead last.  */
--    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
--    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
-+    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
-+    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
- #endif
-     { 0, 0, 0, 0, 0, 0 }
-   };
-diff --git a/gcc/cppdefault.h b/gcc/cppdefault.h
-index 4a0186d1cf2..29e5d9da0dc 100644
---- a/gcc/cppdefault.h
-+++ b/gcc/cppdefault.h
-@@ -33,7 +33,8 @@
- 
- struct default_include
- {
--  const char *const fname;	/* The name of the directory.  */
-+  const char *fname;     /* The name of the directory.  */
-+
-   const char *const component;	/* The component containing the directory
- 				   (see update_path in prefix.c) */
-   const char cplusplus;		/* Only look here if we're compiling C++.  */
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index 3fb64d453f1..cd0c7fbe961 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -248,6 +248,8 @@ FILE *report_times_to_file = NULL;
- #endif
- static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
- 
-+static char target_relocatable_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = SYSTEMLIBS_DIR;
-+
- /* Nonzero means pass the updated target_system_root to the compiler.  */
- 
- static int target_system_root_changed;
-@@ -519,6 +521,7 @@ or with constant text in a single argument.
-  %G     process LIBGCC_SPEC as a spec.
-  %R     Output the concatenation of target_system_root and
-         target_sysroot_suffix.
-+ %r     Output the base path target_relocatable_prefix
-  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
-  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
-  %C     process CPP_SPEC as a spec.
-@@ -1487,10 +1490,10 @@ static const char *gcc_libexec_prefix;
-    gcc_exec_prefix is set because, in that case, we know where the
-    compiler has been installed, and use paths relative to that
-    location instead.  */
--static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
--static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
--static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
--static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
-+static char standard_exec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
-+static char standard_libexec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_LIBEXEC_PREFIX;
-+static char standard_bindir_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_BINDIR_PREFIX;
-+static char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
- 
- /* For native compilers, these are well-known paths containing
-    components that may be provided by the system.  For cross
-@@ -1498,9 +1501,9 @@ static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
- static const char *md_exec_prefix = MD_EXEC_PREFIX;
- static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
- static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
--static const char *const standard_startfile_prefix_1
-+static char standard_startfile_prefix_1[4096] __attribute__ ((section (".gccrelocprefix")))
-   = STANDARD_STARTFILE_PREFIX_1;
--static const char *const standard_startfile_prefix_2
-+static char standard_startfile_prefix_2[4096] __attribute__ ((section (".gccrelocprefix")))
-   = STANDARD_STARTFILE_PREFIX_2;
- 
- /* A relative path to be used in finding the location of tools
-@@ -5849,6 +5852,11 @@ do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
- 	      }
- 	    break;
- 
-+          case 'r':
-+              obstack_grow (&obstack, target_relocatable_prefix,
-+		      strlen (target_relocatable_prefix));
-+            break;
-+
- 	  case 'S':
- 	    value = do_spec_1 (startfile_spec, 0, NULL);
- 	    if (value != 0)
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0028-Search-target-sysroot-gcc-version-specific-dirs-with.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0028-Search-target-sysroot-gcc-version-specific-dirs-with.patch
deleted file mode 100644
index 1b25d78..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0028-Search-target-sysroot-gcc-version-specific-dirs-with.patch
+++ /dev/null
@@ -1,102 +0,0 @@
-From 62240d4c725ea0b43abfb901ddad90e83e29a25c Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 7 Dec 2015 23:41:45 +0000
-Subject: [PATCH 28/40] Search target sysroot gcc version specific dirs with
- multilib.
-
-We install the gcc libraries (such as crtbegin.p) into
-<sysroot><libdir>/<target-sys>/5.2.0/
-which is a default search path for GCC (aka multi_suffix in the
-code below). <target-sys> is 'machine' in gcc's terminology. We use
-these directories so that multiple gcc versions could in theory
-co-exist on target.
-
-We only want to build one gcc-cross-canadian per arch and have this work
-for all multilibs. <target-sys> can be handled by mapping the multilib
-<target-sys> to the one used by gcc-cross-canadian, e.g.
-mips64-polkmllib32-linux
-is symlinked to by mips64-poky-linux.
-
-The default gcc search path in the target sysroot for a "lib64" mutlilib
-is:
-
-<sysroot>/lib32/mips64-poky-linux/5.2.0/
-<sysroot>/lib32/../lib64/
-<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
-<sysroot>/usr/lib32/../lib64/
-<sysroot>/lib32/
-<sysroot>/usr/lib32/
-
-which means that the lib32 crtbegin.o will be found and the lib64 ones
-will not which leads to compiler failures.
-
-This patch injects a multilib version of that path first so the lib64
-binaries can be found first. With this change the search path becomes:
-
-<sysroot>/lib32/../lib64/mips64-poky-linux/5.2.0/
-<sysroot>/lib32/mips64-poky-linux/5.2.0/
-<sysroot>/lib32/../lib64/
-<sysroot>/usr/lib32/../lib64/mips64-poky-linux/5.2.0/
-<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
-<sysroot>/usr/lib32/../lib64/
-<sysroot>/lib32/
-<sysroot>/usr/lib32/
-
-Upstream-Status: Pending
-RP 2015/7/31
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/gcc.c | 29 ++++++++++++++++++++++++++++-
- 1 file changed, 28 insertions(+), 1 deletion(-)
-
-diff --git a/gcc/gcc.c b/gcc/gcc.c
-index cd0c7fbe961..f6f3aa077c8 100644
---- a/gcc/gcc.c
-+++ b/gcc/gcc.c
-@@ -2527,7 +2527,7 @@ for_each_path (const struct path_prefix *paths,
-       if (path == NULL)
- 	{
- 	  len = paths->max_len + extra_space + 1;
--	  len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
-+	  len += MAX ((suffix_len + multi_os_dir_len), multiarch_len);
- 	  path = XNEWVEC (char, len);
- 	}
- 
-@@ -2539,6 +2539,33 @@ for_each_path (const struct path_prefix *paths,
- 	  /* Look first in MACHINE/VERSION subdirectory.  */
- 	  if (!skip_multi_dir)
- 	    {
-+	      if (!(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
-+	        {
-+	          const char *this_multi;
-+	          size_t this_multi_len;
-+
-+	          if (pl->os_multilib)
-+		    {
-+		      this_multi = multi_os_dir;
-+		      this_multi_len = multi_os_dir_len;
-+		    }
-+	          else
-+		    {
-+		      this_multi = multi_dir;
-+		      this_multi_len = multi_dir_len;
-+		    }
-+
-+	          /* Look in multilib MACHINE/VERSION subdirectory first */
-+	          if (this_multi_len)
-+	            {
-+		      memcpy (path + len, this_multi, this_multi_len + 1);
-+	              memcpy (path + len + this_multi_len, multi_suffix, suffix_len + 1);
-+	              ret = callback (path, callback_info);
-+	                if (ret)
-+		          break;
-+	            }
-+	        }
-+
- 	      memcpy (path + len, multi_suffix, suffix_len + 1);
- 	      ret = callback (path, callback_info);
- 	      if (ret)
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0029-Fix-various-_FOR_BUILD-and-related-variables.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0029-Fix-various-_FOR_BUILD-and-related-variables.patch
deleted file mode 100644
index 0c8bdb1..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0029-Fix-various-_FOR_BUILD-and-related-variables.patch
+++ /dev/null
@@ -1,137 +0,0 @@
-From 1377c738e31a1e1599cfab189485a9459f803e79 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Mon, 7 Dec 2015 23:42:45 +0000
-Subject: [PATCH 29/40] Fix various _FOR_BUILD and related variables
-
-When doing a FOR_BUILD thing, you have to override CFLAGS with
-CFLAGS_FOR_BUILD. And if you use C++, you also have to override
-CXXFLAGS with CXXFLAGS_FOR_BUILD.
-Without this, when building for mingw, you end up trying to use
-the mingw headers for a host build.
-
-The same goes for other variables as well, such as CPPFLAGS,
-CPP, and GMPINC.
-
-Upstream-Status: Pending
-
-Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
-Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- Makefile.in      | 6 ++++++
- Makefile.tpl     | 5 +++++
- gcc/Makefile.in  | 2 +-
- gcc/configure    | 2 +-
- gcc/configure.ac | 2 +-
- 5 files changed, 14 insertions(+), 3 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index b426d4f9350..a2af9905cce 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -152,6 +152,7 @@ BUILD_EXPORTS = \
- 	CPP="$(CC_FOR_BUILD) -E"; export CPP; \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
-+	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
- 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
- 	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
- 	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
-@@ -169,6 +170,9 @@ BUILD_EXPORTS = \
- # built for the build system to override those in BASE_FLAGS_TO_PASS.
- EXTRA_BUILD_FLAGS = \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)" \
-+	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
-+	CPP="$(CC_FOR_BUILD) -E" \
-+	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
- 	LDFLAGS="$(LDFLAGS_FOR_BUILD)"
- 
- # This is the list of directories to built for the host system.
-@@ -186,6 +190,7 @@ HOST_SUBDIR = @host_subdir@
- HOST_EXPORTS = \
- 	$(BASE_EXPORTS) \
- 	CC="$(CC)"; export CC; \
-+	CPP="$(CC) -E"; export CPP; \
- 	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
- 	CFLAGS="$(CFLAGS)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
-@@ -743,6 +748,7 @@ BASE_FLAGS_TO_PASS = \
- 	"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
- 	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
- 	"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
-+	"CXXFLAGS_FOR_BUILD=$(CXXFLAGS_FOR_BUILD)" \
- 	"EXPECT=$(EXPECT)" \
- 	"FLEX=$(FLEX)" \
- 	"INSTALL=$(INSTALL)" \
-diff --git a/Makefile.tpl b/Makefile.tpl
-index 1f23b79b4b2..6c5652e811d 100644
---- a/Makefile.tpl
-+++ b/Makefile.tpl
-@@ -154,6 +154,7 @@ BUILD_EXPORTS = \
- 	CC="$(CC_FOR_BUILD)"; export CC; \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
-+	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
- 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
- 	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
- 	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
-@@ -171,6 +172,9 @@ BUILD_EXPORTS = \
- # built for the build system to override those in BASE_FLAGS_TO_PASS.
- EXTRA_BUILD_FLAGS = \
- 	CFLAGS="$(CFLAGS_FOR_BUILD)" \
-+	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
-+	CPP="$(CC_FOR_BUILD) -E" \
-+	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
- 	LDFLAGS="$(LDFLAGS_FOR_BUILD)"
- 
- # This is the list of directories to built for the host system.
-@@ -188,6 +192,7 @@ HOST_SUBDIR = @host_subdir@
- HOST_EXPORTS = \
- 	$(BASE_EXPORTS) \
- 	CC="$(CC)"; export CC; \
-+	CPP="$(CC) -E"; export CPP; \
- 	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
- 	CFLAGS="$(CFLAGS)"; export CFLAGS; \
- 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
-diff --git a/gcc/Makefile.in b/gcc/Makefile.in
-index 5ae693fb06c..02ee0aa72f4 100644
---- a/gcc/Makefile.in
-+++ b/gcc/Makefile.in
-@@ -801,7 +801,7 @@ BUILD_LDFLAGS=@BUILD_LDFLAGS@
- BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@
- BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG)
- BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
--		-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS)
-+		-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS_FOR_BUILD)
- 
- # Actual name to use when installing a native compiler.
- GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
-diff --git a/gcc/configure b/gcc/configure
-index 3d9dcbdc93d..aa127a4f6a4 100755
---- a/gcc/configure
-+++ b/gcc/configure
-@@ -11797,7 +11797,7 @@ else
- 	CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
- 	CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
- 	LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
--	GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
-+	GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
- 	${realsrcdir}/configure \
- 		--enable-languages=${enable_languages-all} \
- 		--target=$target_alias --host=$build_alias --build=$build_alias
-diff --git a/gcc/configure.ac b/gcc/configure.ac
-index e09c840b605..18bf53c7e0a 100644
---- a/gcc/configure.ac
-+++ b/gcc/configure.ac
-@@ -1708,7 +1708,7 @@ else
- 	CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
- 	CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
- 	LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
--	GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
-+	GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
- 	${realsrcdir}/configure \
- 		--enable-languages=${enable_languages-all} \
- 		--target=$target_alias --host=$build_alias --build=$build_alias
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0030-nios2-Define-MUSL_DYNAMIC_LINKER.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0030-nios2-Define-MUSL_DYNAMIC_LINKER.patch
deleted file mode 100644
index 04e126c..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0030-nios2-Define-MUSL_DYNAMIC_LINKER.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 75da3cc9ca2d3de8c2062f23bf4f72415741ef83 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 2 Feb 2016 10:26:10 -0800
-Subject: [PATCH 30/40] nios2: Define MUSL_DYNAMIC_LINKER
-
-Upstream-Status: Pending
-
-Signed-off-by: Marek Vasut <marex@denx.de>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/nios2/linux.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/gcc/config/nios2/linux.h b/gcc/config/nios2/linux.h
-index 4729105626d..36181eb7b85 100644
---- a/gcc/config/nios2/linux.h
-+++ b/gcc/config/nios2/linux.h
-@@ -30,6 +30,7 @@
- #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
- 
- #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-nios2.so.1"
-+#define MUSL_DYNAMIC_LINKER  "/lib/ld-musl-nios2.so.1"
- 
- #undef LINK_SPEC
- #define LINK_SPEC LINK_SPEC_ENDIAN \
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0031-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0031-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
deleted file mode 100644
index 002cf2b..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0031-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
+++ /dev/null
@@ -1,87 +0,0 @@
-From f715aeef294b85fa593ef69e6d0114cc7b15312b Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Tue, 27 Jun 2017 18:10:54 -0700
-Subject: [PATCH 31/40] Add ssp_nonshared to link commandline for musl targets
-
-when -fstack-protector options are enabled we need to
-link with ssp_shared on musl since it does not provide
-the __stack_chk_fail_local() so essentially it provides
-libssp but not libssp_nonshared something like
-TARGET_LIBC_PROVIDES_SSP_BUT_NOT_SSP_NONSHARED
- where-as for glibc the needed symbols
-are already present in libc_nonshared library therefore
-we do not need any library helper on glibc based systems
-but musl needs the libssp_noshared from gcc
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/linux.h          |  7 +++++++
- gcc/config/rs6000/linux.h   | 10 ++++++++++
- gcc/config/rs6000/linux64.h | 10 ++++++++++
- 3 files changed, 27 insertions(+)
-
-diff --git a/gcc/config/linux.h b/gcc/config/linux.h
-index 487b0c0923b..4769d089538 100644
---- a/gcc/config/linux.h
-+++ b/gcc/config/linux.h
-@@ -182,6 +182,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
-     { GCC_INCLUDE_DIR, "GCC", 0, 1, 0, 0 },		\
-     { 0, 0, 0, 0, 0, 0 }				\
-   }
-+#ifdef TARGET_LIBC_PROVIDES_SSP
-+#undef LINK_SSP_SPEC
-+#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
-+		       "|fstack-protector-strong|fstack-protector-explicit" \
-+		       ":-lssp_nonshared}"
-+#endif
-+
- #endif
- 
- #if (DEFAULT_LIBC == LIBC_UCLIBC) && defined (SINGLE_LIBC) /* uClinux */
-diff --git a/gcc/config/rs6000/linux.h b/gcc/config/rs6000/linux.h
-index 01b40c762f6..e7c5e92215c 100644
---- a/gcc/config/rs6000/linux.h
-+++ b/gcc/config/rs6000/linux.h
-@@ -92,6 +92,16 @@
- 					 " -m elf32ppclinux")
- #endif
- 
-+/* link libssp_nonshared.a with musl */
-+#if DEFAULT_LIBC == LIBC_MUSL
-+#ifdef TARGET_LIBC_PROVIDES_SSP
-+#undef LINK_SSP_SPEC
-+#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
-+		       "|fstack-protector-strong|fstack-protector-explicit" \
-+		       ":-lssp_nonshared}"
-+#endif
-+#endif
-+
- #undef LINK_OS_LINUX_SPEC
- #define LINK_OS_LINUX_SPEC LINK_OS_LINUX_EMUL " %{!shared: %{!static: \
-   %{!static-pie: \
-diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
-index 54aa8d957e7..619e113e2b8 100644
---- a/gcc/config/rs6000/linux64.h
-+++ b/gcc/config/rs6000/linux64.h
-@@ -466,6 +466,16 @@ extern int dot_symbols;
- 					   " -m elf64ppc")
- #endif
- 
-+/* link libssp_nonshared.a with musl */
-+#if DEFAULT_LIBC == LIBC_MUSL
-+#ifdef TARGET_LIBC_PROVIDES_SSP
-+#undef LINK_SSP_SPEC
-+#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
-+		       "|fstack-protector-strong|fstack-protector-explicit" \
-+		       ":-lssp_nonshared}"
-+#endif
-+#endif
-+
- #define LINK_OS_LINUX_SPEC32 LINK_OS_LINUX_EMUL32 " %{!shared: %{!static: \
-   %{!static-pie: \
-     %{rdynamic:-export-dynamic} \
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0032-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0032-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch
deleted file mode 100644
index 025caba..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0032-libgcc-Add-knob-to-use-ldbl-128-on-ppc.patch
+++ /dev/null
@@ -1,125 +0,0 @@
-From 6dfbca78b8d253aecf9cbb5e68e04b8dd3d6a543 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 29 Apr 2016 20:03:28 +0000
-Subject: [PATCH 32/40] libgcc: Add knob to use ldbl-128 on ppc
-
-musl does not support ldbl 128 so we can not assume
-that linux as a whole supports ldbl-128 bits, instead
-act upon configure option passed to gcc and assume no
-on musl and yes otherwise if no option is passed since
-default behaviour is to assume ldbl128 it does not
-change the defaults
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- libgcc/Makefile.in           |  1 +
- libgcc/config/rs6000/t-linux |  5 ++++-
- libgcc/configure             | 18 ++++++++++++++++++
- libgcc/configure.ac          | 12 ++++++++++++
- 4 files changed, 35 insertions(+), 1 deletion(-)
- mode change 100644 => 100755 libgcc/configure
-
-diff --git a/libgcc/Makefile.in b/libgcc/Makefile.in
-index dd8cee99fd3..b5f478af382 100644
---- a/libgcc/Makefile.in
-+++ b/libgcc/Makefile.in
-@@ -48,6 +48,7 @@ unwind_header = @unwind_header@
- md_unwind_header = @md_unwind_header@
- sfp_machine_header = @sfp_machine_header@
- thread_header = @thread_header@
-+with_ldbl128 = @with_ldbl128@
- 
- host_noncanonical = @host_noncanonical@
- real_host_noncanonical = @real_host_noncanonical@
-diff --git a/libgcc/config/rs6000/t-linux b/libgcc/config/rs6000/t-linux
-index 4f6d4c4a4d2..c50dd94a2da 100644
---- a/libgcc/config/rs6000/t-linux
-+++ b/libgcc/config/rs6000/t-linux
-@@ -1,3 +1,6 @@
- SHLIB_MAPFILES += $(srcdir)/config/rs6000/libgcc-glibc.ver
- 
--HOST_LIBGCC2_CFLAGS += -mlong-double-128 -mno-minimal-toc
-+ifeq ($(with_ldbl128),yes)
-+HOST_LIBGCC2_CFLAGS += -mlong-double-128
-+endif
-+HOST_LIBGCC2_CFLAGS += -mno-minimal-toc
-diff --git a/libgcc/configure b/libgcc/configure
-old mode 100644
-new mode 100755
-index b2f3f870844..ed806587c17
---- a/libgcc/configure
-+++ b/libgcc/configure
-@@ -619,6 +619,7 @@ build_vendor
- build_cpu
- build
- with_aix_soname
-+with_ldbl128
- enable_vtable_verify
- enable_shared
- libgcc_topdir
-@@ -668,6 +669,7 @@ with_cross_host
- with_ld
- enable_shared
- enable_vtable_verify
-+with_long_double_128
- with_aix_soname
- enable_version_specific_runtime_libs
- with_slibdir
-@@ -1329,6 +1331,7 @@ Optional Packages:
-   --with-target-subdir=SUBDIR      Configuring in a subdirectory for target
-   --with-cross-host=HOST           Configuring with a cross compiler
-   --with-ld               arrange to use the specified ld (full pathname)
-+  --with-long-double-128  use 128-bit long double by default
-   --with-aix-soname=aix|svr4|both
-                           shared library versioning (aka "SONAME") variant to
-                           provide on AIX
-@@ -2213,6 +2216,21 @@ fi
- 
- 
- 
-+# Check whether --with-long-double-128 was given.
-+if test "${with_long_double_128+set}" = set; then :
-+  withval=$with_long_double_128; with_ldbl128="$with_long_double_128"
-+else
-+  case "${host}" in
-+ power*-*-musl*)
-+   with_ldbl128="no";;
-+ *) with_ldbl128="yes";;
-+ esac
-+
-+fi
-+
-+
-+
-+
- # Check whether --with-aix-soname was given.
- if test "${with_aix_soname+set}" = set; then :
-   withval=$with_aix_soname; case "${host}:${enable_shared}" in
-diff --git a/libgcc/configure.ac b/libgcc/configure.ac
-index b59aa746afc..42220a263c5 100644
---- a/libgcc/configure.ac
-+++ b/libgcc/configure.ac
-@@ -78,6 +78,18 @@ AC_ARG_ENABLE(vtable-verify,
- [enable_vtable_verify=no])
- AC_SUBST(enable_vtable_verify)
- 
-+AC_ARG_WITH(long-double-128,
-+[AS_HELP_STRING([--with-long-double-128],
-+    [use 128-bit long double by default])],
-+      with_ldbl128="$with_long_double_128",
-+[case "${host}" in
-+ power*-*-musl*)
-+   with_ldbl128="no";;
-+ *) with_ldbl128="yes";;
-+ esac
-+])
-+AC_SUBST(with_ldbl128)
-+
- AC_ARG_WITH(aix-soname,
- [AS_HELP_STRING([--with-aix-soname=aix|svr4|both],
-     [shared library versioning (aka "SONAME") variant to provide on AIX])],
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0033-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0033-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
deleted file mode 100644
index 343f7aa..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0033-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 7e55147e8e609ace6f9eecd86a956636687671f0 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Wed, 4 May 2016 21:11:34 -0700
-Subject: [PATCH 33/40] Link libgcc using LDFLAGS, not just SHLIB_LDFLAGS
-
-Upstream-Status: Pending
-
-Signed-off-by: Christopher Larson <chris_larson@mentor.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- libgcc/config/t-slibgcc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libgcc/config/t-slibgcc b/libgcc/config/t-slibgcc
-index 7e60b621a2d..ea22ede3361 100644
---- a/libgcc/config/t-slibgcc
-+++ b/libgcc/config/t-slibgcc
-@@ -32,7 +32,7 @@ SHLIB_INSTALL_SOLINK = $(LN_S) $(SHLIB_SONAME) \
- 	$(DESTDIR)$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
- 
- SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
--	$(SHLIB_LDFLAGS) \
-+	$(LDFLAGS) $(SHLIB_LDFLAGS) \
- 	-o $(SHLIB_DIR)/$(SHLIB_SONAME).tmp @multilib_flags@ \
- 	$(SHLIB_OBJS) $(SHLIB_LC) && \
- 	rm -f $(SHLIB_DIR)/$(SHLIB_SOLINK) && \
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
deleted file mode 100644
index 92224cc..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-From 46ca51dd413330bb8425b06283e7667bfb507c3d Mon Sep 17 00:00:00 2001
-From: Szabolcs Nagy <nsz@port70.net>
-Date: Sat, 24 Oct 2015 20:09:53 +0000
-Subject: [PATCH 34/40] libgcc_s: Use alias for __cpu_indicator_init instead of symver
-
-Adapter from
-
-https://gcc.gnu.org/ml/gcc-patches/2015-05/msg00899.html
-
-This fix was debated but hasnt been applied gcc upstream since
-they expect musl to support '@' in symbol versioning which is
-a sun/gnu versioning extention. This patch however avoids the
-need for the '@' symbols at all
-
-libgcc/Changelog:
-
-2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
-
-	* config/i386/cpuinfo.c (__cpu_indicator_init_local): Add.
-	(__cpu_indicator_init@GCC_4.8.0, __cpu_model@GCC_4.8.0): Remove.
-
-	* config/i386/t-linux (HOST_LIBGCC2_CFLAGS): Remove -DUSE_ELF_SYMVER.
-
-gcc/Changelog:
-
-2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
-
-	* config/i386/i386.c (ix86_expand_builtin): Make __builtin_cpu_init
-	call __cpu_indicator_init_local instead of __cpu_indicator_init.
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/i386/i386.c       | 4 ++--
- libgcc/config/i386/cpuinfo.c | 6 +++---
- libgcc/config/i386/t-linux   | 2 +-
- 3 files changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
-index a88a29b51e6..6f3f5187970 100644
---- a/gcc/config/i386/i386.c
-+++ b/gcc/config/i386/i386.c
-@@ -36555,10 +36555,10 @@ ix86_expand_builtin (tree exp, rtx target, rtx subtarget,
-     {
-     case IX86_BUILTIN_CPU_INIT:
-       {
--	/* Make it call __cpu_indicator_init in libgcc. */
-+	/* Make it call __cpu_indicator_init_local in libgcc.a. */
- 	tree call_expr, fndecl, type;
-         type = build_function_type_list (integer_type_node, NULL_TREE); 
--	fndecl = build_fn_decl ("__cpu_indicator_init", type);
-+	fndecl = build_fn_decl ("__cpu_indicator_init_local", type);
- 	call_expr = build_call_expr (fndecl, 0); 
- 	return expand_expr (call_expr, target, mode, EXPAND_NORMAL);
-       }
-diff --git a/libgcc/config/i386/cpuinfo.c b/libgcc/config/i386/cpuinfo.c
-index d1853d5515b..864150c9249 100644
---- a/libgcc/config/i386/cpuinfo.c
-+++ b/libgcc/config/i386/cpuinfo.c
-@@ -485,7 +485,7 @@ __cpu_indicator_init (void)
-   return 0;
- }
- 
--#if defined SHARED && defined USE_ELF_SYMVER
--__asm__ (".symver __cpu_indicator_init, __cpu_indicator_init@GCC_4.8.0");
--__asm__ (".symver __cpu_model, __cpu_model@GCC_4.8.0");
-+#ifndef SHARED
-+int __cpu_indicator_init_local (void)
-+  __attribute__ ((weak, alias ("__cpu_indicator_init")));
- #endif
-diff --git a/libgcc/config/i386/t-linux b/libgcc/config/i386/t-linux
-index 8506a635790..564296f788e 100644
---- a/libgcc/config/i386/t-linux
-+++ b/libgcc/config/i386/t-linux
-@@ -3,5 +3,5 @@
- # t-slibgcc-elf-ver and t-linux
- SHLIB_MAPFILES = libgcc-std.ver $(srcdir)/config/i386/libgcc-glibc.ver
- 
--HOST_LIBGCC2_CFLAGS += -mlong-double-80 -DUSE_ELF_SYMVER $(CET_FLAGS)
-+HOST_LIBGCC2_CFLAGS += -mlong-double-80 $(CET_FLAGS)
- CRTSTUFF_T_CFLAGS += $(CET_FLAGS)
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0035-sync-gcc-stddef.h-with-musl.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0035-sync-gcc-stddef.h-with-musl.patch
deleted file mode 100644
index 6ecd6e9..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0035-sync-gcc-stddef.h-with-musl.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-From 38d401fb6ab555d09f4a9a677721dde0743876e1 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 3 Feb 2017 12:56:00 -0800
-Subject: [PATCH 35/40] sync gcc stddef.h with musl
-
-musl defines ptrdiff_t size_t and wchar_t
-so dont define them here if musl is definining them
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/ginclude/stddef.h | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/gcc/ginclude/stddef.h b/gcc/ginclude/stddef.h
-index 31b96a7e5e1..438a3ce7c56 100644
---- a/gcc/ginclude/stddef.h
-+++ b/gcc/ginclude/stddef.h
-@@ -134,6 +134,7 @@ _TYPE_wchar_t;
- #ifndef ___int_ptrdiff_t_h
- #ifndef _GCC_PTRDIFF_T
- #ifndef _PTRDIFF_T_DECLARED /* DragonFly */
-+#ifndef __DEFINED_ptrdiff_t /* musl */
- #define _PTRDIFF_T
- #define _T_PTRDIFF_
- #define _T_PTRDIFF
-@@ -143,10 +144,12 @@ _TYPE_wchar_t;
- #define ___int_ptrdiff_t_h
- #define _GCC_PTRDIFF_T
- #define _PTRDIFF_T_DECLARED
-+#define __DEFINED_ptrdiff_t /* musl */
- #ifndef __PTRDIFF_TYPE__
- #define __PTRDIFF_TYPE__ long int
- #endif
- typedef __PTRDIFF_TYPE__ ptrdiff_t;
-+#endif /* __DEFINED_ptrdiff_t */
- #endif /* _PTRDIFF_T_DECLARED */
- #endif /* _GCC_PTRDIFF_T */
- #endif /* ___int_ptrdiff_t_h */
-@@ -184,6 +187,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
- #ifndef _GCC_SIZE_T
- #ifndef _SIZET_
- #ifndef __size_t
-+#ifndef __DEFINED_size_t /* musl */
- #define __size_t__	/* BeOS */
- #define __SIZE_T__	/* Cray Unicos/Mk */
- #define _SIZE_T
-@@ -200,6 +204,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
- #define ___int_size_t_h
- #define _GCC_SIZE_T
- #define _SIZET_
-+#define __DEFINED_size_t /* musl */
- #if (defined (__FreeBSD__) && (__FreeBSD__ >= 5)) \
-   || defined(__DragonFly__) \
-   || defined(__FreeBSD_kernel__)
-@@ -235,6 +240,7 @@ typedef long ssize_t;
- #endif /* _SIZE_T */
- #endif /* __SIZE_T__ */
- #endif /* __size_t__ */
-+#endif /* __DEFINED_size_t */
- #undef	__need_size_t
- #endif /* _STDDEF_H or __need_size_t.  */
- 
-@@ -264,6 +270,7 @@ typedef long ssize_t;
- #ifndef ___int_wchar_t_h
- #ifndef __INT_WCHAR_T_H
- #ifndef _GCC_WCHAR_T
-+#ifndef __DEFINED_wchar_t /* musl */
- #define __wchar_t__	/* BeOS */
- #define __WCHAR_T__	/* Cray Unicos/Mk */
- #define _WCHAR_T
-@@ -279,6 +286,7 @@ typedef long ssize_t;
- #define __INT_WCHAR_T_H
- #define _GCC_WCHAR_T
- #define _WCHAR_T_DECLARED
-+#define __DEFINED_wchar_t /* musl */
- 
- /* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
-    instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other
-@@ -344,6 +352,7 @@ typedef __WCHAR_TYPE__ wchar_t;
- #endif
- #endif /* __WCHAR_T__ */
- #endif /* __wchar_t__ */
-+#endif /* __DEFINED_wchar_t musl */
- #undef	__need_wchar_t
- #endif /* _STDDEF_H or __need_wchar_t.  */
- 
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0036-fix-segmentation-fault-in-precompiled-header-generat.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0036-fix-segmentation-fault-in-precompiled-header-generat.patch
deleted file mode 100644
index c4ce5db..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0036-fix-segmentation-fault-in-precompiled-header-generat.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-From a9bb29a4e9b478f9b126e483467ce9031c33fe4f Mon Sep 17 00:00:00 2001
-From: Juro Bystricky <juro.bystricky@intel.com>
-Date: Mon, 19 Mar 2018 22:31:20 -0700
-Subject: [PATCH 36/40] fix segmentation fault in precompiled header generation
-
-Prevent a segmentation fault which occurs when using incorrect
-structure trying to access name of some named operators, such as
-CPP_NOT, CPP_AND etc. "token->val.node.spelling" cannot be used in
-those cases, as is may not be initialized at all.
-
-[YOCTO #11738]
-
-Upstream-Status: Pending
-
-Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- libcpp/lex.c | 26 +++++++++++++++++++++-----
- 1 file changed, 21 insertions(+), 5 deletions(-)
-
-diff --git a/libcpp/lex.c b/libcpp/lex.c
-index 37c365a3560..63480048db6 100644
---- a/libcpp/lex.c
-+++ b/libcpp/lex.c
-@@ -3279,11 +3279,27 @@ cpp_spell_token (cpp_reader *pfile, const cpp_token *token,
-     spell_ident:
-     case SPELL_IDENT:
-       if (forstring)
--	{
--	  memcpy (buffer, NODE_NAME (token->val.node.spelling),
--		  NODE_LEN (token->val.node.spelling));
--	  buffer += NODE_LEN (token->val.node.spelling);
--	}
-+        {
-+          if (token->type == CPP_NAME)
-+            {
-+              memcpy (buffer, NODE_NAME (token->val.node.spelling),
-+                    NODE_LEN (token->val.node.spelling));
-+              buffer += NODE_LEN (token->val.node.spelling);
-+              break;
-+            }
-+          /* NAMED_OP, cannot use node.spelling */
-+          if (token->flags & NAMED_OP)
-+            {
-+              const char *str = cpp_named_operator2name (token->type);
-+              if (str)
-+                {
-+                  size_t len = strlen(str);
-+                  memcpy(buffer, str, len);
-+                  buffer += len;
-+                }
-+              break;
-+            }
-+        }
-       else
- 	buffer = _cpp_spell_ident_ucns (buffer, token->val.node.node);
-       break;
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0037-Fix-for-testsuite-failure.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0037-Fix-for-testsuite-failure.patch
deleted file mode 100644
index 70999dd..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0037-Fix-for-testsuite-failure.patch
+++ /dev/null
@@ -1,258 +0,0 @@
-From 1e5c1ef34d92b4157e1a24ca743d45f3a7375a5e Mon Sep 17 00:00:00 2001
-From: RAGHUNATH LOLUR <raghunath.lolur@kpit.com>
-Date: Wed, 6 Dec 2017 22:52:26 -0800
-Subject: [PATCH 37/40] Fix for testsuite failure
-
-2017-11-16  Raghunath Lolur  <raghunath.lolur@kpit.com>
-
-	* gcc.dg/pr56275.c: If SSE is disabled, ensure that
-	"-mfpmath" is not set to use SSE. Set "-mfpmath=387".
-	* gcc.dg/pr68306.c: Likewise
-	* gcc.dg/pr68306-2.c: Likewise
-	* gcc.dg/pr68306-3.c: Likewise
-	* gcc.dg/pr69634.c: Likewise
-	* gcc.target/i386/amd64-abi-1.c: Likewise
-	* gcc.target/i386/funcspec-6.c: Likewise
-	* gcc.target/i386/interrupt-387-err-1.c: Likewise
-	* gcc.target/i386/isa-14.c: Likewise
-	* gcc.target/i386/pr44948-2b.c: Likewise
-	* gcc.target/i386/pr53425-1.c: Likewise
-	* gcc.target/i386/pr53425-2.c: Likewise
-	* gcc.target/i386/pr55247.c: Likewise
-	* gcc.target/i386/pr59644.c: Likewise
-	* gcc.target/i386/pr62120.c: Likewise
-	* gcc.target/i386/pr70467-1.c: Likewise
-	* gcc.target/i386/warn-vect-op-1.c: Likewise
-
-If -Wall, -Werror are used during compilation various test cases fail
-to compile.
-
-If SSE is disabled, be sure to -mfpmath=387 to resolve this.
-
-This patch removes the changes to Changelog from the original patch.
-This will help us avoid conflicts.
-
-Upstream-Status: Pending
-
-Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
----
- gcc/testsuite/gcc.dg/pr56275.c                      | 2 +-
- gcc/testsuite/gcc.dg/pr68306-2.c                    | 2 +-
- gcc/testsuite/gcc.dg/pr68306-3.c                    | 2 +-
- gcc/testsuite/gcc.dg/pr68306.c                      | 2 +-
- gcc/testsuite/gcc.dg/pr69634.c                      | 2 +-
- gcc/testsuite/gcc.target/i386/amd64-abi-1.c         | 2 +-
- gcc/testsuite/gcc.target/i386/funcspec-6.c          | 1 +
- gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | 2 +-
- gcc/testsuite/gcc.target/i386/isa-14.c              | 2 +-
- gcc/testsuite/gcc.target/i386/pr44948-2b.c          | 2 +-
- gcc/testsuite/gcc.target/i386/pr53425-1.c           | 2 +-
- gcc/testsuite/gcc.target/i386/pr53425-2.c           | 2 +-
- gcc/testsuite/gcc.target/i386/pr55247.c             | 2 +-
- gcc/testsuite/gcc.target/i386/pr59644.c             | 2 +-
- gcc/testsuite/gcc.target/i386/pr62120.c             | 2 +-
- gcc/testsuite/gcc.target/i386/pr70467-1.c           | 2 +-
- gcc/testsuite/gcc.target/i386/warn-vect-op-1.c      | 2 +-
- 17 files changed, 17 insertions(+), 16 deletions(-)
-
-diff --git a/gcc/testsuite/gcc.dg/pr56275.c b/gcc/testsuite/gcc.dg/pr56275.c
-index b901bb2b199..a4f6c95e1a1 100644
---- a/gcc/testsuite/gcc.dg/pr56275.c
-+++ b/gcc/testsuite/gcc.dg/pr56275.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O2" } */
--/* { dg-additional-options "-mno-sse" { target { i?86-*-* x86_64-*-* } } } */
-+/* { dg-additional-options "-mno-sse -mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */
- 
- typedef long long v2tw __attribute__ ((vector_size (2 * sizeof (long long))));
- 
-diff --git a/gcc/testsuite/gcc.dg/pr68306-2.c b/gcc/testsuite/gcc.dg/pr68306-2.c
-index 4672ebe7987..2a368c484b6 100644
---- a/gcc/testsuite/gcc.dg/pr68306-2.c
-+++ b/gcc/testsuite/gcc.dg/pr68306-2.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O3" } */
--/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
-+/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
- 
- struct {
-     int tz_minuteswest;
-diff --git a/gcc/testsuite/gcc.dg/pr68306-3.c b/gcc/testsuite/gcc.dg/pr68306-3.c
-index f5a8c102cf8..df3390c64c2 100644
---- a/gcc/testsuite/gcc.dg/pr68306-3.c
-+++ b/gcc/testsuite/gcc.dg/pr68306-3.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O3" } */
--/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
-+/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
- /* { dg-additional-options "-mno-altivec -mno-vsx" { target powerpc*-*-* } } */
- 
- extern void fn2();
-diff --git a/gcc/testsuite/gcc.dg/pr68306.c b/gcc/testsuite/gcc.dg/pr68306.c
-index 54e5b40f221..0813389e2c1 100644
---- a/gcc/testsuite/gcc.dg/pr68306.c
-+++ b/gcc/testsuite/gcc.dg/pr68306.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O3" } */
--/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
-+/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
- 
- enum powerpc_pmc_type { PPC_PMC_IBM };
- struct {
-diff --git a/gcc/testsuite/gcc.dg/pr69634.c b/gcc/testsuite/gcc.dg/pr69634.c
-index 60a56149463..bcc23f9ccd6 100644
---- a/gcc/testsuite/gcc.dg/pr69634.c
-+++ b/gcc/testsuite/gcc.dg/pr69634.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile } */
- /* { dg-options "-O2 -fno-dce -fschedule-insns -fno-tree-vrp -fcompare-debug -Wno-psabi" } */
--/* { dg-additional-options "-mno-sse" { target i?86-*-* x86_64-*-* } } */
-+/* { dg-additional-options "-mno-sse -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
- /* { dg-require-effective-target scheduling } */
- 
- typedef unsigned short u16;
-diff --git a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
-index 69fde57bf06..7f1f1c03edf 100644
---- a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
-+++ b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile { target { ! ia32 } } } */
--/* { dg-options "-mno-sse" } */
-+/* { dg-options "-mno-sse -mfpmath=387" } */
- /* { dg-additional-options "-mabi=sysv" { target *-*-mingw* } } */
- 
- double foo(void) { return 0; }	/* { dg-error "SSE disabled" } */
-diff --git a/gcc/testsuite/gcc.target/i386/funcspec-6.c b/gcc/testsuite/gcc.target/i386/funcspec-6.c
-index ea896b7ebfd..bf15569b826 100644
---- a/gcc/testsuite/gcc.target/i386/funcspec-6.c
-+++ b/gcc/testsuite/gcc.target/i386/funcspec-6.c
-@@ -1,6 +1,7 @@
- /* Test whether all of the 64-bit function specific options are accepted
-    without error.  */
- /* { dg-do compile { target { ! ia32 } } } */
-+/* { dg-additional-options "-mfpmath=387" } */
- 
- #include "funcspec-56.inc"
- 
-diff --git a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
-index 3fbdc881dda..6b4d9d1252a 100644
---- a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
-+++ b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile } */
--/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387" } */
-+/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387 -mfpmath=387" } */
- 
- typedef unsigned int uword_t __attribute__ ((mode (__word__)));
- 
-diff --git a/gcc/testsuite/gcc.target/i386/isa-14.c b/gcc/testsuite/gcc.target/i386/isa-14.c
-index 5d49e6e77fe..1de2db92bdd 100644
---- a/gcc/testsuite/gcc.target/i386/isa-14.c
-+++ b/gcc/testsuite/gcc.target/i386/isa-14.c
-@@ -1,5 +1,5 @@
- /* { dg-do run } */
--/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse" } */
-+/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse -mfpmath=387" } */
- 
- extern void abort (void);
- 
-diff --git a/gcc/testsuite/gcc.target/i386/pr44948-2b.c b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
-index fa1769b62fb..f79fb12726f 100644
---- a/gcc/testsuite/gcc.target/i386/pr44948-2b.c
-+++ b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile } */
--/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic" } */
-+/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic -mfpmath=387" } */
- 
- struct A
- { 
-diff --git a/gcc/testsuite/gcc.target/i386/pr53425-1.c b/gcc/testsuite/gcc.target/i386/pr53425-1.c
-index 2e89ff7d81d..6339bf6b736 100644
---- a/gcc/testsuite/gcc.target/i386/pr53425-1.c
-+++ b/gcc/testsuite/gcc.target/i386/pr53425-1.c
-@@ -1,6 +1,6 @@
- /* PR target/53425 */
- /* { dg-do compile { target { ! ia32 } } } */
--/* { dg-options "-O2 -mno-sse" } */
-+/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
- /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
- 
- typedef double __v2df __attribute__ ((__vector_size__ (16)));
-diff --git a/gcc/testsuite/gcc.target/i386/pr53425-2.c b/gcc/testsuite/gcc.target/i386/pr53425-2.c
-index 61f6283dbe9..2c5a55f0ac3 100644
---- a/gcc/testsuite/gcc.target/i386/pr53425-2.c
-+++ b/gcc/testsuite/gcc.target/i386/pr53425-2.c
-@@ -1,6 +1,6 @@
- /* PR target/53425 */
- /* { dg-do compile { target { ! ia32 } } } */
--/* { dg-options "-O2 -mno-sse" } */
-+/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
- /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
- 
- typedef float __v2sf __attribute__ ((__vector_size__ (8)));
-diff --git a/gcc/testsuite/gcc.target/i386/pr55247.c b/gcc/testsuite/gcc.target/i386/pr55247.c
-index 23366d0909d..9810e3abb76 100644
---- a/gcc/testsuite/gcc.target/i386/pr55247.c
-+++ b/gcc/testsuite/gcc.target/i386/pr55247.c
-@@ -1,6 +1,6 @@
- /* { dg-do compile { target { ! ia32 } } } */
- /* { dg-require-effective-target maybe_x32 } */
--/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long" } */
-+/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long -mfpmath=387" } */
- 
- typedef unsigned int uint32_t;
- typedef uint32_t Elf32_Word;
-diff --git a/gcc/testsuite/gcc.target/i386/pr59644.c b/gcc/testsuite/gcc.target/i386/pr59644.c
-index 96006b3e338..4287e4538bf 100644
---- a/gcc/testsuite/gcc.target/i386/pr59644.c
-+++ b/gcc/testsuite/gcc.target/i386/pr59644.c
-@@ -1,6 +1,6 @@
- /* PR target/59644 */
- /* { dg-do run { target lp64 } } */
--/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone" } */
-+/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone -mfpmath=387" } */
- 
- /* This test uses __builtin_trap () instead of e.g. abort,
-    because due to -mpreferred-stack-boundary=3 it should not call
-diff --git a/gcc/testsuite/gcc.target/i386/pr62120.c b/gcc/testsuite/gcc.target/i386/pr62120.c
-index bfb8c4703eb..ed04cf181f3 100644
---- a/gcc/testsuite/gcc.target/i386/pr62120.c
-+++ b/gcc/testsuite/gcc.target/i386/pr62120.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile } */
--/* { dg-options "-mno-sse" } */
-+/* { dg-options "-mno-sse -mfpmath=387" } */
- 
- void foo ()
- {
-diff --git a/gcc/testsuite/gcc.target/i386/pr70467-1.c b/gcc/testsuite/gcc.target/i386/pr70467-1.c
-index 4e112c88d07..bcfb396a68d 100644
---- a/gcc/testsuite/gcc.target/i386/pr70467-1.c
-+++ b/gcc/testsuite/gcc.target/i386/pr70467-1.c
-@@ -1,6 +1,6 @@
- /* PR rtl-optimization/70467 */
- /* { dg-do compile } */
--/* { dg-options "-O2 -mno-sse" } */
-+/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
- 
- void foo (unsigned long long *);
- 
-diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
-index 6cda1534311..26e37f5b8ba 100644
---- a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
-+++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
-@@ -1,5 +1,5 @@
- /* { dg-do compile { target { ! ia32 } } }  */
--/* { dg-options "-mno-sse -Wvector-operation-performance" }  */
-+/* { dg-options "-mno-sse -Wvector-operation-performance -mfpmath=387" }  */
- #define vector(elcount, type)  \
- __attribute__((vector_size((elcount)*sizeof(type)))) type
- 
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0038-Re-introduce-spe-commandline-options.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0038-Re-introduce-spe-commandline-options.patch
deleted file mode 100644
index 8de8892..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0038-Re-introduce-spe-commandline-options.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From f0bea96434ac478c3cff8c29dd97cccfac5b35e3 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Wed, 6 Jun 2018 12:10:22 -0700
-Subject: [PATCH 38/40] Re-introduce spe commandline options
-
-This should ensure that we keep accepting
-spe options
-
-Upstream-Status: Inappropriate [SPE port is removed from rs600 port]
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/rs6000/rs6000.opt | 12 ++++++++++++
- 1 file changed, 12 insertions(+)
-
-diff --git a/gcc/config/rs6000/rs6000.opt b/gcc/config/rs6000/rs6000.opt
-index ace8a477550..d6a8f825d88 100644
---- a/gcc/config/rs6000/rs6000.opt
-+++ b/gcc/config/rs6000/rs6000.opt
-@@ -365,6 +365,18 @@ mdebug=
- Target RejectNegative Joined
- -mdebug=	Enable debug output.
- 
-+mspe
-+Target Var(rs6000_spe) Save
-+Generate SPE SIMD instructions on E500.
-+
-+mabi=spe
-+Target RejectNegative Var(rs6000_spe_abi) Save
-+Use the SPE ABI extensions.
-+
-+mabi=no-spe
-+Target RejectNegative Var(rs6000_spe_abi, 0)
-+Do not use the SPE ABI extensions.
-+
- mabi=altivec
- Target RejectNegative Var(rs6000_altivec_abi) Save
- Use the AltiVec ABI extensions.
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0039-riscv-Disable-multilib-for-OE.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0039-riscv-Disable-multilib-for-OE.patch
deleted file mode 100644
index f7b222e..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0039-riscv-Disable-multilib-for-OE.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 24f74444c00c6c9bf076fb002614ebf6dec31f1a Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Fri, 28 Dec 2018 09:59:53 -0800
-Subject: [PATCH 39/40] riscv: Disable multilib for OE
-
-Upstream-Status: Inappropriate [OE-Specific]
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- gcc/config/riscv/t-linux | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/gcc/config/riscv/t-linux b/gcc/config/riscv/t-linux
-index 216d2776a18..e4d817621fc 100644
---- a/gcc/config/riscv/t-linux
-+++ b/gcc/config/riscv/t-linux
-@@ -1,3 +1,5 @@
- # Only XLEN and ABI affect Linux multilib dir names, e.g. /lib32/ilp32d/
--MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
--MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
-+#MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
-+MULTILIB_DIRNAMES := . .
-+#MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
-+MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0040-powerpc-powerpc64-Add-support-for-musl-ldso.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0040-powerpc-powerpc64-Add-support-for-musl-ldso.patch
deleted file mode 100644
index 9fba163..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-8.3/0040-powerpc-powerpc64-Add-support-for-musl-ldso.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 4bd0a3866f302725cb4eddcaddaeece64900c42f Mon Sep 17 00:00:00 2001
-From: Serhey Popovych <serhe.popovych@gmail.com>
-Date: Tue, 11 Dec 2018 02:30:50 -0500
-Subject: [PATCH 40/40] powerpc/powerpc64: Add support for musl ldso
-
-Upstream-Status: Inappropriate [OE-Specific]
-
-Signed-off-by: Serhey Popovych <serhe.popovych@gmail.com>
----
- gcc/config/rs6000/linux64.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
-index 619e113e2b8..ee8b44f9374 100644
---- a/gcc/config/rs6000/linux64.h
-+++ b/gcc/config/rs6000/linux64.h
-@@ -421,9 +421,9 @@ extern int dot_symbols;
- #endif
- 
- #define MUSL_DYNAMIC_LINKER32 \
--  "/lib/ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
-+  SYSTEMLIBS_DIR "ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
- #define MUSL_DYNAMIC_LINKER64 \
--  "/lib/ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
-+  SYSTEMLIBS_DIR "ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
- 
- #define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
- #define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
--- 
-2.21.0
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-8.2.bb
deleted file mode 100644
index 8987a4c..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-8.2.bb
+++ /dev/null
@@ -1,5 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-cross-canadian.inc
-
-
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-8.3.bb
deleted file mode 100644
index 8987a4c..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-8.3.bb
+++ /dev/null
@@ -1,5 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-cross-canadian.inc
-
-
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-8.2.bb
deleted file mode 100644
index 0a8aa75..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-8.2.bb
+++ /dev/null
@@ -1,3 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-cross.inc
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-8.3.bb
deleted file mode 100644
index 0a8aa75..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-8.3.bb
+++ /dev/null
@@ -1,3 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-cross.inc
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-8.2.bb
deleted file mode 100644
index 0a9f98a..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-8.2.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require recipes-devtools/gcc/gcc-cross_${PV}.bb
-require recipes-devtools/gcc/gcc-crosssdk.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-8.3.bb
deleted file mode 100644
index 0a9f98a..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-8.3.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require recipes-devtools/gcc/gcc-cross_${PV}.bb
-require recipes-devtools/gcc/gcc-crosssdk.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-8.2.bb
deleted file mode 100644
index 8f41c11..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-8.2.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-runtime.inc
-
-FILES_libgomp-dev += "\
-    ${libdir}/gcc/${TARGET_SYS}/${BINV}/include/openacc.h \
-"
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-8.3.bb
deleted file mode 100644
index 8f41c11..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-8.3.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-runtime.inc
-
-FILES_libgomp-dev += "\
-    ${libdir}/gcc/${TARGET_SYS}/${BINV}/include/openacc.h \
-"
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-8.2.bb
deleted file mode 100644
index 03769bf..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-8.2.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-sanitizers.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-8.3.bb
deleted file mode 100644
index 03769bf..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-8.3.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-sanitizers.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-8.2.bb
deleted file mode 100644
index b890fa3..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-8.2.bb
+++ /dev/null
@@ -1,4 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-source.inc
-
-EXCLUDE_FROM_WORLD = "1"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-8.3.bb
deleted file mode 100644
index b890fa3..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-8.3.bb
+++ /dev/null
@@ -1,4 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-source.inc
-
-EXCLUDE_FROM_WORLD = "1"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-8.2.bb
deleted file mode 100644
index 51a0877..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-8.2.bb
+++ /dev/null
@@ -1,15 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-target.inc
-require recipes-devtools/gcc/gcc-arm-common.inc
-
-# Building with thumb enabled on armv4t armv5t fails with
-# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7438:(.text.unlikely+0x2fa): relocation truncated to fit: R_ARM_THM_CALL against symbol `fancy_abort(char const*, int, char const*)' defined in .glue_7 section in linker stubs
-# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7442:(.text.unlikely+0x318): additional relocation overflows omitted from the output
-ARM_INSTRUCTION_SET_armv4 = "arm"
-ARM_INSTRUCTION_SET_armv5 = "arm"
-
-ARMFPARCHEXT_armv6 = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
-ARMFPARCHEXT_armv7a = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
-ARMFPARCHEXT_armv7ve = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
-
-BBCLASSEXTEND = "nativesdk"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-8.3.bb
deleted file mode 100644
index 51a0877..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-8.3.bb
+++ /dev/null
@@ -1,15 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/gcc-target.inc
-require recipes-devtools/gcc/gcc-arm-common.inc
-
-# Building with thumb enabled on armv4t armv5t fails with
-# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7438:(.text.unlikely+0x2fa): relocation truncated to fit: R_ARM_THM_CALL against symbol `fancy_abort(char const*, int, char const*)' defined in .glue_7 section in linker stubs
-# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7442:(.text.unlikely+0x318): additional relocation overflows omitted from the output
-ARM_INSTRUCTION_SET_armv4 = "arm"
-ARM_INSTRUCTION_SET_armv5 = "arm"
-
-ARMFPARCHEXT_armv6 = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
-ARMFPARCHEXT_armv7a = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
-ARMFPARCHEXT_armv7ve = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
-
-BBCLASSEXTEND = "nativesdk"
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-8.2.bb
deleted file mode 100644
index 3e07c71..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-8.2.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/libgcc-initial.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-8.3.bb
deleted file mode 100644
index 3e07c71..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-8.3.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/libgcc-initial.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-8.2.bb
deleted file mode 100644
index 340300c..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-8.2.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/libgcc.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-8.3.bb
deleted file mode 100644
index 340300c..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-8.3.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/libgcc.inc
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-8.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-8.2.bb
deleted file mode 100644
index 4e5688e..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-8.2.bb
+++ /dev/null
@@ -1,3 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/libgfortran.inc
-
diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-8.3.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-8.3.bb
deleted file mode 100644
index 4e5688e..0000000
--- a/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-8.3.bb
+++ /dev/null
@@ -1,3 +0,0 @@
-require recipes-devtools/gcc/gcc-${PV}.inc
-require recipes-devtools/gcc/libgfortran.inc
-
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11
  2021-01-06 12:22 [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11 Sumit Garg
  2021-01-06 12:22 ` [meta-arm][PATCH 2/2] arm-toolchain: Drop support for GCC 8.x toolchain Sumit Garg
@ 2021-01-06 23:19 ` Ross Burton
  2021-01-07  4:47   ` Sumit Garg
  2021-01-08 14:47 ` Jon Mason
  2 siblings, 1 reply; 5+ messages in thread
From: Ross Burton @ 2021-01-06 23:19 UTC (permalink / raw)
  To: Sumit Garg
  Cc: meta-arm, Jon Mason, Ross Burton, Denys Dmytriyenko,
	Nicolas Dechesne, daniel.thompson

Thanks Sumit!  I've just ran this through the CI using it to build
qemuarm64 and n1sdp and it all built fine.

Cheers,
Ross

On Wed, 6 Jan 2021 at 12:23, Sumit Garg <sumit.garg@linaro.org> wrote:
>
> Add support for GNU-A toolchain version: 10.2-2020.11.
>
> Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
> ---
>  .../recipes-devtools/gcc/gcc-arm-10.2.inc     | 121 ++++++
>  ...0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch |  39 ++
>  ...0001-lib-Remove-i-86-march-overrides.patch | 113 ++++++
>  .../0002-gcc-poison-system-directories.patch  | 200 ++++++++++
>  ...-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch |  70 ++++
>  .../0004-64-bit-multilib-hack.patch           | 116 ++++++
>  .../gcc-arm-10.2/0005-optional-libstdc.patch  | 122 ++++++
>  .../0006-COLLECT_GCC_OPTIONS.patch            |  35 ++
>  ...ts.h-in-B-instead-of-S-and-t-oe-in-B.patch |  92 +++++
>  .../0008-fortran-cross-compile-hack.patch     |  43 +++
>  .../gcc-arm-10.2/0009-cpp-honor-sysroot.patch |  51 +++
>  .../0010-MIPS64-Default-to-N64-ABI.patch      |  54 +++
>  ...AMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch | 243 ++++++++++++
>  ...gcc-Fix-argument-list-too-long-error.patch |  41 ++
>  .../gcc/gcc-arm-10.2/0013-Disable-sdt.patch   | 110 ++++++
>  .../gcc/gcc-arm-10.2/0014-libtool.patch       |  39 ++
>  ...s-fix-v4bx-to-linker-to-support-EABI.patch |  40 ++
>  ...-config-files-from-B-instead-of-usin.patch |  99 +++++
>  ...ir-from-.la-which-usually-points-to-.patch |  28 ++
>  .../gcc/gcc-arm-10.2/0018-export-CPP.patch    |  50 +++
>  ...e-target-gcc-headers-can-be-included.patch |  57 +++
>  ...t-directory-during-relink-if-inst_pr.patch |  35 ++
>  ...IR-replacement-instead-of-hardcoding.patch |  26 ++
>  ...22-aarch64-Add-support-for-musl-ldso.patch |  25 ++
>  ...-fix-libcc1-s-install-path-and-rpath.patch |  51 +++
>  ...le-sysroot-support-for-nativesdk-gcc.patch | 349 ++++++++++++++++++
>  ...sroot-gcc-version-specific-dirs-with.patch |  99 +++++
>  ...ous-_FOR_BUILD-and-related-variables.patch | 134 +++++++
>  ...027-nios2-Define-MUSL_DYNAMIC_LINKER.patch |  25 ++
>  ...d-to-link-commandline-for-musl-targe.patch |  84 +++++
>  ...using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch |  26 ++
>  .../0030-sync-gcc-stddef.h-with-musl.patch    |  88 +++++
>  ...-fault-in-precompiled-header-generat.patch |  57 +++
>  .../0032-Fix-for-testsuite-failure.patch      | 255 +++++++++++++
>  ...Re-introduce-spe-commandline-options.patch |  38 ++
>  ...as-for-__cpu_indicator_init-instead-.patch |  83 +++++
>  ...s-Do-not-use-__LINE__-for-maintainin.patch | 182 +++++++++
>  ...ngw32-Enable-operation_not_supported.patch |  26 ++
>  ...omic-Do-not-enforce-march-on-aarch64.patch |  42 +++
>  .../gcc/gcc-cross-canadian_arm-10.2.bb        |   5 +
>  .../gcc/gcc-cross_arm-10.2.bb                 |   3 +
>  .../gcc/gcc-crosssdk_arm-10.2.bb              |   2 +
>  .../gcc/gcc-runtime_arm-10.2.bb               |   2 +
>  .../gcc/gcc-sanitizers_arm-10.2.bb            |   7 +
>  .../gcc/gcc-source_arm-10.2.bb                |   4 +
>  .../recipes-devtools/gcc/gcc_arm-10.2.bb      |  15 +
>  .../gcc/libgcc-initial_arm-10.2.bb            |   5 +
>  .../recipes-devtools/gcc/libgcc_arm-10.2.bb   |   5 +
>  .../gcc/libgfortran_arm-10.2.bb               |   3 +
>  49 files changed, 3439 insertions(+)
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
>
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
> new file mode 100644
> index 0000000..2a82293
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
> @@ -0,0 +1,121 @@
> +require recipes-devtools/gcc/gcc-common.inc
> +
> +# Third digit in PV should be incremented after a minor release
> +
> +PV = "arm-10.2"
> +CVE_VERSION = "10.2"
> +
> +# BINV should be incremented to a revision after a minor gcc release
> +
> +BINV = "10.2.1"
> +
> +MMYY = "20.11"
> +RELEASE = "20${MMYY}"
> +PR = "r${RELEASE}"
> +
> +FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc-arm-10.2:${FILE_DIRNAME}/gcc-arm-10.2/backport:"
> +
> +DEPENDS =+ "mpfr gmp libmpc zlib flex-native"
> +NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native flex-native"
> +
> +LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
> +
> +LIC_FILES_CHKSUM = "\
> +    file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
> +    file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
> +    file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
> +    file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
> +    file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \
> +"
> +
> +BASEURI ?= "https://developer.arm.com/-/media/Files/downloads/gnu-a/10.2-2020.11/srcrel/gcc-arm-src-snapshot-10.2-2020.11.tar.xz"
> +SRC_URI = "\
> +           ${BASEURI} \
> +           file://0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \
> +           file://0002-gcc-poison-system-directories.patch \
> +           file://0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch \
> +           file://0004-64-bit-multilib-hack.patch \
> +           file://0005-optional-libstdc.patch \
> +           file://0006-COLLECT_GCC_OPTIONS.patch \
> +           file://0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \
> +           file://0008-fortran-cross-compile-hack.patch \
> +           file://0009-cpp-honor-sysroot.patch \
> +           file://0010-MIPS64-Default-to-N64-ABI.patch \
> +           file://0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \
> +           file://0012-gcc-Fix-argument-list-too-long-error.patch \
> +           file://0013-Disable-sdt.patch \
> +           file://0014-libtool.patch \
> +           file://0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch \
> +           file://0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch \
> +           file://0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch \
> +           file://0018-export-CPP.patch \
> +           file://0019-Ensure-target-gcc-headers-can-be-included.patch \
> +           file://0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch \
> +           file://0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch \
> +           file://0022-aarch64-Add-support-for-musl-ldso.patch \
> +           file://0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch \
> +           file://0024-handle-sysroot-support-for-nativesdk-gcc.patch \
> +           file://0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch \
> +           file://0026-Fix-various-_FOR_BUILD-and-related-variables.patch \
> +           file://0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch \
> +           file://0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch \
> +           file://0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \
> +           file://0030-sync-gcc-stddef.h-with-musl.patch \
> +           file://0031-fix-segmentation-fault-in-precompiled-header-generat.patch \
> +           file://0032-Fix-for-testsuite-failure.patch \
> +           file://0033-Re-introduce-spe-commandline-options.patch \
> +           file://0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \
> +           file://0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch \
> +           file://0036-mingw32-Enable-operation_not_supported.patch \
> +           file://0037-libatomic-Do-not-enforce-march-on-aarch64.patch \
> +           file://0001-lib-Remove-i-86-march-overrides.patch \
> +"
> +SRC_URI[md5sum] = "ce6ebec573e3e52cdb770c8f822aad17"
> +
> +S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-arm-src-snapshot-10.2-2020.11"
> +# For dev release snapshotting
> +#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${RELEASE}"
> +#B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
> +
> +# Language Overrides
> +FORTRAN = ""
> +JAVA = ""
> +
> +SSP ?= "--disable-libssp"
> +SSP_mingw32 = "--enable-libssp"
> +
> +EXTRA_OECONF_BASE = "\
> +    ${SSP} \
> +    --enable-libitm \
> +    --enable-lto \
> +    --disable-bootstrap \
> +    --with-system-zlib \
> +    ${@'--with-linker-hash-style=${LINKER_HASH_STYLE}' if '${LINKER_HASH_STYLE}' else ''} \
> +    --enable-linker-build-id \
> +    --with-ppl=no \
> +    --with-cloog=no \
> +    --enable-checking=release \
> +    --enable-cheaders=c_global \
> +    --without-isl \
> +"
> +
> +EXTRA_OECONF_INITIAL = "\
> +    --disable-libgomp \
> +    --disable-libitm \
> +    --disable-libquadmath \
> +    --with-system-zlib \
> +    --disable-lto \
> +    --disable-plugin \
> +    --enable-linker-build-id \
> +    --enable-decimal-float=no \
> +    --without-isl \
> +    --disable-libssp \
> +"
> +
> +EXTRA_OECONF_append_aarchilp32 = " --with-abi=ilp32"
> +
> +EXTRA_OECONF_PATHS = "\
> +    --with-gxx-include-dir=/not/exist{target_includedir}/c++/${BINV} \
> +    --with-sysroot=/not/exist \
> +    --with-build-sysroot=${STAGING_DIR_TARGET} \
> +"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
> new file mode 100644
> index 0000000..82ae9f8
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
> @@ -0,0 +1,39 @@
> +From f2a5dc3bc7e5727d6bf77e1c6e8a31a6f000883d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 08:37:11 +0400
> +Subject: [PATCH] gcc-4.3.1: ARCH_FLAGS_FOR_TARGET
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [embedded specific]
> +---
> + configure    | 2 +-
> + configure.ac | 2 +-
> + 2 files changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/configure b/configure
> +index 4cc938ebb7d..226a64939d1 100755
> +--- a/configure
> ++++ b/configure
> +@@ -7722,7 +7722,7 @@ fi
> + # for target_alias and gcc doesn't manage it consistently.
> + target_configargs="--cache-file=./config.cache ${target_configargs}"
> +
> +-FLAGS_FOR_TARGET=
> ++FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
> + case " $target_configdirs " in
> +  *" newlib "*)
> +   case " $target_configargs " in
> +diff --git a/configure.ac b/configure.ac
> +index c78d9cbea62..f024f4bac9b 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -3227,7 +3227,7 @@ fi
> + # for target_alias and gcc doesn't manage it consistently.
> + target_configargs="--cache-file=./config.cache ${target_configargs}"
> +
> +-FLAGS_FOR_TARGET=
> ++FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
> + case " $target_configdirs " in
> +  *" newlib "*)
> +   case " $target_configargs " in
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
> new file mode 100644
> index 0000000..3f04e12
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
> @@ -0,0 +1,113 @@
> +From 3776789cde95916f95deef48acf9532b0ebf91ae Mon Sep 17 00:00:00 2001
> +From: Nathan Rossi <nathan@nathanrossi.com>
> +Date: Tue, 15 Dec 2020 11:43:36 +1000
> +Subject: [PATCH] lib*: Remove i*86 march overrides
> +
> +OE does not pass the '--with-arch' option to gccs configure, as such
> +some gcc-runtime libraries try to override the value of '-march' and
> +'-mtune' which OE already provides. This causes conflicts with other
> +i*86 instruction/architecture flags (e.g. -msse* and -mfpmath=*).
> +Additionally this caused the following libraries to be built with less
> +optimized tune configurations.
> +
> +Upstream suggests that this should be detecting or otherwise checking if
> +the target supports the desired functionality before overriding.
> +
> +    https://gcc.gnu.org/legacy-ml/gcc-patches/2016-04/msg01344.html
> +
> +libatomic also overrides the '-march' specifically for IFUNC objects.
> +OE already supplies the correct march flag, so remove setting.
> +
> +Upstream-Status: Inappropriate [OE Specific]
> +Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
> +---
> + libatomic/Makefile.am   | 1 -
> + libatomic/Makefile.in   | 1 -
> + libatomic/configure.tgt | 9 ---------
> + libgomp/configure.tgt   | 8 --------
> + libitm/configure.tgt    | 9 ---------
> + 5 files changed, 28 deletions(-)
> +
> +diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
> +index ac1ca64587..5aa16e0699 100644
> +--- a/libatomic/Makefile.am
> ++++ b/libatomic/Makefile.am
> +@@ -133,7 +133,6 @@ libatomic_la_LIBADD += $(foreach s,$(SIZES),$(addsuffix _$(s)_1_.lo,$(SIZEOBJS))
> + libatomic_la_LIBADD += $(addsuffix _8_2_.lo,$(SIZEOBJS))
> + endif
> + if ARCH_I386
> +-IFUNC_OPTIONS      = -march=i586
> + libatomic_la_LIBADD += $(addsuffix _8_1_.lo,$(SIZEOBJS))
> + endif
> + if ARCH_X86_64
> +diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
> +index 97df2d7ff0..82c511d420 100644
> +--- a/libatomic/Makefile.in
> ++++ b/libatomic/Makefile.in
> +@@ -432,7 +432,6 @@ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix \
> +       _$(s)_.lo,$(SIZEOBJS))) $(am__append_1) $(am__append_2) \
> +       $(am__append_3) $(am__append_4)
> + @ARCH_ARM_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv7-a+fp -DHAVE_KERNEL64
> +-@ARCH_I386_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=i586
> + @ARCH_X86_64_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -mcx16
> + libatomic_convenience_la_SOURCES = $(libatomic_la_SOURCES)
> + libatomic_convenience_la_LIBADD = $(libatomic_la_LIBADD)
> +diff --git a/libatomic/configure.tgt b/libatomic/configure.tgt
> +index 5dd0926d20..3cc41773c3 100644
> +--- a/libatomic/configure.tgt
> ++++ b/libatomic/configure.tgt
> +@@ -82,15 +82,6 @@ case "${target_cpu}" in
> +       ;;
> +
> +   i[3456]86)
> +-      case " ${CC} ${CFLAGS} " in
> +-        *" -m64 "*|*" -mx32 "*)
> +-          ;;
> +-        *)
> +-          if test -z "$with_arch"; then
> +-            XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> +-            XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
> +-          fi
> +-      esac
> +       ARCH=x86
> +       # ??? Detect when -march=i686 is already enabled.
> +       try_ifunc=yes
> +diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt
> +index 4790a31e39..46c4c958e6 100644
> +--- a/libgomp/configure.tgt
> ++++ b/libgomp/configure.tgt
> +@@ -72,14 +72,6 @@ if test x$enable_linux_futex = xyes; then
> +     # Note that bare i386 is not included here.  We need cmpxchg.
> +     i[456]86-*-linux*)
> +       config_path="linux/x86 linux posix"
> +-      case " ${CC} ${CFLAGS} " in
> +-        *" -m64 "*|*" -mx32 "*)
> +-          ;;
> +-        *)
> +-          if test -z "$with_arch"; then
> +-            XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> +-          fi
> +-      esac
> +       ;;
> +
> +     # Similar jiggery-pokery for x86_64 multilibs, except here we
> +diff --git a/libitm/configure.tgt b/libitm/configure.tgt
> +index 04109160e9..3d78ea609d 100644
> +--- a/libitm/configure.tgt
> ++++ b/libitm/configure.tgt
> +@@ -59,15 +59,6 @@ case "${target_cpu}" in
> +   arm*)               ARCH=arm ;;
> +
> +   i[3456]86)
> +-      case " ${CC} ${CFLAGS} " in
> +-        *" -m64 "*|*" -mx32 "*)
> +-          ;;
> +-        *)
> +-          if test -z "$with_arch"; then
> +-            XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> +-            XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
> +-          fi
> +-      esac
> +       XCFLAGS="${XCFLAGS} -mrtm"
> +       ARCH=x86
> +       ;;
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
> new file mode 100644
> index 0000000..30a8486
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
> @@ -0,0 +1,200 @@
> +From 74cc21f474402cf3578e37e1d7a1a22bbd070f6a Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 08:59:00 +0400
> +Subject: [PATCH] gcc: poison-system-directories
> +
> +Add /sw/include and /opt/include based on the original
> +zecke-no-host-includes.patch patch.  The original patch checked for
> +/usr/include, /sw/include and /opt/include and then triggered a failure and
> +aborted.
> +
> +Instead, we add the two missing items to the current scan.  If the user
> +wants this to be a failure, they can add "-Werror=poison-system-directories".
> +
> +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/common.opt      |  4 ++++
> + gcc/config.in       |  6 ++++++
> + gcc/configure       | 16 ++++++++++++++++
> + gcc/configure.ac    | 10 ++++++++++
> + gcc/doc/invoke.texi |  9 +++++++++
> + gcc/gcc.c           |  2 ++
> + gcc/incpath.c       | 21 +++++++++++++++++++++
> + 7 files changed, 68 insertions(+)
> +
> +diff --git a/gcc/common.opt b/gcc/common.opt
> +index 65a82410abc..415f38fa1f4 100644
> +--- a/gcc/common.opt
> ++++ b/gcc/common.opt
> +@@ -682,6 +682,10 @@ Wreturn-local-addr
> + Common Var(warn_return_local_addr) Init(1) Warning
> + Warn about returning a pointer/reference to a local or temporary variable.
> +
> ++Wpoison-system-directories
> ++Common Var(flag_poison_system_directories) Init(1) Warning
> ++Warn for -I and -L options using system directories if cross compiling
> ++
> + Wshadow
> + Common Var(warn_shadow) Warning
> + Warn when one variable shadows another.  Same as -Wshadow=global.
> +diff --git a/gcc/config.in b/gcc/config.in
> +index 809e7b26823..5adeaeed36b 100644
> +--- a/gcc/config.in
> ++++ b/gcc/config.in
> +@@ -224,6 +224,12 @@
> + #endif
> +
> +
> ++/* Define to warn for use of native system header directories */
> ++#ifndef USED_FOR_TARGET
> ++#undef ENABLE_POISON_SYSTEM_DIRECTORIES
> ++#endif
> ++
> ++
> + /* Define if you want all operations on RTL (the basic data structure of the
> +    optimizer and back end) to be checked for dynamic type safety at runtime.
> +    This is quite expensive. */
> +diff --git a/gcc/configure b/gcc/configure
> +index cd3d9516fce..8de766a942c 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -1010,6 +1010,7 @@ with_system_zlib
> + enable_maintainer_mode
> + enable_link_mutex
> + enable_version_specific_runtime_libs
> ++enable_poison_system_directories
> + enable_plugin
> + enable_host_shared
> + enable_libquadmath_support
> +@@ -1766,6 +1767,8 @@ Optional Features:
> +   --enable-version-specific-runtime-libs
> +                           specify that runtime libraries should be installed
> +                           in a compiler-specific directory
> ++  --enable-poison-system-directories
> ++                          warn for use of native system header directories
> +   --enable-plugin         enable plugin support
> +   --enable-host-shared    build host code as shared libraries
> +   --disable-libquadmath-support
> +@@ -30235,6 +30238,19 @@ if test "${enable_version_specific_runtime_libs+set}" = set; then :
> + fi
> +
> +
> ++# Check whether --enable-poison-system-directories was given.
> ++if test "${enable_poison_system_directories+set}" = set; then :
> ++  enableval=$enable_poison_system_directories;
> ++else
> ++  enable_poison_system_directories=no
> ++fi
> ++
> ++if test "x${enable_poison_system_directories}" = "xyes"; then
> ++
> ++$as_echo "#define ENABLE_POISON_SYSTEM_DIRECTORIES 1" >>confdefs.h
> ++
> ++fi
> ++
> + # Substitute configuration variables
> +
> +
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 0de3b4bf97b..8bfd6feb780 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -6595,6 +6595,16 @@ AC_ARG_ENABLE(version-specific-runtime-libs,
> +                 [specify that runtime libraries should be
> +                  installed in a compiler-specific directory])])
> +
> ++AC_ARG_ENABLE([poison-system-directories],
> ++             AS_HELP_STRING([--enable-poison-system-directories],
> ++                            [warn for use of native system header directories]),,
> ++             [enable_poison_system_directories=no])
> ++if test "x${enable_poison_system_directories}" = "xyes"; then
> ++  AC_DEFINE([ENABLE_POISON_SYSTEM_DIRECTORIES],
> ++           [1],
> ++           [Define to warn for use of native system header directories])
> ++fi
> ++
> + # Substitute configuration variables
> + AC_SUBST(subdirs)
> + AC_SUBST(srcdir)
> +diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
> +index f98161391a0..f12d8d12150 100644
> +--- a/gcc/doc/invoke.texi
> ++++ b/gcc/doc/invoke.texi
> +@@ -348,6 +348,7 @@ Objective-C and Objective-C++ Dialects}.
> + -Wpacked  -Wno-packed-bitfield-compat  -Wpacked-not-aligned  -Wpadded @gol
> + -Wparentheses  -Wno-pedantic-ms-format @gol
> + -Wpointer-arith  -Wno-pointer-compare  -Wno-pointer-to-int-cast @gol
> ++-Wno-poison-system-directories @gol
> + -Wno-pragmas  -Wno-prio-ctor-dtor  -Wredundant-decls @gol
> + -Wrestrict  -Wno-return-local-addr  -Wreturn-type @gol
> + -Wno-scalar-storage-order  -Wsequence-point @gol
> +@@ -6924,6 +6925,14 @@ made up of data only and thus requires no special treatment.  But, for
> + most targets, it is made up of code and thus requires the stack to be
> + made executable in order for the program to work properly.
> +
> ++@item -Wno-poison-system-directories
> ++@opindex Wno-poison-system-directories
> ++Do not warn for @option{-I} or @option{-L} options using system
> ++directories such as @file{/usr/include} when cross compiling.  This
> ++option is intended for use in chroot environments when such
> ++directories contain the correct headers and libraries for the target
> ++system rather than the host.
> ++
> + @item -Wfloat-equal
> + @opindex Wfloat-equal
> + @opindex Wno-float-equal
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index 9f790db0daf..b2200c5185a 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -1041,6 +1041,8 @@ proper position among the other output files.  */
> +    "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
> +    "%X %{o*} %{e*} %{N} %{n} %{r}\
> +     %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!r:%{!nostartfiles:%S}}} \
> ++    %{Wno-poison-system-directories:--no-poison-system-directories} \
> ++    %{Werror=poison-system-directories:--error-poison-system-directories} \
> +     %{static|no-pie|static-pie:} %@{L*} %(mfwrap) %(link_libgcc) " \
> +     VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o "" \
> +     %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
> +diff --git a/gcc/incpath.c b/gcc/incpath.c
> +index 8a2bda00f80..9098ab044ab 100644
> +--- a/gcc/incpath.c
> ++++ b/gcc/incpath.c
> +@@ -26,6 +26,7 @@
> + #include "intl.h"
> + #include "incpath.h"
> + #include "cppdefault.h"
> ++#include "diagnostic-core.h"
> +
> + /* Microsoft Windows does not natively support inodes.
> +    VMS has non-numeric inodes.  */
> +@@ -393,6 +394,26 @@ merge_include_chains (const char *sysroot, cpp_reader *pfile, int verbose)
> +       }
> +       fprintf (stderr, _("End of search list.\n"));
> +     }
> ++
> ++#ifdef ENABLE_POISON_SYSTEM_DIRECTORIES
> ++  if (flag_poison_system_directories)
> ++    {
> ++       struct cpp_dir *p;
> ++
> ++       for (p = heads[INC_QUOTE]; p; p = p->next)
> ++         {
> ++          if ((!strncmp (p->name, "/usr/include", 12))
> ++              || (!strncmp (p->name, "/usr/local/include", 18))
> ++              || (!strncmp (p->name, "/usr/X11R6/include", 18))
> ++              || (!strncmp (p->name, "/sw/include", 11))
> ++              || (!strncmp (p->name, "/opt/include", 12)))
> ++            warning (OPT_Wpoison_system_directories,
> ++                     "include location \"%s\" is unsafe for "
> ++                     "cross-compilation",
> ++                     p->name);
> ++         }
> ++    }
> ++#endif
> + }
> +
> + /* Use given -I paths for #include "..." but not #include <...>, and
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
> new file mode 100644
> index 0000000..27237fe
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
> @@ -0,0 +1,70 @@
> +From 6e3395c0bc933bdc3242d1dead4896d0aa4e11a8 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:08:31 +0400
> +Subject: [PATCH] gcc-4.3.3: SYSROOT_CFLAGS_FOR_TARGET
> +
> +Before committing, I noticed that PR/32161 was marked as a dup of PR/32009, but my previous patch did not fix it.
> +
> +This alternative patch is better because it lets you just use CFLAGS_FOR_TARGET to set the compilation flags for libgcc. Since bootstrapped target libraries are never compiled with the native compiler, it makes little sense to use different flags for stage1 and later stages. And it also makes little sense to use a different variable than CFLAGS_FOR_TARGET.
> +
> +Other changes I had to do include:
> +
> +- moving the creation of default CFLAGS_FOR_TARGET from Makefile.am to configure.ac, because otherwise the BOOT_CFLAGS are substituted into CFLAGS_FOR_TARGET (which is "-O2 -g $(CFLAGS)") via $(CFLAGS). It is also cleaner this way though.
> +
> +- passing the right CFLAGS to configure scripts as exported environment variables
> +
> +I also stopped passing LIBCFLAGS to configure scripts since they are unused in the whole src tree. And I updated the documentation as H-P reminded me to do.
> +
> +Bootstrapped/regtested i686-pc-linux-gnu, will commit to 4.4 shortly. Ok for 4.3?
> +
> +Signed-off-by: Paolo Bonzini  <bonzini@gnu.org>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + configure | 32 ++++++++++++++++++++++++++++++++
> + 1 file changed, 32 insertions(+)
> +
> +diff --git a/configure b/configure
> +index 226a64939d1..b31dc137fc9 100755
> +--- a/configure
> ++++ b/configure
> +@@ -6971,6 +6971,38 @@ fi
> +
> +
> +
> ++# During gcc bootstrap, if we use some random cc for stage1 then CFLAGS
> ++# might be empty or "-g".  We don't require a C++ compiler, so CXXFLAGS
> ++# might also be empty (or "-g", if a non-GCC C++ compiler is in the path).
> ++# We want to ensure that TARGET libraries (which we know are built with
> ++# gcc) are built with "-O2 -g", so include those options when setting
> ++# CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
> ++if test "x$CFLAGS_FOR_TARGET" = x; then
> ++  CFLAGS_FOR_TARGET=$CFLAGS
> ++  case " $CFLAGS " in
> ++    *" -O2 "*) ;;
> ++    *) CFLAGS_FOR_TARGET="-O2 $CFLAGS" ;;
> ++  esac
> ++  case " $CFLAGS " in
> ++    *" -g "* | *" -g3 "*) ;;
> ++    *) CFLAGS_FOR_TARGET="-g $CFLAGS" ;;
> ++  esac
> ++fi
> ++
> ++
> ++if test "x$CXXFLAGS_FOR_TARGET" = x; then
> ++  CXXFLAGS_FOR_TARGET=$CXXFLAGS
> ++  case " $CXXFLAGS " in
> ++    *" -O2 "*) ;;
> ++    *) CXXFLAGS_FOR_TARGET="-O2 $CXXFLAGS" ;;
> ++  esac
> ++  case " $CXXFLAGS " in
> ++    *" -g "* | *" -g3 "*) ;;
> ++    *) CXXFLAGS_FOR_TARGET="-g $CXXFLAGS" ;;
> ++  esac
> ++fi
> ++
> ++
> + # Handle --with-headers=XXX.  If the value is not "yes", the contents of
> + # the named directory are copied to $(tooldir)/sys-include.
> + if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
> new file mode 100644
> index 0000000..7c751be
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
> @@ -0,0 +1,116 @@
> +From 85a7c5aeb82ed61e6ef6d8e061b9da9e6a4a652c Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:10:06 +0400
> +Subject: [PATCH] 64-bit multilib hack.
> +
> +GCC has internal multilib handling code but it assumes a very specific rigid directory
> +layout. The build system implementation of multilib layout is very generic and allows
> +complete customisation of the library directories.
> +
> +This patch is a partial solution to allow any custom directories to be passed into gcc
> +and handled correctly. It forces gcc to use the base_libdir (which is the current
> +directory, "."). We need to do this for each multilib that is configured as we don't
> +know which compiler options may be being passed into the compiler. Since we have a compiler
> +per mulitlib at this point that isn't an issue.
> +
> +The one problem is the target compiler is only going to work for the default multlilib at
> +this point. Ideally we'd figure out which multilibs were being enabled with which paths
> +and be able to patch these entries with a complete set of correct paths but this we
> +don't have such code at this point. This is something the target gcc recipe should do
> +and override these platform defaults in its build config.
> +
> +Do same for riscv64 and aarch64
> +
> +RP 15/8/11
> +
> +Upstream-Status: Inappropriate[OE-Specific]
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
> +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> +---
> + gcc/config/aarch64/t-aarch64-linux |  8 ++++----
> + gcc/config/i386/t-linux64          |  6 ++----
> + gcc/config/mips/t-linux64          | 10 +++-------
> + gcc/config/riscv/t-linux           |  6 ++++--
> + gcc/config/rs6000/t-linux64        |  5 ++---
> + 5 files changed, 15 insertions(+), 20 deletions(-)
> +
> +diff --git a/gcc/config/aarch64/t-aarch64-linux b/gcc/config/aarch64/t-aarch64-linux
> +index 83e59e33b85..b1356be1fb4 100644
> +--- a/gcc/config/aarch64/t-aarch64-linux
> ++++ b/gcc/config/aarch64/t-aarch64-linux
> +@@ -21,8 +21,8 @@
> + LIB1ASMSRC   = aarch64/lib1funcs.asm
> + LIB1ASMFUNCS = _aarch64_sync_cache_range
> +
> +-AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
> +-MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
> +-MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
> ++#AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
> ++#MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
> ++#MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
> +
> +-MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
> ++#MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
> +diff --git a/gcc/config/i386/t-linux64 b/gcc/config/i386/t-linux64
> +index 1171e218578..5e057b7e5db 100644
> +--- a/gcc/config/i386/t-linux64
> ++++ b/gcc/config/i386/t-linux64
> +@@ -32,7 +32,5 @@
> + #
> + comma=,
> + MULTILIB_OPTIONS    = $(subst $(comma),/,$(TM_MULTILIB_CONFIG))
> +-MULTILIB_DIRNAMES   = $(patsubst m%, %, $(subst /, ,$(MULTILIB_OPTIONS)))
> +-MULTILIB_OSDIRNAMES = m64=../lib64$(call if_multiarch,:x86_64-linux-gnu)
> +-MULTILIB_OSDIRNAMES+= m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:i386-linux-gnu)
> +-MULTILIB_OSDIRNAMES+= mx32=../libx32$(call if_multiarch,:x86_64-linux-gnux32)
> ++MULTILIB_DIRNAMES = . .
> ++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> +diff --git a/gcc/config/mips/t-linux64 b/gcc/config/mips/t-linux64
> +index ceb58d3b5f3..43fe2bf28ab 100644
> +--- a/gcc/config/mips/t-linux64
> ++++ b/gcc/config/mips/t-linux64
> +@@ -17,10 +17,6 @@
> + # <http://www.gnu.org/licenses/>.
> +
> + MULTILIB_OPTIONS = mabi=n32/mabi=32/mabi=64
> +-MULTILIB_DIRNAMES = n32 32 64
> +-MIPS_EL = $(if $(filter %el, $(firstword $(subst -, ,$(target)))),el)
> +-MIPS_SOFT = $(if $(strip $(filter MASK_SOFT_FLOAT_ABI, $(target_cpu_default)) $(filter soft, $(with_float))),soft)
> +-MULTILIB_OSDIRNAMES = \
> +-      ../lib32$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabin32$(MIPS_SOFT)) \
> +-      ../lib$(call if_multiarch,:mips$(MIPS_EL)-linux-gnu$(MIPS_SOFT)) \
> +-      ../lib64$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabi64$(MIPS_SOFT))
> ++MULTILIB_DIRNAMES = . . .
> ++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> ++
> +diff --git a/gcc/config/riscv/t-linux b/gcc/config/riscv/t-linux
> +index 216d2776a18..e4d817621fc 100644
> +--- a/gcc/config/riscv/t-linux
> ++++ b/gcc/config/riscv/t-linux
> +@@ -1,3 +1,5 @@
> + # Only XLEN and ABI affect Linux multilib dir names, e.g. /lib32/ilp32d/
> +-MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
> +-MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
> ++#MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
> ++MULTILIB_DIRNAMES := . .
> ++#MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
> ++MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> +diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64
> +index 264a7e27524..dc9d440f66b 100644
> +--- a/gcc/config/rs6000/t-linux64
> ++++ b/gcc/config/rs6000/t-linux64
> +@@ -26,10 +26,9 @@
> + # MULTILIB_OSDIRNAMES according to what is found on the target.
> +
> + MULTILIB_OPTIONS    := m64/m32
> +-MULTILIB_DIRNAMES   := 64 32
> ++MULTILIB_DIRNAMES   := . .
> + MULTILIB_EXTRA_OPTS :=
> +-MULTILIB_OSDIRNAMES := m64=../lib64$(call if_multiarch,:powerpc64-linux-gnu)
> +-MULTILIB_OSDIRNAMES += m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:powerpc-linux-gnu)
> ++MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> +
> + rs6000-linux.o: $(srcdir)/config/rs6000/rs6000-linux.c
> +       $(COMPILE) $<
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
> new file mode 100644
> index 0000000..4020c9e
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
> @@ -0,0 +1,122 @@
> +From 6ddfb0bfcd1eea71acd37ab06f7a4510b9f1d12b Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:12:56 +0400
> +Subject: [PATCH] optional libstdc
> +
> +gcc-runtime builds libstdc++ separately from gcc-cross-*. Its configure tests using g++
> +will not run correctly since by default the linker will try to link against libstdc++
> +which shouldn't exist yet. We need an option to disable -lstdc++
> +option whilst leaving -lc, -lgcc and other automatic library dependencies added by gcc
> +driver. This patch adds such an option which only disables the -lstdc++.
> +
> +A "standard" gcc build uses xgcc and hence avoids this. We should ask upstream how to
> +do this officially, the likely answer is don't build libstdc++ separately.
> +
> +RP 29/6/10
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [embedded specific]
> +---
> + gcc/c-family/c.opt  |  4 ++++
> + gcc/cp/g++spec.c    |  1 +
> + gcc/doc/invoke.texi | 32 +++++++++++++++++++++++++++++++-
> + gcc/gcc.c           |  1 +
> + 4 files changed, 37 insertions(+), 1 deletion(-)
> +
> +diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt
> +index c49da99d395..35f712e2c84 100644
> +--- a/gcc/c-family/c.opt
> ++++ b/gcc/c-family/c.opt
> +@@ -2025,6 +2025,10 @@ nostdinc++
> + C++ ObjC++
> + Do not search standard system include directories for C++.
> +
> ++nostdlib++
> ++Driver
> ++Do not link standard C++ runtime library
> ++
> + o
> + C ObjC C++ ObjC++ Joined Separate
> + ; Documented in common.opt
> +diff --git a/gcc/cp/g++spec.c b/gcc/cp/g++spec.c
> +index 0ab63bcd211..7b081e9e4f0 100644
> +--- a/gcc/cp/g++spec.c
> ++++ b/gcc/cp/g++spec.c
> +@@ -137,6 +137,7 @@ lang_specific_driver (struct cl_decoded_option **in_decoded_options,
> +       switch (decoded_options[i].opt_index)
> +       {
> +       case OPT_nostdlib:
> ++      case OPT_nostdlib__:
> +       case OPT_nodefaultlibs:
> +         library = -1;
> +         break;
> +diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
> +index f12d8d12150..cf6cb428e7d 100644
> +--- a/gcc/doc/invoke.texi
> ++++ b/gcc/doc/invoke.texi
> +@@ -230,6 +230,9 @@ in the following sections.
> + -fno-weak  -nostdinc++ @gol
> + -fvisibility-inlines-hidden @gol
> + -fvisibility-ms-compat @gol
> ++-fvtable-verify=@r{[}std@r{|}preinit@r{|}none@r{]} @gol
> ++-fvtv-counts -fvtv-debug @gol
> ++-nostdlib++ @gol
> + -fext-numeric-literals @gol
> + -Wabi-tag  -Wcatch-value  -Wcatch-value=@var{n} @gol
> + -Wno-class-conversion  -Wclass-memaccess @gol
> +@@ -599,7 +602,7 @@ Objective-C and Objective-C++ Dialects}.
> + -pie  -pthread  -r  -rdynamic @gol
> + -s  -static  -static-pie  -static-libgcc  -static-libstdc++ @gol
> + -static-libasan  -static-libtsan  -static-liblsan  -static-libubsan @gol
> +--shared  -shared-libgcc  -symbolic @gol
> ++-shared  -shared-libgcc  -symbolic -nostdlib++ @gol
> + -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
> + -u @var{symbol}  -z @var{keyword}}
> +
> +@@ -14407,6 +14410,33 @@ Specify that the program entry point is @var{entry}.  The argument is
> + interpreted by the linker; the GNU linker accepts either a symbol name
> + or an address.
> +
> ++@item -nostdlib++
> ++@opindex nostdlib++
> ++Do not use the standard system C++ runtime libraries when linking.
> ++Only the libraries you specify will be passed to the linker.
> ++
> ++@cindex @option{-lgcc}, use with @option{-nostdlib}
> ++@cindex @option{-nostdlib} and unresolved references
> ++@cindex unresolved references and @option{-nostdlib}
> ++@cindex @option{-lgcc}, use with @option{-nodefaultlibs}
> ++@cindex @option{-nodefaultlibs} and unresolved references
> ++@cindex unresolved references and @option{-nodefaultlibs}
> ++One of the standard libraries bypassed by @option{-nostdlib} and
> ++@option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
> ++which GCC uses to overcome shortcomings of particular machines, or special
> ++needs for some languages.
> ++(@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
> ++Collection (GCC) Internals},
> ++for more discussion of @file{libgcc.a}.)
> ++In most cases, you need @file{libgcc.a} even when you want to avoid
> ++other standard libraries.  In other words, when you specify @option{-nostdlib}
> ++or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
> ++This ensures that you have no unresolved references to internal GCC
> ++library subroutines.
> ++(An example of such an internal subroutine is @code{__main}, used to ensure C++
> ++constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
> ++GNU Compiler Collection (GCC) Internals}.)
> ++
> + @item -pie
> + @opindex pie
> + Produce a dynamically linked position independent executable on targets
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index b2200c5185a..f8be58ce0a6 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -1051,6 +1051,7 @@ proper position among the other output files.  */
> +     %(mflib) " STACK_SPLIT_SPEC "\
> +     %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
> +     %{!nostdlib:%{!r:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}}\
> ++    %{!nostdlib++:}\
> +     %{!nostdlib:%{!r:%{!nostartfiles:%E}}} %{T*}  \n%(post_link) }}}}}}"
> + #endif
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
> new file mode 100644
> index 0000000..9fbbe80
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
> @@ -0,0 +1,35 @@
> +From a6c90d3a9c5010b4aa7cc30467cf81ca7e0f430e Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:16:28 +0400
> +Subject: [PATCH] COLLECT_GCC_OPTIONS
> +
> +This patch adds --sysroot into COLLECT_GCC_OPTIONS which is used to
> +invoke collect2.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/gcc.c | 9 +++++++++
> + 1 file changed, 9 insertions(+)
> +
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index f8be58ce0a6..48b0f9dde81 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -4806,6 +4806,15 @@ set_collect_gcc_options (void)
> +               sizeof ("COLLECT_GCC_OPTIONS=") - 1);
> +
> +   first_time = TRUE;
> ++#ifdef HAVE_LD_SYSROOT
> ++  if (target_system_root_changed && target_system_root)
> ++    {
> ++      obstack_grow (&collect_obstack, "'--sysroot=", sizeof("'--sysroot=")-1);
> ++      obstack_grow (&collect_obstack, target_system_root,strlen(target_system_root));
> ++      obstack_grow (&collect_obstack, "'", 1);
> ++      first_time = FALSE;
> ++    }
> ++#endif
> +   for (i = 0; (int) i < n_switches; i++)
> +     {
> +       const char *const *args;
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
> new file mode 100644
> index 0000000..a764bdd
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
> @@ -0,0 +1,92 @@
> +From 5670d4489f119d2da661734895ac0be99b606d1b Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:17:25 +0400
> +Subject: [PATCH] Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}
> +
> +Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}, so that
> +the source can be shared between gcc-cross-initial,
> +gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +
> +While compiling gcc-crosssdk-initial-x86_64 on some host, there is
> +occasionally failure that test the existance of default.h doesn't
> +work, the reason is tm_include_list='** defaults.h' rather than
> +tm_include_list='** ./defaults.h'
> +
> +So we add the test condition for this situation.
> +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> +---
> + gcc/Makefile.in  | 2 +-
> + gcc/configure    | 4 ++--
> + gcc/configure.ac | 4 ++--
> + gcc/mkconfig.sh  | 4 ++--
> + 4 files changed, 7 insertions(+), 7 deletions(-)
> +
> +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> +index 543b477ff18..a67d2cc18d6 100644
> +--- a/gcc/Makefile.in
> ++++ b/gcc/Makefile.in
> +@@ -540,7 +540,7 @@ TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
> + TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
> +
> + xmake_file=@xmake_file@
> +-tmake_file=@tmake_file@
> ++tmake_file=@tmake_file@ ./t-oe
> + TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
> + TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
> + TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
> +diff --git a/gcc/configure b/gcc/configure
> +index 8de766a942c..b26e8fc7fee 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -12705,8 +12705,8 @@ for f in $tm_file; do
> +        tm_include_list="${tm_include_list} $f"
> +        ;;
> +     defaults.h )
> +-       tm_file_list="${tm_file_list} \$(srcdir)/$f"
> +-       tm_include_list="${tm_include_list} $f"
> ++       tm_file_list="${tm_file_list} ./$f"
> ++       tm_include_list="${tm_include_list} ./$f"
> +        ;;
> +     * )
> +        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 8bfd6feb780..26fa46802c7 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -2138,8 +2138,8 @@ for f in $tm_file; do
> +        tm_include_list="${tm_include_list} $f"
> +        ;;
> +     defaults.h )
> +-       tm_file_list="${tm_file_list} \$(srcdir)/$f"
> +-       tm_include_list="${tm_include_list} $f"
> ++       tm_file_list="${tm_file_list} ./$f"
> ++       tm_include_list="${tm_include_list} ./$f"
> +        ;;
> +     * )
> +        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
> +diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh
> +index d2c677a4a42..d03852481cb 100644
> +--- a/gcc/mkconfig.sh
> ++++ b/gcc/mkconfig.sh
> +@@ -77,7 +77,7 @@ if [ -n "$HEADERS" ]; then
> +     if [ $# -ge 1 ]; then
> +       echo '#ifdef IN_GCC' >> ${output}T
> +       for file in "$@"; do
> +-          if test x"$file" = x"defaults.h"; then
> ++          if test x"$file" = x"./defaults.h" -o x"$file" = x"defaults.h"; then
> +               postpone_defaults_h="yes"
> +           else
> +               echo "# include \"$file\"" >> ${output}T
> +@@ -106,7 +106,7 @@ esac
> +
> + # If we postponed including defaults.h, add the #include now.
> + if test x"$postpone_defaults_h" = x"yes"; then
> +-    echo "# include \"defaults.h\"" >> ${output}T
> ++    echo "# include \"./defaults.h\"" >> ${output}T
> + fi
> +
> + # Add multiple inclusion protection guard, part two.
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
> new file mode 100644
> index 0000000..714db3b
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
> @@ -0,0 +1,43 @@
> +From f05062625e7a4751be723595a2f7a4b7fbeff311 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:20:01 +0400
> +Subject: [PATCH] fortran cross-compile hack.
> +
> +* Fortran would have searched for arm-angstrom-gnueabi-gfortran but would have used
> +used gfortan. For gcc_4.2.2.bb we want to use the gfortran compiler from our cross
> +directory.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [embedded specific]
> +---
> + libgfortran/configure    | 2 +-
> + libgfortran/configure.ac | 2 +-
> + 2 files changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/libgfortran/configure b/libgfortran/configure
> +index b4cf854ddb3..e8e0ac3b1cf 100755
> +--- a/libgfortran/configure
> ++++ b/libgfortran/configure
> +@@ -13090,7 +13090,7 @@ esac
> +
> + # We need gfortran to compile parts of the library
> + #AC_PROG_FC(gfortran)
> +-FC="$GFORTRAN"
> ++#FC="$GFORTRAN"
> + ac_ext=${ac_fc_srcext-f}
> + ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5'
> + ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5'
> +diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac
> +index 711dc60ff78..3c9bbfbf47d 100644
> +--- a/libgfortran/configure.ac
> ++++ b/libgfortran/configure.ac
> +@@ -258,7 +258,7 @@ AC_SUBST(enable_static)
> +
> + # We need gfortran to compile parts of the library
> + #AC_PROG_FC(gfortran)
> +-FC="$GFORTRAN"
> ++#FC="$GFORTRAN"
> + AC_PROG_FC(gfortran)
> +
> + # extra LD Flags which are required for targets
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
> new file mode 100644
> index 0000000..8ad6853
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
> @@ -0,0 +1,51 @@
> +From 1d76de7f1f5c99f1fa1a4b14aedad3d702e4e136 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:22:00 +0400
> +Subject: [PATCH] cpp: honor sysroot.
> +
> +Currently, if the gcc toolchain is relocated and installed from sstate, then you try and compile
> +preprocessed source (.i or .ii files), the compiler will try and access the builtin sysroot location
> +rather than the --sysroot option specified on the commandline. If access to that directory is
> +permission denied (unreadable), gcc will error.
> +
> +This happens when ccache is in use due to the fact it uses preprocessed source files.
> +
> +The fix below adds %I to the cpp-output spec macro so the default substitutions for -iprefix,
> +-isystem, -isysroot happen and the correct sysroot is used.
> +
> +[YOCTO #2074]
> +
> +RP 2012/04/13
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/cp/lang-specs.h | 2 +-
> + gcc/gcc.c           | 2 +-
> + 2 files changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h
> +index 0ad4a33b93e..16c744f4f90 100644
> +--- a/gcc/cp/lang-specs.h
> ++++ b/gcc/cp/lang-specs.h
> +@@ -66,5 +66,5 @@ along with GCC; see the file COPYING3.  If not see
> +   {".ii", "@c++-cpp-output", 0, 0, 0},
> +   {"@c++-cpp-output",
> +       "%{!E:%{!M:%{!MM:"
> +-      "  cc1plus -fpreprocessed %i %(cc1_options) %2"
> ++      "  cc1plus -fpreprocessed %i %I %(cc1_options) %2"
> +       "  %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index 48b0f9dde81..c87f603955f 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -1348,7 +1348,7 @@ static const struct compiler default_compilers[] =
> +                                          %W{o*:--output-pch=%*}}%V}}}}}}}", 0, 0, 0},
> +   {".i", "@cpp-output", 0, 0, 0},
> +   {"@cpp-output",
> +-   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> ++   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %I %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> +   {".s", "@assembler", 0, 0, 0},
> +   {"@assembler",
> +    "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
> new file mode 100644
> index 0000000..625e2d8
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
> @@ -0,0 +1,54 @@
> +From 4fad4433c96bc9d0d9d124f9674fb3389f6f426e Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:23:08 +0400
> +Subject: [PATCH] MIPS64: Default to N64 ABI
> +
> +MIPS64 defaults to n32 ABI, this patch makes it
> +so that it defaults to N64 ABI
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [OE config specific]
> +---
> + gcc/config.gcc | 10 +++++-----
> + 1 file changed, 5 insertions(+), 5 deletions(-)
> +
> +diff --git a/gcc/config.gcc b/gcc/config.gcc
> +index cf1a87e2efd..37c4221a39f 100644
> +--- a/gcc/config.gcc
> ++++ b/gcc/config.gcc
> +@@ -2511,29 +2511,29 @@ mips*-*-linux*)                                # Linux MIPS, either endian.
> +                       default_mips_arch=mips32
> +                       ;;
> +               mips64el-st-linux-gnu)
> +-                      default_mips_abi=n32
> ++                      default_mips_abi=64
> +                       tm_file="${tm_file} mips/st.h"
> +                       tmake_file="${tmake_file} mips/t-st"
> +                       enable_mips_multilibs="yes"
> +                       ;;
> +               mips64octeon*-*-linux*)
> +-                      default_mips_abi=n32
> ++                      default_mips_abi=64
> +                       tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
> +                       target_cpu_default=MASK_SOFT_FLOAT_ABI
> +                       enable_mips_multilibs="yes"
> +                       ;;
> +               mipsisa64r6*-*-linux*)
> +-                      default_mips_abi=n32
> ++                      default_mips_abi=64
> +                       default_mips_arch=mips64r6
> +                       enable_mips_multilibs="yes"
> +                       ;;
> +               mipsisa64r2*-*-linux*)
> +-                      default_mips_abi=n32
> ++                      default_mips_abi=64
> +                       default_mips_arch=mips64r2
> +                       enable_mips_multilibs="yes"
> +                       ;;
> +               mips64*-*-linux* | mipsisa64*-*-linux*)
> +-                      default_mips_abi=n32
> ++                      default_mips_abi=64
> +                       enable_mips_multilibs="yes"
> +                       ;;
> +       esac
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
> new file mode 100644
> index 0000000..e357976
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
> @@ -0,0 +1,243 @@
> +From 8fc016a53c22c19feccbfa13ebdf19090dc67058 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:24:50 +0400
> +Subject: [PATCH] Define GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
> + relative to SYSTEMLIBS_DIR
> +
> +This patch defines GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
> +relative to SYSTEMLIBS_DIR which can be set in generated headers
> +This breaks the assumption of hardcoded multilib in gcc
> +Change is only for the supported architectures in OE including
> +SH, sparc, alpha for possible future support (if any)
> +
> +Removes the do_headerfix task in metadata
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [OE configuration]
> +---
> + gcc/config/alpha/linux-elf.h |  4 ++--
> + gcc/config/arm/linux-eabi.h  |  4 ++--
> + gcc/config/arm/linux-elf.h   |  2 +-
> + gcc/config/i386/linux.h      |  2 +-
> + gcc/config/i386/linux64.h    |  6 +++---
> + gcc/config/linux.h           |  8 ++++----
> + gcc/config/mips/linux.h      | 12 ++++++------
> + gcc/config/riscv/linux.h     |  2 +-
> + gcc/config/rs6000/linux64.h  | 15 +++++----------
> + gcc/config/sh/linux.h        |  2 +-
> + gcc/config/sparc/linux.h     |  2 +-
> + gcc/config/sparc/linux64.h   |  4 ++--
> + 12 files changed, 29 insertions(+), 34 deletions(-)
> +
> +diff --git a/gcc/config/alpha/linux-elf.h b/gcc/config/alpha/linux-elf.h
> +index e25fcac3c59..01aca0c6542 100644
> +--- a/gcc/config/alpha/linux-elf.h
> ++++ b/gcc/config/alpha/linux-elf.h
> +@@ -23,8 +23,8 @@ along with GCC; see the file COPYING3.  If not see
> + #define EXTRA_SPECS \
> + { "elf_dynamic_linker", ELF_DYNAMIC_LINKER },
> +
> +-#define GLIBC_DYNAMIC_LINKER  "/lib/ld-linux.so.2"
> +-#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
> ++#define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux.so.2"
> ++#define UCLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-uClibc.so.0"
> + #if DEFAULT_LIBC == LIBC_UCLIBC
> + #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
> + #elif DEFAULT_LIBC == LIBC_GLIBC
> +diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
> +index 5bdcfa0c5d3..0c0332f317f 100644
> +--- a/gcc/config/arm/linux-eabi.h
> ++++ b/gcc/config/arm/linux-eabi.h
> +@@ -65,8 +65,8 @@
> +    GLIBC_DYNAMIC_LINKER_DEFAULT and TARGET_DEFAULT_FLOAT_ABI.  */
> +
> + #undef  GLIBC_DYNAMIC_LINKER
> +-#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "/lib/ld-linux.so.3"
> +-#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT "/lib/ld-linux-armhf.so.3"
> ++#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT SYSTEMLIBS_DIR "ld-linux.so.3"
> ++#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT SYSTEMLIBS_DIR "ld-linux-armhf.so.3"
> + #define GLIBC_DYNAMIC_LINKER_DEFAULT GLIBC_DYNAMIC_LINKER_SOFT_FLOAT
> +
> + #define GLIBC_DYNAMIC_LINKER \
> +diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h
> +index 0ec3aa53189..abfa9566d74 100644
> +--- a/gcc/config/arm/linux-elf.h
> ++++ b/gcc/config/arm/linux-elf.h
> +@@ -60,7 +60,7 @@
> +
> + #define LIBGCC_SPEC "%{mfloat-abi=soft*:-lfloat} -lgcc"
> +
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> +
> + #define LINUX_TARGET_LINK_SPEC  "%{h*} \
> +    %{static:-Bstatic} \
> +diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h
> +index 9f823f125ed..e0390b7d5e3 100644
> +--- a/gcc/config/i386/linux.h
> ++++ b/gcc/config/i386/linux.h
> +@@ -20,7 +20,7 @@ along with GCC; see the file COPYING3.  If not see
> + <http://www.gnu.org/licenses/>.  */
> +
> + #define GNU_USER_LINK_EMULATION "elf_i386"
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> +
> + #undef MUSL_DYNAMIC_LINKER
> + #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-i386.so.1"
> +diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h
> +index 6cb68d1ccfa..7de09ec857c 100644
> +--- a/gcc/config/i386/linux64.h
> ++++ b/gcc/config/i386/linux64.h
> +@@ -27,9 +27,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> + #define GNU_USER_LINK_EMULATION64 "elf_x86_64"
> + #define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64"
> +
> +-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
> +-#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
> +-#define GLIBC_DYNAMIC_LINKERX32 "/libx32/ld-linux-x32.so.2"
> ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux-x86-64.so.2"
> ++#define GLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ld-linux-x32.so.2"
> +
> + #undef MUSL_DYNAMIC_LINKER32
> + #define MUSL_DYNAMIC_LINKER32 "/lib/ld-musl-i386.so.1"
> +diff --git a/gcc/config/linux.h b/gcc/config/linux.h
> +index 95654bcdb5a..0c1a8118a26 100644
> +--- a/gcc/config/linux.h
> ++++ b/gcc/config/linux.h
> +@@ -94,10 +94,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> +    GLIBC_DYNAMIC_LINKER must be defined for each target using them, or
> +    GLIBC_DYNAMIC_LINKER32 and GLIBC_DYNAMIC_LINKER64 for targets
> +    supporting both 32-bit and 64-bit compilation.  */
> +-#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
> +-#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
> +-#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
> +-#define UCLIBC_DYNAMIC_LINKERX32 "/lib/ldx32-uClibc.so.0"
> ++#define UCLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-uClibc.so.0"
> ++#define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
> ++#define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
> ++#define UCLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ldx32-uClibc.so.0"
> + #define BIONIC_DYNAMIC_LINKER "/system/bin/linker"
> + #define BIONIC_DYNAMIC_LINKER32 "/system/bin/linker"
> + #define BIONIC_DYNAMIC_LINKER64 "/system/bin/linker64"
> +diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h
> +index 54446e58e5f..4786ee304c1 100644
> +--- a/gcc/config/mips/linux.h
> ++++ b/gcc/config/mips/linux.h
> +@@ -22,20 +22,20 @@ along with GCC; see the file COPYING3.  If not see
> + #define GNU_USER_LINK_EMULATIONN32 "elf32%{EB:b}%{EL:l}tsmipn32"
> +
> + #define GLIBC_DYNAMIC_LINKER32 \
> +-  "%{mnan=2008:/lib/ld-linux-mipsn8.so.1;:/lib/ld.so.1}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> + #define GLIBC_DYNAMIC_LINKER64 \
> +-  "%{mnan=2008:/lib64/ld-linux-mipsn8.so.1;:/lib64/ld.so.1}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> + #define GLIBC_DYNAMIC_LINKERN32 \
> +-  "%{mnan=2008:/lib32/ld-linux-mipsn8.so.1;:/lib32/ld.so.1}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> +
> + #undef UCLIBC_DYNAMIC_LINKER32
> + #define UCLIBC_DYNAMIC_LINKER32 \
> +-  "%{mnan=2008:/lib/ld-uClibc-mipsn8.so.0;:/lib/ld-uClibc.so.0}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
> + #undef UCLIBC_DYNAMIC_LINKER64
> + #define UCLIBC_DYNAMIC_LINKER64 \
> +-  "%{mnan=2008:/lib/ld64-uClibc-mipsn8.so.0;:/lib/ld64-uClibc.so.0}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld64-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld64-uClibc.so.0}"
> + #define UCLIBC_DYNAMIC_LINKERN32 \
> +-  "%{mnan=2008:/lib32/ld-uClibc-mipsn8.so.0;:/lib32/ld-uClibc.so.0}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
> +
> + #undef MUSL_DYNAMIC_LINKER32
> + #define MUSL_DYNAMIC_LINKER32 \
> +diff --git a/gcc/config/riscv/linux.h b/gcc/config/riscv/linux.h
> +index 4afef7c228c..01997330741 100644
> +--- a/gcc/config/riscv/linux.h
> ++++ b/gcc/config/riscv/linux.h
> +@@ -22,7 +22,7 @@ along with GCC; see the file COPYING3.  If not see
> +     GNU_USER_TARGET_OS_CPP_BUILTINS();                                \
> +   } while (0)
> +
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
> +
> + #define MUSL_ABI_SUFFIX \
> +   "%{mabi=ilp32:-sf}" \
> +diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
> +index 34776c8421e..967c1c43c63 100644
> +--- a/gcc/config/rs6000/linux64.h
> ++++ b/gcc/config/rs6000/linux64.h
> +@@ -419,24 +419,19 @@ extern int dot_symbols;
> + #undef        LINK_OS_DEFAULT_SPEC
> + #define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
> +
> +-#define GLIBC_DYNAMIC_LINKER32 "%(dynamic_linker_prefix)/lib/ld.so.1"
> +-
> ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld.so.1"
> + #ifdef LINUX64_DEFAULT_ABI_ELFv2
> +-#define GLIBC_DYNAMIC_LINKER64 \
> +-"%{mabi=elfv1:%(dynamic_linker_prefix)/lib64/ld64.so.1;" \
> +-":%(dynamic_linker_prefix)/lib64/ld64.so.2}"
> ++#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv1:" SYSTEMLIBS_DIR "ld64.so.1;:" SYSTEMLIBS_DIR "ld64.so.2}"
> + #else
> +-#define GLIBC_DYNAMIC_LINKER64 \
> +-"%{mabi=elfv2:%(dynamic_linker_prefix)/lib64/ld64.so.2;" \
> +-":%(dynamic_linker_prefix)/lib64/ld64.so.1}"
> ++#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv2:" SYSTEMLIBS_DIR "ld64.so.2;:" SYSTEMLIBS_DIR "ld64.so.1}"
> + #endif
> +
> + #undef MUSL_DYNAMIC_LINKER32
> + #define MUSL_DYNAMIC_LINKER32 \
> +-  "/lib/ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> ++  SYSTEMLIBS_DIR "ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> + #undef MUSL_DYNAMIC_LINKER64
> + #define MUSL_DYNAMIC_LINKER64 \
> +-  "/lib/ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> ++  SYSTEMLIBS_DIR "ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> +
> + #undef  DEFAULT_ASM_ENDIAN
> + #if (TARGET_DEFAULT & MASK_LITTLE_ENDIAN)
> +diff --git a/gcc/config/sh/linux.h b/gcc/config/sh/linux.h
> +index c1d0441d488..81373eb8336 100644
> +--- a/gcc/config/sh/linux.h
> ++++ b/gcc/config/sh/linux.h
> +@@ -64,7 +64,7 @@ along with GCC; see the file COPYING3.  If not see
> +   "/lib/ld-musl-sh" MUSL_DYNAMIC_LINKER_E MUSL_DYNAMIC_LINKER_FP \
> +   "%{mfdpic:-fdpic}.so.1"
> +
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> +
> + #undef SUBTARGET_LINK_EMUL_SUFFIX
> + #define SUBTARGET_LINK_EMUL_SUFFIX "%{mfdpic:_fd;:_linux}"
> +diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h
> +index 81201e67a2f..8b6fc577594 100644
> +--- a/gcc/config/sparc/linux.h
> ++++ b/gcc/config/sparc/linux.h
> +@@ -84,7 +84,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv);
> +    When the -shared link option is used a final link is not being
> +    done.  */
> +
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> +
> + #undef  LINK_SPEC
> + #define LINK_SPEC "-m elf32_sparc %{shared:-shared} \
> +diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h
> +index a1a0efd8f28..85d1084afc2 100644
> +--- a/gcc/config/sparc/linux64.h
> ++++ b/gcc/config/sparc/linux64.h
> +@@ -84,8 +84,8 @@ along with GCC; see the file COPYING3.  If not see
> +    When the -shared link option is used a final link is not being
> +    done.  */
> +
> +-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
> +-#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux.so.2"
> +
> + #ifdef SPARC_BI_ARCH
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
> new file mode 100644
> index 0000000..88e1715
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
> @@ -0,0 +1,41 @@
> +From a22d1264049d29b90663cf5667049ae6f9b7a5ce Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:26:37 +0400
> +Subject: [PATCH] gcc: Fix argument list too long error.
> +
> +There would be an "Argument list too long" error when the
> +build directory is longer than 200, this is caused by:
> +
> +headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`
> +
> +The PLUGIN_HEADERS is too long before sort, so the "echo" can't handle
> +it, use the $(sort list) of GNU make which can handle the too long list
> +would fix the problem, the header would be short enough after sorted.
> +The "tr ' ' '\012'" was used for translating the space to "\n", the
> +$(sort list) doesn't need this.
> +
> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +RP: gcc then added *.h and *.def additions to this list, breaking the original
> +fix. Add the sort to the original gcc code, leaving the tr+sort to fix the original
> +issue but include the new files too as reported by Zhuang <qiuguang.zqg@alibaba-inc.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/Makefile.in | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> +index a67d2cc18d6..480c9366418 100644
> +--- a/gcc/Makefile.in
> ++++ b/gcc/Makefile.in
> +@@ -3606,7 +3606,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
> + # We keep the directory structure for files in config or c-family and .def
> + # files. All other files are flattened to a single directory.
> +       $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
> +-      headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
> ++      headers=`echo $(sort $(PLUGIN_HEADERS)) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
> +       srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
> +       for file in $$headers; do \
> +         if [ -f $$file ] ; then \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
> new file mode 100644
> index 0000000..207cdb5
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
> @@ -0,0 +1,110 @@
> +From fa47586935a18ecfc2ad5586802e326e21741b7b Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:28:10 +0400
> +Subject: [PATCH] Disable sdt.
> +
> +We don't list dtrace in DEPENDS so we shouldn't be depending on this header.
> +It may or may not exist from preivous builds though. To be determinstic, disable
> +sdt.h usage always. This avoids build failures if the header is removed after configure
> +but before libgcc is compiled for example.
> +
> +RP 2012/8/7
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Disable sdt for libstdc++-v3.
> +
> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> +
> +Upstream-Status: Inappropriate [hack]
> +---
> + gcc/configure             | 12 ++++++------
> + gcc/configure.ac          | 18 +++++++++---------
> + libstdc++-v3/configure    |  6 +++---
> + libstdc++-v3/configure.ac |  2 +-
> + 4 files changed, 19 insertions(+), 19 deletions(-)
> +
> +diff --git a/gcc/configure b/gcc/configure
> +index b26e8fc7fee..6080f86145e 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -29789,12 +29789,12 @@ fi
> + { $as_echo "$as_me:${as_lineno-$LINENO}: checking sys/sdt.h in the target C library" >&5
> + $as_echo_n "checking sys/sdt.h in the target C library... " >&6; }
> + have_sys_sdt_h=no
> +-if test -f $target_header_dir/sys/sdt.h; then
> +-  have_sys_sdt_h=yes
> +-
> +-$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> +-
> +-fi
> ++#if test -f $target_header_dir/sys/sdt.h; then
> ++#  have_sys_sdt_h=yes
> ++#
> ++#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> ++#
> ++#fi
> + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_sys_sdt_h" >&5
> + $as_echo "$have_sys_sdt_h" >&6; }
> +
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 26fa46802c7..42be5252778 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -6190,15 +6190,15 @@ fi
> + AC_SUBST([enable_default_ssp])
> +
> + # Test for <sys/sdt.h> on the target.
> +-GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
> +-AC_MSG_CHECKING(sys/sdt.h in the target C library)
> +-have_sys_sdt_h=no
> +-if test -f $target_header_dir/sys/sdt.h; then
> +-  have_sys_sdt_h=yes
> +-  AC_DEFINE(HAVE_SYS_SDT_H, 1,
> +-            [Define if your target C library provides sys/sdt.h])
> +-fi
> +-AC_MSG_RESULT($have_sys_sdt_h)
> ++#GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
> ++#AC_MSG_CHECKING(sys/sdt.h in the target C library)
> ++#have_sys_sdt_h=no
> ++#if test -f $target_header_dir/sys/sdt.h; then
> ++#  have_sys_sdt_h=yes
> ++#  AC_DEFINE(HAVE_SYS_SDT_H, 1,
> ++#            [Define if your target C library provides sys/sdt.h])
> ++#fi
> ++#AC_MSG_RESULT($have_sys_sdt_h)
> +
> + # Check if TFmode long double should be used by default or not.
> + # Some glibc targets used DFmode long double, but with glibc 2.4
> +diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
> +index 9f9c5a2419a..71ed13b815b 100755
> +--- a/libstdc++-v3/configure
> ++++ b/libstdc++-v3/configure
> +@@ -22615,11 +22615,11 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
> + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
> + ac_compiler_gnu=$ac_cv_c_compiler_gnu
> +
> +-  if test $glibcxx_cv_sys_sdt_h = yes; then
> ++#  if test $glibcxx_cv_sys_sdt_h = yes; then
> +
> +-$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> ++#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> +
> +-  fi
> ++#  fi
> +   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_sdt_h" >&5
> + $as_echo "$glibcxx_cv_sys_sdt_h" >&6; }
> +
> +diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac
> +index 699e55fd829..5c7a7bda439 100644
> +--- a/libstdc++-v3/configure.ac
> ++++ b/libstdc++-v3/configure.ac
> +@@ -241,7 +241,7 @@ GLIBCXX_CHECK_SC_NPROCESSORS_ONLN
> + GLIBCXX_CHECK_SC_NPROC_ONLN
> + GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP
> + GLIBCXX_CHECK_SYSCTL_HW_NCPU
> +-GLIBCXX_CHECK_SDT_H
> ++#GLIBCXX_CHECK_SDT_H
> +
> + # Check for available headers.
> + AC_CHECK_HEADERS([endian.h execinfo.h float.h fp.h ieeefp.h inttypes.h \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
> new file mode 100644
> index 0000000..f4e70c3
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
> @@ -0,0 +1,39 @@
> +From 6ecd478881468934444ff85611fd43f7033b1e81 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:29:11 +0400
> +Subject: [PATCH] libtool
> +
> +libstdc++ from gcc-runtime gets created with -rpath=/usr/lib/../lib for qemux86-64
> +when running on am x86_64 build host.
> +
> +This patch stops this speading to libdir in the libstdc++.la file within libtool.
> +Arguably, it shouldn't be passing this into libtool in the first place but
> +for now this resolves the nastiest problems this causes.
> +
> +func_normal_abspath would resolve an empty path to `pwd` so we need
> +to filter the zero case.
> +
> +RP 2012/8/24
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + ltmain.sh | 4 ++++
> + 1 file changed, 4 insertions(+)
> +
> +diff --git a/ltmain.sh b/ltmain.sh
> +index 70990740b6c..ee938056bef 100644
> +--- a/ltmain.sh
> ++++ b/ltmain.sh
> +@@ -6359,6 +6359,10 @@ func_mode_link ()
> +       func_warning "ignoring multiple \`-rpath's for a libtool library"
> +
> +       install_libdir="$1"
> ++      if test -n "$install_libdir"; then
> ++      func_normal_abspath "$install_libdir"
> ++      install_libdir=$func_normal_abspath_result
> ++      fi
> +
> +       oldlibs=
> +       if test -z "$rpath"; then
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
> new file mode 100644
> index 0000000..bc2674a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
> @@ -0,0 +1,40 @@
> +From de4427fa49c07dc651ee6ceaf5c5078700ca3b08 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:30:32 +0400
> +Subject: [PATCH] gcc: armv4: pass fix-v4bx to linker to support EABI.
> +
> +The LINK_SPEC for linux gets overwritten by linux-eabi.h which
> +means the value of TARGET_FIX_V4BX_SPEC gets lost and as a result
> +the option is not passed to linker when chosing march=armv4
> +This patch redefines this in linux-eabi.h and reinserts it
> +for eabi defaulting toolchains.
> +
> +We might want to send it upstream.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/config/arm/linux-eabi.h | 6 +++++-
> + 1 file changed, 5 insertions(+), 1 deletion(-)
> +
> +diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
> +index 0c0332f317f..7b3769e8459 100644
> +--- a/gcc/config/arm/linux-eabi.h
> ++++ b/gcc/config/arm/linux-eabi.h
> +@@ -91,10 +91,14 @@
> + #define MUSL_DYNAMIC_LINKER \
> +   "/lib/ld-musl-arm" MUSL_DYNAMIC_LINKER_E "%{mfloat-abi=hard:hf}%{mfdpic:-fdpic}.so.1"
> +
> ++/* For armv4 we pass --fix-v4bx to linker to support EABI */
> ++#undef TARGET_FIX_V4BX_SPEC
> ++#define TARGET_FIX_V4BX_SPEC "%{mcpu=arm8|mcpu=arm810|mcpu=strongarm*|march=armv4: --fix-v4bx}"
> ++
> + /* At this point, bpabi.h will have clobbered LINK_SPEC.  We want to
> +    use the GNU/Linux version, not the generic BPABI version.  */
> + #undef  LINK_SPEC
> +-#define LINK_SPEC EABI_LINK_SPEC                                      \
> ++#define LINK_SPEC TARGET_FIX_V4BX_SPEC EABI_LINK_SPEC                 \
> +   LINUX_OR_ANDROID_LD (LINUX_TARGET_LINK_SPEC,                                \
> +                      LINUX_TARGET_LINK_SPEC " " ANDROID_LINK_SPEC)
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
> new file mode 100644
> index 0000000..1dc4bb8
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
> @@ -0,0 +1,99 @@
> +From 6b363c2c1c089ee900efa6013aefba1003840a37 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:33:04 +0400
> +Subject: [PATCH] Use the multilib config files from ${B} instead of using the
> + ones from ${S}
> +
> +Use the multilib config files from ${B} instead of using the ones from ${S}
> +so that the source can be shared between gcc-cross-initial,
> +gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
> +
> +Upstream-Status: Inappropriate [configuration]
> +---
> + gcc/configure    | 22 ++++++++++++++++++----
> + gcc/configure.ac | 22 ++++++++++++++++++----
> + 2 files changed, 36 insertions(+), 8 deletions(-)
> +
> +diff --git a/gcc/configure b/gcc/configure
> +index 6080f86145e..825a9652329 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -12685,10 +12685,20 @@ done
> + tmake_file_=
> + for f in ${tmake_file}
> + do
> +-      if test -f ${srcdir}/config/$f
> +-      then
> +-              tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> +-      fi
> ++  case $f in
> ++    */t-linux64 )
> ++       if test -f ./config/$f
> ++       then
> ++         tmake_file_="${tmake_file_} ./config/$f"
> ++       fi
> ++       ;;
> ++    * )
> ++       if test -f ${srcdir}/config/$f
> ++       then
> ++         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> ++       fi
> ++       ;;
> ++  esac
> + done
> + tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
> +
> +@@ -12699,6 +12709,10 @@ tm_file_list="options.h"
> + tm_include_list="options.h insn-constants.h"
> + for f in $tm_file; do
> +   case $f in
> ++    */linux64.h )
> ++       tm_file_list="${tm_file_list} ./config/$f"
> ++       tm_include_list="${tm_include_list} ./config/$f"
> ++       ;;
> +     ./* )
> +        f=`echo $f | sed 's/^..//'`
> +        tm_file_list="${tm_file_list} $f"
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 42be5252778..6099eb3251f 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -2118,10 +2118,20 @@ done
> + tmake_file_=
> + for f in ${tmake_file}
> + do
> +-      if test -f ${srcdir}/config/$f
> +-      then
> +-              tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> +-      fi
> ++  case $f in
> ++    */t-linux64 )
> ++       if test -f ./config/$f
> ++       then
> ++         tmake_file_="${tmake_file_} ./config/$f"
> ++       fi
> ++       ;;
> ++    * )
> ++       if test -f ${srcdir}/config/$f
> ++       then
> ++         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> ++       fi
> ++       ;;
> ++  esac
> + done
> + tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
> +
> +@@ -2132,6 +2142,10 @@ tm_file_list="options.h"
> + tm_include_list="options.h insn-constants.h"
> + for f in $tm_file; do
> +   case $f in
> ++    */linux64.h )
> ++       tm_file_list="${tm_file_list} ./config/$f"
> ++       tm_include_list="${tm_include_list} ./config/$f"
> ++       ;;
> +     ./* )
> +        f=`echo $f | sed 's/^..//'`
> +        tm_file_list="${tm_file_list} $f"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
> new file mode 100644
> index 0000000..05f1284
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
> @@ -0,0 +1,28 @@
> +From 08752c2f1d21553301bee5757c453c6a36cbe03c Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 20 Feb 2015 09:39:38 +0000
> +Subject: [PATCH] Avoid using libdir from .la which usually points to a host
> + path
> +
> +Upstream-Status: Inappropriate [embedded specific]
> +
> +Signed-off-by: Jonathan Liu <net147@gmail.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + ltmain.sh | 3 +++
> + 1 file changed, 3 insertions(+)
> +
> +diff --git a/ltmain.sh b/ltmain.sh
> +index ee938056bef..9ebc7e3d1e0 100644
> +--- a/ltmain.sh
> ++++ b/ltmain.sh
> +@@ -5628,6 +5628,9 @@ func_mode_link ()
> +           absdir="$abs_ladir"
> +           libdir="$abs_ladir"
> +         else
> ++          # Instead of using libdir from .la which usually points to a host path,
> ++          # use the path the .la is contained in.
> ++          libdir="$abs_ladir"
> +           dir="$libdir"
> +           absdir="$libdir"
> +         fi
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
> new file mode 100644
> index 0000000..886a122
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
> @@ -0,0 +1,50 @@
> +From 5c3d66378c7ff60ca11a875aa4aa6f8a8529d43a Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 20 Feb 2015 09:40:59 +0000
> +Subject: [PATCH] export CPP
> +
> +The OE environment sets and exports CPP as being the target gcc. When
> +building gcc-cross-canadian for a mingw targetted sdk, the following can be found
> +in build.x86_64-pokysdk-mingw32.i586-poky-linux/build-x86_64-linux/libiberty/config.log:
> +
> +configure:3641: checking for _FILE_OFFSET_BITS value needed for large files
> +configure:3666: gcc  -c -isystem/media/build1/poky/build/tmp/sysroots/x86_64-linux/usr/include -O2 -pipe  conftest.c >&5
> +configure:3666: $? = 0
> +configure:3698: result: no
> +configure:3786: checking how to run the C preprocessor
> +configure:3856: result: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32
> +configure:3876: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32 conftest.c
> +configure:3876: $? = 0
> +
> +Note this is a *build* target (in build-x86_64-linux) so it should be
> +using the host "gcc", not x86_64-pokysdk-mingw32-gcc. Since the mingw32
> +headers are very different, using the wrong cpp is a real problem. It is leaking
> +into configure through the CPP variable. Ultimately this leads to build
> +failures related to not being able to include a process.h file for pem-unix.c.
> +
> +The fix is to ensure we export a sane CPP value into the build
> +environment when using build targets. We could define a CPP_FOR_BUILD value which may be
> +the version which needs to be upstreamed but for now, this fix is good enough to
> +avoid the problem.
> +
> +RP 22/08/2013
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + Makefile.in | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/Makefile.in b/Makefile.in
> +index 36e369df6e7..c717903bb13 100644
> +--- a/Makefile.in
> ++++ b/Makefile.in
> +@@ -149,6 +149,7 @@ BUILD_EXPORTS = \
> +       AR="$(AR_FOR_BUILD)"; export AR; \
> +       AS="$(AS_FOR_BUILD)"; export AS; \
> +       CC="$(CC_FOR_BUILD)"; export CC; \
> ++      CPP="$(CC_FOR_BUILD) -E"; export CPP; \
> +       CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> +       CXX="$(CXX_FOR_BUILD)"; export CXX; \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
> new file mode 100644
> index 0000000..2797b2c
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
> @@ -0,0 +1,57 @@
> +From 378b752c5d9a3dba4e58cdadf8b4b4f34ea99a76 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 20 Feb 2015 10:25:11 +0000
> +Subject: [PATCH] Ensure target gcc headers can be included
> +
> +There are a few headers installed as part of the OpenEmbedded
> +gcc-runtime target (omp.h, ssp/*.h). Being installed from a recipe
> +built for the target architecture, these are within the target
> +sysroot and not cross/nativesdk; thus they weren't able to be
> +found by gcc with the existing search paths. Add support for
> +picking up these headers under the sysroot supplied on the gcc
> +command line in order to resolve this.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/Makefile.in  | 2 ++
> + gcc/cppdefault.c | 4 ++++
> + 2 files changed, 6 insertions(+)
> +
> +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> +index 480c9366418..011c7ac2db6 100644
> +--- a/gcc/Makefile.in
> ++++ b/gcc/Makefile.in
> +@@ -618,6 +618,7 @@ libexecdir = @libexecdir@
> +
> + # Directory in which the compiler finds libraries etc.
> + libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
> ++libsubdir_target = $(target_noncanonical)/$(version)
> + # Directory in which the compiler finds executables
> + libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
> + # Directory in which all plugin resources are installed
> +@@ -2946,6 +2947,7 @@ CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\"
> +
> + PREPROCESSOR_DEFINES = \
> +   -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
> ++  -DGCC_INCLUDE_SUBDIR_TARGET=\"$(libsubdir_target)/include\" \
> +   -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
> +   -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
> +   -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \
> +diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
> +index af38cc494ea..2f43b88a0c3 100644
> +--- a/gcc/cppdefault.c
> ++++ b/gcc/cppdefault.c
> +@@ -59,6 +59,10 @@ const struct default_include cpp_include_defaults[]
> +     /* This is the dir for gcc's private headers.  */
> +     { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> + #endif
> ++#ifdef GCC_INCLUDE_SUBDIR_TARGET
> ++    /* This is the dir for gcc's private headers under the specified sysroot.  */
> ++    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
> ++#endif
> + #ifdef LOCAL_INCLUDE_DIR
> +     /* /usr/local/include comes before the fixincluded header files.  */
> +     { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
> new file mode 100644
> index 0000000..c3baf8b
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
> @@ -0,0 +1,35 @@
> +From 870e805d705d99d9b9d7dbd09727f9c1d2ad9c1d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 3 Mar 2015 08:21:19 +0000
> +Subject: [PATCH] Don't search host directory during "relink" if $inst_prefix
> + is provided
> +
> +http://lists.gnu.org/archive/html/libtool-patches/2011-01/msg00026.html
> +
> +Upstream-Status: Submitted
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + ltmain.sh | 5 +++--
> + 1 file changed, 3 insertions(+), 2 deletions(-)
> +
> +diff --git a/ltmain.sh b/ltmain.sh
> +index 9ebc7e3d1e0..7ea79fa8be6 100644
> +--- a/ltmain.sh
> ++++ b/ltmain.sh
> +@@ -6004,12 +6004,13 @@ func_mode_link ()
> +             fi
> +           else
> +             # We cannot seem to hardcode it, guess we'll fake it.
> ++            # Default if $libdir is not relative to the prefix:
> +             add_dir="-L$libdir"
> +-            # Try looking first in the location we're being installed to.
> ++
> +             if test -n "$inst_prefix_dir"; then
> +               case $libdir in
> +                 [\\/]*)
> +-                  add_dir="$add_dir -L$inst_prefix_dir$libdir"
> ++                  add_dir="-L$inst_prefix_dir$libdir"
> +                   ;;
> +               esac
> +             fi
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
> new file mode 100644
> index 0000000..abee486
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
> @@ -0,0 +1,26 @@
> +From aba42de763a619355471efd1573561b0cbf51162 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 28 Apr 2015 23:15:27 -0700
> +Subject: [PATCH] Use SYSTEMLIBS_DIR replacement instead of hardcoding
> + base_libdir
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/aarch64/aarch64-linux.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
> +index e587e2e9ad6..ddc62895693 100644
> +--- a/gcc/config/aarch64/aarch64-linux.h
> ++++ b/gcc/config/aarch64/aarch64-linux.h
> +@@ -21,7 +21,7 @@
> + #ifndef GCC_AARCH64_LINUX_H
> + #define GCC_AARCH64_LINUX_H
> +
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> ++#define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> +
> + #undef MUSL_DYNAMIC_LINKER
> + #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
> new file mode 100644
> index 0000000..c55b66d
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
> @@ -0,0 +1,25 @@
> +From d63820a78d92f302410358293546f01c7ad17bd8 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 28 Apr 2015 23:18:39 -0700
> +Subject: [PATCH] aarch64: Add support for musl ldso
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/aarch64/aarch64-linux.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
> +index ddc62895693..b301825313a 100644
> +--- a/gcc/config/aarch64/aarch64-linux.h
> ++++ b/gcc/config/aarch64/aarch64-linux.h
> +@@ -24,7 +24,7 @@
> + #define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> +
> + #undef MUSL_DYNAMIC_LINKER
> +-#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> ++#define MUSL_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> +
> + #undef  ASAN_CC1_SPEC
> + #define ASAN_CC1_SPEC "%{%:sanitize(address):-funwind-tables}"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
> new file mode 100644
> index 0000000..80c4d22
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
> @@ -0,0 +1,51 @@
> +From 3474e16ad4ea8cf4e0e330568e3bc9039e723dce Mon Sep 17 00:00:00 2001
> +From: Robert Yang <liezhi.yang@windriver.com>
> +Date: Sun, 5 Jul 2015 20:25:18 -0700
> +Subject: [PATCH] libcc1: fix libcc1's install path and rpath
> +
> +* Install libcc1.so and libcc1plugin.so into
> +  $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version), as what we
> +  had done to lto-plugin.
> +* Fix bad RPATH iussue:
> +  gcc-5.2.0: package gcc-plugins contains bad RPATH /patht/to/tmp/sysroots/qemux86-64/usr/lib64/../lib64 in file
> + /path/to/gcc/5.2.0-r0/packages-split/gcc-plugins/usr/lib64/gcc/x86_64-poky-linux/5.2.0/plugin/libcc1plugin.so.0.0.0
> + [rpaths]
> +
> +Upstream-Status: Inappropriate [OE configuration]
> +
> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> +---
> + libcc1/Makefile.am | 4 ++--
> + libcc1/Makefile.in | 4 ++--
> + 2 files changed, 4 insertions(+), 4 deletions(-)
> +
> +diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am
> +index c005b0dad4a..ec31d35b7b9 100644
> +--- a/libcc1/Makefile.am
> ++++ b/libcc1/Makefile.am
> +@@ -37,8 +37,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
> +           $(Wc)$(libiberty_normal)))
> + libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
> +
> +-plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
> +-cc1libdir = $(libdir)/$(libsuffix)
> ++cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
> ++plugindir = $(cc1libdir)
> +
> + if ENABLE_PLUGIN
> + plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
> +diff --git a/libcc1/Makefile.in b/libcc1/Makefile.in
> +index 7104b649026..2103c477468 100644
> +--- a/libcc1/Makefile.in
> ++++ b/libcc1/Makefile.in
> +@@ -393,8 +393,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
> +           $(Wc)$(libiberty_normal)))
> +
> + libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
> +-plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
> +-cc1libdir = $(libdir)/$(libsuffix)
> ++cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
> ++plugindir = $(cc1libdir)
> + @ENABLE_PLUGIN_TRUE@plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
> + @ENABLE_PLUGIN_TRUE@cc1lib_LTLIBRARIES = libcc1.la
> + shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
> new file mode 100644
> index 0000000..dc3e6da
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
> @@ -0,0 +1,349 @@
> +From 702daf2e9cb97337e0e594fcd435b1b61a917d14 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Mon, 7 Dec 2015 23:39:54 +0000
> +Subject: [PATCH] handle sysroot support for nativesdk-gcc
> +
> +Being able to build a nativesdk gcc is useful, particularly in cases
> +where the host compiler may be of an incompatible version (or a 32
> +bit compiler is needed).
> +
> +Sadly, building nativesdk-gcc is not straight forward. We install
> +nativesdk-gcc into a relocatable location and this means that its
> +library locations can change. "Normal" sysroot support doesn't help
> +in this case since the values of paths like "libdir" change, not just
> +base root directory of the system.
> +
> +In order to handle this we do two things:
> +
> +a) Add %r into spec file markup which can be used for injected paths
> +   such as SYSTEMLIBS_DIR (see gcc_multilib_setup()).
> +b) Add other paths which need relocation into a .gccrelocprefix section
> +   which the relocation code will notice and adjust automatically.
> +
> +Upstream-Status: Inappropriate
> +RP 2015/7/28
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Added PREFIXVAR and EXEC_PREFIXVAR to support runtime relocation.  Without
> +these as part of the gccrelocprefix the system can't do runtime relocation
> +if the executable is moved.  (These paths were missed in the original
> +implementation.)
> +
> +Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
> +---
> + gcc/c-family/c-opts.c |  4 +--
> + gcc/cppdefault.c      | 63 ++++++++++++++++++++++++++-----------------
> + gcc/cppdefault.h      | 13 ++++-----
> + gcc/gcc.c             | 20 +++++++++-----
> + gcc/incpath.c         | 12 ++++-----
> + gcc/prefix.c          |  6 +++--
> + 6 files changed, 70 insertions(+), 48 deletions(-)
> +
> +diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c
> +index 58ba0948e79..806bbcfb7a5 100644
> +--- a/gcc/c-family/c-opts.c
> ++++ b/gcc/c-family/c-opts.c
> +@@ -1409,8 +1409,8 @@ add_prefixed_path (const char *suffix, incpath_kind chain)
> +   size_t prefix_len, suffix_len;
> +
> +   suffix_len = strlen (suffix);
> +-  prefix     = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
> +-  prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
> ++  prefix     = iprefix ? iprefix : GCC_INCLUDE_DIRVAR;
> ++  prefix_len = iprefix ? strlen (iprefix) : strlen(GCC_INCLUDE_DIRVAR) - 7;
> +
> +   path = (char *) xmalloc (prefix_len + suffix_len + 1);
> +   memcpy (path, prefix, prefix_len);
> +diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
> +index 2f43b88a0c3..6b6be04686c 100644
> +--- a/gcc/cppdefault.c
> ++++ b/gcc/cppdefault.c
> +@@ -35,6 +35,30 @@
> + # undef CROSS_INCLUDE_DIR
> + #endif
> +
> ++static char GPLUSPLUS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_INCLUDE_DIR;
> ++char GCC_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GCC_INCLUDE_DIR;
> ++static char GPLUSPLUS_TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_TOOL_INCLUDE_DIR;
> ++static char GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_BACKWARD_INCLUDE_DIR;
> ++static char STANDARD_STARTFILE_PREFIX_2VAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET;
> ++#ifdef LOCAL_INCLUDE_DIR
> ++static char LOCAL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = LOCAL_INCLUDE_DIR;
> ++#endif
> ++#ifdef PREFIX_INCLUDE_DIR
> ++static char PREFIX_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX_INCLUDE_DIR;
> ++#endif
> ++#ifdef FIXED_INCLUDE_DIR
> ++static char FIXED_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = FIXED_INCLUDE_DIR;
> ++#endif
> ++#ifdef CROSS_INCLUDE_DIR
> ++static char CROSS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = CROSS_INCLUDE_DIR;
> ++#endif
> ++#ifdef TOOL_INCLUDE_DIR
> ++static char TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = TOOL_INCLUDE_DIR;
> ++#endif
> ++#ifdef NATIVE_SYSTEM_HEADER_DIR
> ++static char NATIVE_SYSTEM_HEADER_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = NATIVE_SYSTEM_HEADER_DIR;
> ++#endif
> ++
> + const struct default_include cpp_include_defaults[]
> + #ifdef INCLUDE_DEFAULTS
> + = INCLUDE_DEFAULTS;
> +@@ -42,38 +66,38 @@ const struct default_include cpp_include_defaults[]
> + = {
> + #ifdef GPLUSPLUS_INCLUDE_DIR
> +     /* Pick up GNU C++ generic include files.  */
> +-    { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1,
> ++    { GPLUSPLUS_INCLUDE_DIRVAR, "G++", 1, 1,
> +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
> + #endif
> + #ifdef GPLUSPLUS_TOOL_INCLUDE_DIR
> +     /* Pick up GNU C++ target-dependent include files.  */
> +-    { GPLUSPLUS_TOOL_INCLUDE_DIR, "G++", 1, 1,
> ++    { GPLUSPLUS_TOOL_INCLUDE_DIRVAR, "G++", 1, 1,
> +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 1 },
> + #endif
> + #ifdef GPLUSPLUS_BACKWARD_INCLUDE_DIR
> +     /* Pick up GNU C++ backward and deprecated include files.  */
> +-    { GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1,
> ++    { GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR, "G++", 1, 1,
> +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
> + #endif
> + #ifdef GCC_INCLUDE_DIR
> +     /* This is the dir for gcc's private headers.  */
> +-    { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> ++    { GCC_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
> + #endif
> + #ifdef GCC_INCLUDE_SUBDIR_TARGET
> +     /* This is the dir for gcc's private headers under the specified sysroot.  */
> +-    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
> ++    { STANDARD_STARTFILE_PREFIX_2VAR, "GCC", 0, 0, 1, 0 },
> + #endif
> + #ifdef LOCAL_INCLUDE_DIR
> +     /* /usr/local/include comes before the fixincluded header files.  */
> +-    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
> +-    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 0 },
> ++    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 2 },
> ++    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 0 },
> + #endif
> + #ifdef PREFIX_INCLUDE_DIR
> +-    { PREFIX_INCLUDE_DIR, 0, 0, 1, 0, 0 },
> ++    { PREFIX_INCLUDE_DIRVAR, 0, 0, 1, 0, 0 },
> + #endif
> + #ifdef FIXED_INCLUDE_DIR
> +     /* This is the dir for fixincludes.  */
> +-    { FIXED_INCLUDE_DIR, "GCC", 0, 0, 0,
> ++    { FIXED_INCLUDE_DIRVAR, "GCC", 0, 0, 0,
> +       /* A multilib suffix needs adding if different multilibs use
> +        different headers.  */
> + #ifdef SYSROOT_HEADERS_SUFFIX_SPEC
> +@@ -85,33 +109,24 @@ const struct default_include cpp_include_defaults[]
> + #endif
> + #ifdef CROSS_INCLUDE_DIR
> +     /* One place the target system's headers might be.  */
> +-    { CROSS_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> ++    { CROSS_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
> + #endif
> + #ifdef TOOL_INCLUDE_DIR
> +     /* Another place the target system's headers might be.  */
> +-    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1, 0, 0 },
> ++    { TOOL_INCLUDE_DIRVAR, "BINUTILS", 0, 1, 0, 0 },
> + #endif
> + #ifdef NATIVE_SYSTEM_HEADER_DIR
> +     /* /usr/include comes dead last.  */
> +-    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
> +-    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
> ++    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
> ++    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
> + #endif
> +     { 0, 0, 0, 0, 0, 0 }
> +   };
> + #endif /* no INCLUDE_DEFAULTS */
> +
> +-#ifdef GCC_INCLUDE_DIR
> +-const char cpp_GCC_INCLUDE_DIR[] = GCC_INCLUDE_DIR;
> +-const size_t cpp_GCC_INCLUDE_DIR_len = sizeof GCC_INCLUDE_DIR - 8;
> +-#else
> +-const char cpp_GCC_INCLUDE_DIR[] = "";
> +-const size_t cpp_GCC_INCLUDE_DIR_len = 0;
> +-#endif
> +-
> + /* The configured prefix.  */
> +-const char cpp_PREFIX[] = PREFIX;
> +-const size_t cpp_PREFIX_len = sizeof PREFIX - 1;
> +-const char cpp_EXEC_PREFIX[] = STANDARD_EXEC_PREFIX;
> ++char PREFIXVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX;
> ++char EXEC_PREFIXVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
> +
> + /* This value is set by cpp_relocated at runtime */
> + const char *gcc_exec_prefix;
> +diff --git a/gcc/cppdefault.h b/gcc/cppdefault.h
> +index a681264f75e..5e10a2fa140 100644
> +--- a/gcc/cppdefault.h
> ++++ b/gcc/cppdefault.h
> +@@ -33,7 +33,8 @@
> +
> + struct default_include
> + {
> +-  const char *const fname;    /* The name of the directory.  */
> ++  const char *fname;     /* The name of the directory.  */
> ++
> +   const char *const component;        /* The component containing the directory
> +                                  (see update_path in prefix.c) */
> +   const char cplusplus;               /* Only look here if we're compiling C++.  */
> +@@ -50,17 +51,13 @@ struct default_include
> + };
> +
> + extern const struct default_include cpp_include_defaults[];
> +-extern const char cpp_GCC_INCLUDE_DIR[];
> +-extern const size_t cpp_GCC_INCLUDE_DIR_len;
> ++extern char GCC_INCLUDE_DIRVAR[] __attribute__ ((section (".gccrelocprefix")));
> +
> + /* The configure-time prefix, i.e., the value supplied as the argument
> +    to --prefix=.  */
> +-extern const char cpp_PREFIX[];
> ++extern char PREFIXVAR[] __attribute__ ((section (".gccrelocprefix")));
> + /* The length of the configure-time prefix.  */
> +-extern const size_t cpp_PREFIX_len;
> +-/* The configure-time execution prefix.  This is typically the lib/gcc
> +-   subdirectory of cpp_PREFIX.  */
> +-extern const char cpp_EXEC_PREFIX[];
> ++extern char EXEC_PREFIXVAR[] __attribute__ ((section (".gccrelocprefix")));
> + /* The run-time execution prefix.  This is typically the lib/gcc
> +    subdirectory of the actual installation.  */
> + extern const char *gcc_exec_prefix;
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index c87f603955f..535d5c3bb65 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -252,6 +252,8 @@ FILE *report_times_to_file = NULL;
> + #endif
> + static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
> +
> ++static char target_relocatable_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = SYSTEMLIBS_DIR;
> ++
> + /* Nonzero means pass the updated target_system_root to the compiler.  */
> +
> + static int target_system_root_changed;
> +@@ -526,6 +528,7 @@ or with constant text in a single argument.
> +  %G     process LIBGCC_SPEC as a spec.
> +  %R     Output the concatenation of target_system_root and
> +         target_sysroot_suffix.
> ++ %r     Output the base path target_relocatable_prefix
> +  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
> +  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
> +  %C     process CPP_SPEC as a spec.
> +@@ -1499,10 +1502,10 @@ static const char *gcc_libexec_prefix;
> +    gcc_exec_prefix is set because, in that case, we know where the
> +    compiler has been installed, and use paths relative to that
> +    location instead.  */
> +-static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
> +-static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
> +-static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
> +-static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> ++static char standard_exec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
> ++static char standard_libexec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_LIBEXEC_PREFIX;
> ++static char standard_bindir_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_BINDIR_PREFIX;
> ++static char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> +
> + /* For native compilers, these are well-known paths containing
> +    components that may be provided by the system.  For cross
> +@@ -1510,9 +1513,9 @@ static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> + static const char *md_exec_prefix = MD_EXEC_PREFIX;
> + static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
> + static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
> +-static const char *const standard_startfile_prefix_1
> ++static char standard_startfile_prefix_1[4096] __attribute__ ((section (".gccrelocprefix")))
> +   = STANDARD_STARTFILE_PREFIX_1;
> +-static const char *const standard_startfile_prefix_2
> ++static char standard_startfile_prefix_2[4096] __attribute__ ((section (".gccrelocprefix")))
> +   = STANDARD_STARTFILE_PREFIX_2;
> +
> + /* A relative path to be used in finding the location of tools
> +@@ -5952,6 +5955,11 @@ do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
> +             }
> +           break;
> +
> ++          case 'r':
> ++              obstack_grow (&obstack, target_relocatable_prefix,
> ++                    strlen (target_relocatable_prefix));
> ++            break;
> ++
> +         case 'S':
> +           value = do_spec_1 (startfile_spec, 0, NULL);
> +           if (value != 0)
> +diff --git a/gcc/incpath.c b/gcc/incpath.c
> +index 9098ab044ab..bfad4ebe382 100644
> +--- a/gcc/incpath.c
> ++++ b/gcc/incpath.c
> +@@ -131,7 +131,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> +   int relocated = cpp_relocated ();
> +   size_t len;
> +
> +-  if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0)
> ++  if (iprefix && (len = strlen(GCC_INCLUDE_DIRVAR) - 7) != 0)
> +     {
> +       /* Look for directories that start with the standard prefix.
> +        "Translate" them, i.e. replace /usr/local/lib/gcc... with
> +@@ -145,7 +145,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> +                now.  */
> +             if (sysroot && p->add_sysroot)
> +               continue;
> +-            if (!filename_ncmp (p->fname, cpp_GCC_INCLUDE_DIR, len))
> ++            if (!filename_ncmp (p->fname, GCC_INCLUDE_DIRVAR, len))
> +               {
> +                 char *str = concat (iprefix, p->fname + len, NULL);
> +                 if (p->multilib == 1 && imultilib)
> +@@ -185,7 +185,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> +             free (sysroot_no_trailing_dir_separator);
> +           }
> +         else if (!p->add_sysroot && relocated
> +-                 && !filename_ncmp (p->fname, cpp_PREFIX, cpp_PREFIX_len))
> ++                 && !filename_ncmp (p->fname, PREFIXVAR, strlen(PREFIXVAR)))
> +           {
> +             static const char *relocated_prefix;
> +             char *ostr;
> +@@ -202,12 +202,12 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> +                 dummy = concat (gcc_exec_prefix, "dummy", NULL);
> +                 relocated_prefix
> +                   = make_relative_prefix (dummy,
> +-                                          cpp_EXEC_PREFIX,
> +-                                          cpp_PREFIX);
> ++                                          EXEC_PREFIXVAR,
> ++                                          PREFIXVAR);
> +                 free (dummy);
> +               }
> +             ostr = concat (relocated_prefix,
> +-                           p->fname + cpp_PREFIX_len,
> ++                           p->fname + strlen(PREFIXVAR),
> +                            NULL);
> +             str = update_path (ostr, p->component);
> +             free (ostr);
> +diff --git a/gcc/prefix.c b/gcc/prefix.c
> +index 1a403e535bd..c26d07bde12 100644
> +--- a/gcc/prefix.c
> ++++ b/gcc/prefix.c
> +@@ -72,7 +72,9 @@ License along with GCC; see the file COPYING3.  If not see
> + #include "prefix.h"
> + #include "common/common-target.h"
> +
> +-static const char *std_prefix = PREFIX;
> ++char PREFIXVAR1[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX;
> ++
> ++static const char *std_prefix = PREFIXVAR1;
> +
> + static const char *get_key_value (char *);
> + static char *translate_name (char *);
> +@@ -212,7 +214,7 @@ translate_name (char *name)
> +       prefix = getenv (key);
> +
> +       if (prefix == 0)
> +-      prefix = PREFIX;
> ++      prefix = PREFIXVAR1;
> +
> +       /* We used to strip trailing DIR_SEPARATORs here, but that can
> +        sometimes yield a result with no separator when one was coded
> +--
> +2.29.2
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
> new file mode 100644
> index 0000000..abf1f84
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
> @@ -0,0 +1,99 @@
> +From 9c0c73ee48dbee2aad57f4dcdad1b7b74e77b944 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Mon, 7 Dec 2015 23:41:45 +0000
> +Subject: [PATCH] Search target sysroot gcc version specific dirs with
> + multilib.
> +
> +We install the gcc libraries (such as crtbegin.p) into
> +<sysroot><libdir>/<target-sys>/5.2.0/
> +which is a default search path for GCC (aka multi_suffix in the
> +code below). <target-sys> is 'machine' in gcc's terminology. We use
> +these directories so that multiple gcc versions could in theory
> +co-exist on target.
> +
> +We only want to build one gcc-cross-canadian per arch and have this work
> +for all multilibs. <target-sys> can be handled by mapping the multilib
> +<target-sys> to the one used by gcc-cross-canadian, e.g.
> +mips64-polkmllib32-linux
> +is symlinked to by mips64-poky-linux.
> +
> +The default gcc search path in the target sysroot for a "lib64" mutlilib
> +is:
> +
> +<sysroot>/lib32/mips64-poky-linux/5.2.0/
> +<sysroot>/lib32/../lib64/
> +<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
> +<sysroot>/usr/lib32/../lib64/
> +<sysroot>/lib32/
> +<sysroot>/usr/lib32/
> +
> +which means that the lib32 crtbegin.o will be found and the lib64 ones
> +will not which leads to compiler failures.
> +
> +This patch injects a multilib version of that path first so the lib64
> +binaries can be found first. With this change the search path becomes:
> +
> +<sysroot>/lib32/../lib64/mips64-poky-linux/5.2.0/
> +<sysroot>/lib32/mips64-poky-linux/5.2.0/
> +<sysroot>/lib32/../lib64/
> +<sysroot>/usr/lib32/../lib64/mips64-poky-linux/5.2.0/
> +<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
> +<sysroot>/usr/lib32/../lib64/
> +<sysroot>/lib32/
> +<sysroot>/usr/lib32/
> +
> +Upstream-Status: Pending
> +RP 2015/7/31
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/gcc.c | 29 ++++++++++++++++++++++++++++-
> + 1 file changed, 28 insertions(+), 1 deletion(-)
> +
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index 535d5c3bb65..04647ae812d 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -2616,7 +2616,7 @@ for_each_path (const struct path_prefix *paths,
> +       if (path == NULL)
> +       {
> +         len = paths->max_len + extra_space + 1;
> +-        len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
> ++        len += MAX ((suffix_len + multi_os_dir_len), multiarch_len);
> +         path = XNEWVEC (char, len);
> +       }
> +
> +@@ -2628,6 +2628,33 @@ for_each_path (const struct path_prefix *paths,
> +         /* Look first in MACHINE/VERSION subdirectory.  */
> +         if (!skip_multi_dir)
> +           {
> ++            if (!(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
> ++              {
> ++                const char *this_multi;
> ++                size_t this_multi_len;
> ++
> ++                if (pl->os_multilib)
> ++                  {
> ++                    this_multi = multi_os_dir;
> ++                    this_multi_len = multi_os_dir_len;
> ++                  }
> ++                else
> ++                  {
> ++                    this_multi = multi_dir;
> ++                    this_multi_len = multi_dir_len;
> ++                  }
> ++
> ++                /* Look in multilib MACHINE/VERSION subdirectory first */
> ++                if (this_multi_len)
> ++                  {
> ++                    memcpy (path + len, this_multi, this_multi_len + 1);
> ++                    memcpy (path + len + this_multi_len, multi_suffix, suffix_len + 1);
> ++                    ret = callback (path, callback_info);
> ++                      if (ret)
> ++                        break;
> ++                  }
> ++              }
> ++
> +             memcpy (path + len, multi_suffix, suffix_len + 1);
> +             ret = callback (path, callback_info);
> +             if (ret)
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
> new file mode 100644
> index 0000000..97bf2f3
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
> @@ -0,0 +1,134 @@
> +From 3a003af8804dda90fdf4862eca5f66cb12faaf02 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Mon, 7 Dec 2015 23:42:45 +0000
> +Subject: [PATCH] Fix various _FOR_BUILD and related variables
> +
> +When doing a FOR_BUILD thing, you have to override CFLAGS with
> +CFLAGS_FOR_BUILD. And if you use C++, you also have to override
> +CXXFLAGS with CXXFLAGS_FOR_BUILD.
> +Without this, when building for mingw, you end up trying to use
> +the mingw headers for a host build.
> +
> +The same goes for other variables as well, such as CPPFLAGS,
> +CPP, and GMPINC.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
> +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + Makefile.in      | 6 ++++++
> + Makefile.tpl     | 5 +++++
> + gcc/Makefile.in  | 2 +-
> + gcc/configure    | 2 +-
> + gcc/configure.ac | 2 +-
> + 5 files changed, 14 insertions(+), 3 deletions(-)
> +
> +diff --git a/Makefile.in b/Makefile.in
> +index c717903bb13..5abc649868d 100644
> +--- a/Makefile.in
> ++++ b/Makefile.in
> +@@ -152,6 +152,7 @@ BUILD_EXPORTS = \
> +       CPP="$(CC_FOR_BUILD) -E"; export CPP; \
> +       CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> ++      CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
> +       CXX="$(CXX_FOR_BUILD)"; export CXX; \
> +       CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
> +       GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
> +@@ -171,6 +172,9 @@ BUILD_EXPORTS = \
> + # built for the build system to override those in BASE_FLAGS_TO_PASS.
> + EXTRA_BUILD_FLAGS = \
> +       CFLAGS="$(CFLAGS_FOR_BUILD)" \
> ++      CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
> ++      CPP="$(CC_FOR_BUILD) -E" \
> ++      CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
> +       LDFLAGS="$(LDFLAGS_FOR_BUILD)"
> +
> + # This is the list of directories to built for the host system.
> +@@ -188,6 +192,7 @@ HOST_SUBDIR = @host_subdir@
> + HOST_EXPORTS = \
> +       $(BASE_EXPORTS) \
> +       CC="$(CC)"; export CC; \
> ++      CPP="$(CC) -E"; export CPP; \
> +       ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
> +       CFLAGS="$(CFLAGS)"; export CFLAGS; \
> +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> +@@ -776,6 +781,7 @@ BASE_FLAGS_TO_PASS = \
> +       "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
> +       "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
> +       "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
> ++      "CXXFLAGS_FOR_BUILD=$(CXXFLAGS_FOR_BUILD)" \
> +       "EXPECT=$(EXPECT)" \
> +       "FLEX=$(FLEX)" \
> +       "INSTALL=$(INSTALL)" \
> +diff --git a/Makefile.tpl b/Makefile.tpl
> +index efed1511750..778beb705b4 100644
> +--- a/Makefile.tpl
> ++++ b/Makefile.tpl
> +@@ -154,6 +154,7 @@ BUILD_EXPORTS = \
> +       CC="$(CC_FOR_BUILD)"; export CC; \
> +       CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> ++      CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
> +       CXX="$(CXX_FOR_BUILD)"; export CXX; \
> +       CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
> +       GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
> +@@ -173,6 +174,9 @@ BUILD_EXPORTS = \
> + # built for the build system to override those in BASE_FLAGS_TO_PASS.
> + EXTRA_BUILD_FLAGS = \
> +       CFLAGS="$(CFLAGS_FOR_BUILD)" \
> ++      CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
> ++      CPP="$(CC_FOR_BUILD) -E" \
> ++      CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
> +       LDFLAGS="$(LDFLAGS_FOR_BUILD)"
> +
> + # This is the list of directories to built for the host system.
> +@@ -190,6 +194,7 @@ HOST_SUBDIR = @host_subdir@
> + HOST_EXPORTS = \
> +       $(BASE_EXPORTS) \
> +       CC="$(CC)"; export CC; \
> ++      CPP="$(CC) -E"; export CPP; \
> +       ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
> +       CFLAGS="$(CFLAGS)"; export CFLAGS; \
> +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> +index 011c7ac2db6..2f1165f7b5e 100644
> +--- a/gcc/Makefile.in
> ++++ b/gcc/Makefile.in
> +@@ -805,7 +805,7 @@ BUILD_LDFLAGS=@BUILD_LDFLAGS@
> + BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@
> + BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG)
> + BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
> +-              -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS)
> ++              -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS_FOR_BUILD)
> +
> + # Actual name to use when installing a native compiler.
> + GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
> +diff --git a/gcc/configure b/gcc/configure
> +index 825a9652329..ff46cf58960 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -12314,7 +12314,7 @@ else
> +       CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
> +       CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
> +       LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
> +-      GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
> ++      GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
> +       ${realsrcdir}/configure \
> +               --enable-languages=${enable_languages-all} \
> +               ${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 6099eb3251f..b3c345b61dc 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -1898,7 +1898,7 @@ else
> +       CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
> +       CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
> +       LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
> +-      GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
> ++      GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
> +       ${realsrcdir}/configure \
> +               --enable-languages=${enable_languages-all} \
> +               ${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
> new file mode 100644
> index 0000000..3cd75b7
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
> @@ -0,0 +1,25 @@
> +From 4e53d0ae70af85af0e112a48a3e4dfe4c39f4a8d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 2 Feb 2016 10:26:10 -0800
> +Subject: [PATCH] nios2: Define MUSL_DYNAMIC_LINKER
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Marek Vasut <marex@denx.de>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/nios2/linux.h | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/gcc/config/nios2/linux.h b/gcc/config/nios2/linux.h
> +index 4bdcdcca1f0..e7943a9d640 100644
> +--- a/gcc/config/nios2/linux.h
> ++++ b/gcc/config/nios2/linux.h
> +@@ -30,6 +30,7 @@
> + #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
> +
> + #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-nios2.so.1"
> ++#define MUSL_DYNAMIC_LINKER  "/lib/ld-musl-nios2.so.1"
> +
> + #undef LINK_SPEC
> + #define LINK_SPEC LINK_SPEC_ENDIAN \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
> new file mode 100644
> index 0000000..2a6769a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
> @@ -0,0 +1,84 @@
> +From 5db0404eb770ac477fd99d444226bcf021067584 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 27 Jun 2017 18:10:54 -0700
> +Subject: [PATCH] Add ssp_nonshared to link commandline for musl targets
> +
> +when -fstack-protector options are enabled we need to
> +link with ssp_shared on musl since it does not provide
> +the __stack_chk_fail_local() so essentially it provides
> +libssp but not libssp_nonshared something like
> +TARGET_LIBC_PROVIDES_SSP_BUT_NOT_SSP_NONSHARED
> + where-as for glibc the needed symbols
> +are already present in libc_nonshared library therefore
> +we do not need any library helper on glibc based systems
> +but musl needs the libssp_noshared from gcc
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/linux.h          |  7 +++++++
> + gcc/config/rs6000/linux.h   | 10 ++++++++++
> + gcc/config/rs6000/linux64.h | 10 ++++++++++
> + 3 files changed, 27 insertions(+)
> +
> +diff --git a/gcc/config/linux.h b/gcc/config/linux.h
> +index 0c1a8118a26..bdc2a2d0659 100644
> +--- a/gcc/config/linux.h
> ++++ b/gcc/config/linux.h
> +@@ -195,6 +195,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> +     { GCC_INCLUDE_DIR, "GCC", 0, 1, 0, 0 },           \
> +     { 0, 0, 0, 0, 0, 0 }                              \
> +   }
> ++#ifdef TARGET_LIBC_PROVIDES_SSP
> ++#undef LINK_SSP_SPEC
> ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> ++                     "|fstack-protector-strong|fstack-protector-explicit" \
> ++                     ":-lssp_nonshared}"
> ++#endif
> ++
> + #endif
> +
> + #if (DEFAULT_LIBC == LIBC_UCLIBC) && defined (SINGLE_LIBC) /* uClinux */
> +diff --git a/gcc/config/rs6000/linux.h b/gcc/config/rs6000/linux.h
> +index b7026fcbee7..dd54d6c393e 100644
> +--- a/gcc/config/rs6000/linux.h
> ++++ b/gcc/config/rs6000/linux.h
> +@@ -94,6 +94,16 @@
> +                                        " -m elf32ppclinux")
> + #endif
> +
> ++/* link libssp_nonshared.a with musl */
> ++#if DEFAULT_LIBC == LIBC_MUSL
> ++#ifdef TARGET_LIBC_PROVIDES_SSP
> ++#undef LINK_SSP_SPEC
> ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> ++                     "|fstack-protector-strong|fstack-protector-explicit" \
> ++                     ":-lssp_nonshared}"
> ++#endif
> ++#endif
> ++
> + #undef LINK_OS_LINUX_SPEC
> + #define LINK_OS_LINUX_SPEC LINK_OS_LINUX_EMUL " %{!shared: %{!static: \
> +   %{!static-pie: \
> +diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
> +index 967c1c43c63..dc5e4d97975 100644
> +--- a/gcc/config/rs6000/linux64.h
> ++++ b/gcc/config/rs6000/linux64.h
> +@@ -452,6 +452,16 @@ extern int dot_symbols;
> +                                          " -m elf64ppc")
> + #endif
> +
> ++/* link libssp_nonshared.a with musl */
> ++#if DEFAULT_LIBC == LIBC_MUSL
> ++#ifdef TARGET_LIBC_PROVIDES_SSP
> ++#undef LINK_SSP_SPEC
> ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> ++                     "|fstack-protector-strong|fstack-protector-explicit" \
> ++                     ":-lssp_nonshared}"
> ++#endif
> ++#endif
> ++
> + #define LINK_OS_LINUX_SPEC32 LINK_OS_LINUX_EMUL32 " %{!shared: %{!static: \
> +   %{!static-pie: \
> +     %{rdynamic:-export-dynamic} \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
> new file mode 100644
> index 0000000..767cba0
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
> @@ -0,0 +1,26 @@
> +From fbc926dbf6a47fa623b9c94cd9b09a0e90448fdc Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Wed, 4 May 2016 21:11:34 -0700
> +Subject: [PATCH] Link libgcc using LDFLAGS, not just SHLIB_LDFLAGS
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + libgcc/config/t-slibgcc | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/libgcc/config/t-slibgcc b/libgcc/config/t-slibgcc
> +index c997553447c..330352c2c81 100644
> +--- a/libgcc/config/t-slibgcc
> ++++ b/libgcc/config/t-slibgcc
> +@@ -32,7 +32,7 @@ SHLIB_INSTALL_SOLINK = $(LN_S) $(SHLIB_SONAME) \
> +       $(DESTDIR)$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
> +
> + SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
> +-      $(SHLIB_LDFLAGS) \
> ++      $(LDFLAGS) $(SHLIB_LDFLAGS) \
> +       -o $(SHLIB_DIR)/$(SHLIB_SONAME).tmp @multilib_flags@ \
> +       $(SHLIB_OBJS) $(SHLIB_LC) && \
> +       rm -f $(SHLIB_DIR)/$(SHLIB_SOLINK) && \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
> new file mode 100644
> index 0000000..4f18907
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
> @@ -0,0 +1,88 @@
> +From 24dc04dc8d69e3bf61322615b3ef18e02ccd311e Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 3 Feb 2017 12:56:00 -0800
> +Subject: [PATCH] sync gcc stddef.h with musl
> +
> +musl defines ptrdiff_t size_t and wchar_t
> +so dont define them here if musl is definining them
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/ginclude/stddef.h | 9 +++++++++
> + 1 file changed, 9 insertions(+)
> +
> +diff --git a/gcc/ginclude/stddef.h b/gcc/ginclude/stddef.h
> +index 9d67eac4947..6cb5edbedb4 100644
> +--- a/gcc/ginclude/stddef.h
> ++++ b/gcc/ginclude/stddef.h
> +@@ -128,6 +128,7 @@ _TYPE_wchar_t;
> + #ifndef ___int_ptrdiff_t_h
> + #ifndef _GCC_PTRDIFF_T
> + #ifndef _PTRDIFF_T_DECLARED /* DragonFly */
> ++#ifndef __DEFINED_ptrdiff_t /* musl */
> + #define _PTRDIFF_T
> + #define _T_PTRDIFF_
> + #define _T_PTRDIFF
> +@@ -137,10 +138,12 @@ _TYPE_wchar_t;
> + #define ___int_ptrdiff_t_h
> + #define _GCC_PTRDIFF_T
> + #define _PTRDIFF_T_DECLARED
> ++#define __DEFINED_ptrdiff_t /* musl */
> + #ifndef __PTRDIFF_TYPE__
> + #define __PTRDIFF_TYPE__ long int
> + #endif
> + typedef __PTRDIFF_TYPE__ ptrdiff_t;
> ++#endif /* __DEFINED_ptrdiff_t */
> + #endif /* _PTRDIFF_T_DECLARED */
> + #endif /* _GCC_PTRDIFF_T */
> + #endif /* ___int_ptrdiff_t_h */
> +@@ -178,6 +181,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
> + #ifndef _GCC_SIZE_T
> + #ifndef _SIZET_
> + #ifndef __size_t
> ++#ifndef __DEFINED_size_t /* musl */
> + #define __size_t__    /* BeOS */
> + #define __SIZE_T__    /* Cray Unicos/Mk */
> + #define _SIZE_T
> +@@ -194,6 +198,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
> + #define ___int_size_t_h
> + #define _GCC_SIZE_T
> + #define _SIZET_
> ++#define __DEFINED_size_t /* musl */
> + #if defined (__FreeBSD__) \
> +   || defined(__DragonFly__) \
> +   || defined(__FreeBSD_kernel__) \
> +@@ -228,6 +233,7 @@ typedef long ssize_t;
> + #endif /* _SIZE_T */
> + #endif /* __SIZE_T__ */
> + #endif /* __size_t__ */
> ++#endif /* __DEFINED_size_t */
> + #undef        __need_size_t
> + #endif /* _STDDEF_H or __need_size_t.  */
> +
> +@@ -257,6 +263,7 @@ typedef long ssize_t;
> + #ifndef ___int_wchar_t_h
> + #ifndef __INT_WCHAR_T_H
> + #ifndef _GCC_WCHAR_T
> ++#ifndef __DEFINED_wchar_t /* musl */
> + #define __wchar_t__   /* BeOS */
> + #define __WCHAR_T__   /* Cray Unicos/Mk */
> + #define _WCHAR_T
> +@@ -272,6 +279,7 @@ typedef long ssize_t;
> + #define __INT_WCHAR_T_H
> + #define _GCC_WCHAR_T
> + #define _WCHAR_T_DECLARED
> ++#define __DEFINED_wchar_t /* musl */
> +
> + /* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
> +    instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other
> +@@ -337,6 +345,7 @@ typedef __WCHAR_TYPE__ wchar_t;
> + #endif
> + #endif /* __WCHAR_T__ */
> + #endif /* __wchar_t__ */
> ++#endif /* __DEFINED_wchar_t musl */
> + #undef        __need_wchar_t
> + #endif /* _STDDEF_H or __need_wchar_t.  */
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
> new file mode 100644
> index 0000000..702279a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
> @@ -0,0 +1,57 @@
> +From 27b8ba5555ada2dab076988529bfb84d00a4b901 Mon Sep 17 00:00:00 2001
> +From: Juro Bystricky <juro.bystricky@intel.com>
> +Date: Mon, 19 Mar 2018 22:31:20 -0700
> +Subject: [PATCH] fix segmentation fault in precompiled header generation
> +
> +Prevent a segmentation fault which occurs when using incorrect
> +structure trying to access name of some named operators, such as
> +CPP_NOT, CPP_AND etc. "token->val.node.spelling" cannot be used in
> +those cases, as is may not be initialized at all.
> +
> +[YOCTO #11738]
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + libcpp/lex.c | 26 +++++++++++++++++++++-----
> + 1 file changed, 21 insertions(+), 5 deletions(-)
> +
> +diff --git a/libcpp/lex.c b/libcpp/lex.c
> +index 56ac3a1dd73..73a951148b3 100644
> +--- a/libcpp/lex.c
> ++++ b/libcpp/lex.c
> +@@ -3311,11 +3311,27 @@ cpp_spell_token (cpp_reader *pfile, const cpp_token *token,
> +     spell_ident:
> +     case SPELL_IDENT:
> +       if (forstring)
> +-      {
> +-        memcpy (buffer, NODE_NAME (token->val.node.spelling),
> +-                NODE_LEN (token->val.node.spelling));
> +-        buffer += NODE_LEN (token->val.node.spelling);
> +-      }
> ++        {
> ++          if (token->type == CPP_NAME)
> ++            {
> ++              memcpy (buffer, NODE_NAME (token->val.node.spelling),
> ++                    NODE_LEN (token->val.node.spelling));
> ++              buffer += NODE_LEN (token->val.node.spelling);
> ++              break;
> ++            }
> ++          /* NAMED_OP, cannot use node.spelling */
> ++          if (token->flags & NAMED_OP)
> ++            {
> ++              const char *str = cpp_named_operator2name (token->type);
> ++              if (str)
> ++                {
> ++                  size_t len = strlen(str);
> ++                  memcpy(buffer, str, len);
> ++                  buffer += len;
> ++                }
> ++              break;
> ++            }
> ++        }
> +       else
> +       buffer = _cpp_spell_ident_ucns (buffer, token->val.node.node);
> +       break;
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
> new file mode 100644
> index 0000000..0a0767b
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
> @@ -0,0 +1,255 @@
> +From 2512aacf023c679d86d8f40caff4f6ff412b32ff Mon Sep 17 00:00:00 2001
> +From: RAGHUNATH LOLUR <raghunath.lolur@kpit.com>
> +Date: Wed, 6 Dec 2017 22:52:26 -0800
> +Subject: [PATCH] Fix for testsuite failure
> +
> +2017-11-16  Raghunath Lolur  <raghunath.lolur@kpit.com>
> +
> +       * gcc.dg/pr56275.c: If SSE is disabled, ensure that
> +       "-mfpmath" is not set to use SSE. Set "-mfpmath=387".
> +       * gcc.dg/pr68306.c: Likewise
> +       * gcc.dg/pr68306-2.c: Likewise
> +       * gcc.dg/pr68306-3.c: Likewise
> +       * gcc.dg/pr69634.c: Likewise
> +       * gcc.target/i386/amd64-abi-1.c: Likewise
> +       * gcc.target/i386/funcspec-6.c: Likewise
> +       * gcc.target/i386/interrupt-387-err-1.c: Likewise
> +       * gcc.target/i386/isa-14.c: Likewise
> +       * gcc.target/i386/pr44948-2b.c: Likewise
> +       * gcc.target/i386/pr53425-1.c: Likewise
> +       * gcc.target/i386/pr53425-2.c: Likewise
> +       * gcc.target/i386/pr55247.c: Likewise
> +       * gcc.target/i386/pr59644.c: Likewise
> +       * gcc.target/i386/pr62120.c: Likewise
> +       * gcc.target/i386/pr70467-1.c: Likewise
> +       * gcc.target/i386/warn-vect-op-1.c: Likewise
> +
> +If -Wall, -Werror are used during compilation various test cases fail
> +to compile.
> +
> +If SSE is disabled, be sure to -mfpmath=387 to resolve this.
> +
> +This patch removes the changes to Changelog from the original patch.
> +This will help us avoid conflicts.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> +---
> + gcc/testsuite/gcc.dg/pr56275.c                      | 2 +-
> + gcc/testsuite/gcc.dg/pr68306-2.c                    | 2 +-
> + gcc/testsuite/gcc.dg/pr68306-3.c                    | 2 +-
> + gcc/testsuite/gcc.dg/pr68306.c                      | 2 +-
> + gcc/testsuite/gcc.dg/pr69634.c                      | 2 +-
> + gcc/testsuite/gcc.target/i386/amd64-abi-1.c         | 2 +-
> + gcc/testsuite/gcc.target/i386/funcspec-6.c          | 1 +
> + gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | 2 +-
> + gcc/testsuite/gcc.target/i386/isa-14.c              | 2 +-
> + gcc/testsuite/gcc.target/i386/pr44948-2b.c          | 2 +-
> + gcc/testsuite/gcc.target/i386/pr53425-1.c           | 2 +-
> + gcc/testsuite/gcc.target/i386/pr53425-2.c           | 2 +-
> + gcc/testsuite/gcc.target/i386/pr55247.c             | 2 +-
> + gcc/testsuite/gcc.target/i386/pr59644.c             | 2 +-
> + gcc/testsuite/gcc.target/i386/pr62120.c             | 2 +-
> + gcc/testsuite/gcc.target/i386/pr70467-1.c           | 2 +-
> + gcc/testsuite/gcc.target/i386/warn-vect-op-1.c      | 2 +-
> + 17 files changed, 17 insertions(+), 16 deletions(-)
> +
> +diff --git a/gcc/testsuite/gcc.dg/pr56275.c b/gcc/testsuite/gcc.dg/pr56275.c
> +index b901bb2b199..a4f6c95e1a1 100644
> +--- a/gcc/testsuite/gcc.dg/pr56275.c
> ++++ b/gcc/testsuite/gcc.dg/pr56275.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O2" } */
> +-/* { dg-additional-options "-mno-sse" { target { i?86-*-* x86_64-*-* } } } */
> ++/* { dg-additional-options "-mno-sse -mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */
> +
> + typedef long long v2tw __attribute__ ((vector_size (2 * sizeof (long long))));
> +
> +diff --git a/gcc/testsuite/gcc.dg/pr68306-2.c b/gcc/testsuite/gcc.dg/pr68306-2.c
> +index 4672ebe7987..2a368c484b6 100644
> +--- a/gcc/testsuite/gcc.dg/pr68306-2.c
> ++++ b/gcc/testsuite/gcc.dg/pr68306-2.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O3" } */
> +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> +
> + struct {
> +     int tz_minuteswest;
> +diff --git a/gcc/testsuite/gcc.dg/pr68306-3.c b/gcc/testsuite/gcc.dg/pr68306-3.c
> +index f5a8c102cf8..df3390c64c2 100644
> +--- a/gcc/testsuite/gcc.dg/pr68306-3.c
> ++++ b/gcc/testsuite/gcc.dg/pr68306-3.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O3" } */
> +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> + /* { dg-additional-options "-mno-altivec -mno-vsx" { target powerpc*-*-* } } */
> +
> + extern void fn2();
> +diff --git a/gcc/testsuite/gcc.dg/pr68306.c b/gcc/testsuite/gcc.dg/pr68306.c
> +index 54e5b40f221..0813389e2c1 100644
> +--- a/gcc/testsuite/gcc.dg/pr68306.c
> ++++ b/gcc/testsuite/gcc.dg/pr68306.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O3" } */
> +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> +
> + enum powerpc_pmc_type { PPC_PMC_IBM };
> + struct {
> +diff --git a/gcc/testsuite/gcc.dg/pr69634.c b/gcc/testsuite/gcc.dg/pr69634.c
> +index 60a56149463..bcc23f9ccd6 100644
> +--- a/gcc/testsuite/gcc.dg/pr69634.c
> ++++ b/gcc/testsuite/gcc.dg/pr69634.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O2 -fno-dce -fschedule-insns -fno-tree-vrp -fcompare-debug -Wno-psabi" } */
> +-/* { dg-additional-options "-mno-sse" { target i?86-*-* x86_64-*-* } } */
> ++/* { dg-additional-options "-mno-sse -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> + /* { dg-require-effective-target scheduling } */
> +
> + typedef unsigned short u16;
> +diff --git a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> +index 69fde57bf06..7f1f1c03edf 100644
> +--- a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile { target { ! ia32 } } } */
> +-/* { dg-options "-mno-sse" } */
> ++/* { dg-options "-mno-sse -mfpmath=387" } */
> + /* { dg-additional-options "-mabi=sysv" { target *-*-mingw* } } */
> +
> + double foo(void) { return 0; }        /* { dg-error "SSE disabled" } */
> +diff --git a/gcc/testsuite/gcc.target/i386/funcspec-6.c b/gcc/testsuite/gcc.target/i386/funcspec-6.c
> +index ea896b7ebfd..bf15569b826 100644
> +--- a/gcc/testsuite/gcc.target/i386/funcspec-6.c
> ++++ b/gcc/testsuite/gcc.target/i386/funcspec-6.c
> +@@ -1,6 +1,7 @@
> + /* Test whether all of the 64-bit function specific options are accepted
> +    without error.  */
> + /* { dg-do compile { target { ! ia32 } } } */
> ++/* { dg-additional-options "-mfpmath=387" } */
> +
> + #include "funcspec-56.inc"
> +
> +diff --git a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> +index 8561a3c26d6..6377f814645 100644
> +--- a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile } */
> +-/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387" } */
> ++/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387 -mfpmath=387" } */
> +
> + typedef unsigned int uword_t __attribute__ ((mode (__word__)));
> +
> +diff --git a/gcc/testsuite/gcc.target/i386/isa-14.c b/gcc/testsuite/gcc.target/i386/isa-14.c
> +index 5d49e6e77fe..1de2db92bdd 100644
> +--- a/gcc/testsuite/gcc.target/i386/isa-14.c
> ++++ b/gcc/testsuite/gcc.target/i386/isa-14.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do run } */
> +-/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse" } */
> ++/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse -mfpmath=387" } */
> +
> + extern void abort (void);
> +
> +diff --git a/gcc/testsuite/gcc.target/i386/pr44948-2b.c b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> +index fa1769b62fb..f79fb12726f 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile } */
> +-/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic" } */
> ++/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic -mfpmath=387" } */
> +
> + struct A
> + {
> +diff --git a/gcc/testsuite/gcc.target/i386/pr53425-1.c b/gcc/testsuite/gcc.target/i386/pr53425-1.c
> +index 2e89ff7d81d..6339bf6b736 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr53425-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr53425-1.c
> +@@ -1,6 +1,6 @@
> + /* PR target/53425 */
> + /* { dg-do compile { target { ! ia32 } } } */
> +-/* { dg-options "-O2 -mno-sse" } */
> ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> + /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
> +
> + typedef double __v2df __attribute__ ((__vector_size__ (16)));
> +diff --git a/gcc/testsuite/gcc.target/i386/pr53425-2.c b/gcc/testsuite/gcc.target/i386/pr53425-2.c
> +index 61f6283dbe9..2c5a55f0ac3 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr53425-2.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr53425-2.c
> +@@ -1,6 +1,6 @@
> + /* PR target/53425 */
> + /* { dg-do compile { target { ! ia32 } } } */
> +-/* { dg-options "-O2 -mno-sse" } */
> ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> + /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
> +
> + typedef float __v2sf __attribute__ ((__vector_size__ (8)));
> +diff --git a/gcc/testsuite/gcc.target/i386/pr55247.c b/gcc/testsuite/gcc.target/i386/pr55247.c
> +index 23366d0909d..9810e3abb76 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr55247.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr55247.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile { target { ! ia32 } } } */
> + /* { dg-require-effective-target maybe_x32 } */
> +-/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long" } */
> ++/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long -mfpmath=387" } */
> +
> + typedef unsigned int uint32_t;
> + typedef uint32_t Elf32_Word;
> +diff --git a/gcc/testsuite/gcc.target/i386/pr59644.c b/gcc/testsuite/gcc.target/i386/pr59644.c
> +index 96006b3e338..4287e4538bf 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr59644.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr59644.c
> +@@ -1,6 +1,6 @@
> + /* PR target/59644 */
> + /* { dg-do run { target lp64 } } */
> +-/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone" } */
> ++/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone -mfpmath=387" } */
> +
> + /* This test uses __builtin_trap () instead of e.g. abort,
> +    because due to -mpreferred-stack-boundary=3 it should not call
> +diff --git a/gcc/testsuite/gcc.target/i386/pr62120.c b/gcc/testsuite/gcc.target/i386/pr62120.c
> +index 28d85d37712..c93266bd4bc 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr62120.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr62120.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile } */
> +-/* { dg-options "-mno-sse" } */
> ++/* { dg-options "-mno-sse -mfpmath=387" } */
> +
> + void foo ()
> + {
> +diff --git a/gcc/testsuite/gcc.target/i386/pr70467-1.c b/gcc/testsuite/gcc.target/i386/pr70467-1.c
> +index 4e112c88d07..bcfb396a68d 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr70467-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr70467-1.c
> +@@ -1,6 +1,6 @@
> + /* PR rtl-optimization/70467 */
> + /* { dg-do compile } */
> +-/* { dg-options "-O2 -mno-sse" } */
> ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> +
> + void foo (unsigned long long *);
> +
> +diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> +index 6cda1534311..26e37f5b8ba 100644
> +--- a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile { target { ! ia32 } } }  */
> +-/* { dg-options "-mno-sse -Wvector-operation-performance" }  */
> ++/* { dg-options "-mno-sse -Wvector-operation-performance -mfpmath=387" }  */
> + #define vector(elcount, type)  \
> + __attribute__((vector_size((elcount)*sizeof(type)))) type
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
> new file mode 100644
> index 0000000..ba7c2b8
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
> @@ -0,0 +1,38 @@
> +From 3fc06241ce37e2e4b3ed21ace28d347eb511448d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Wed, 6 Jun 2018 12:10:22 -0700
> +Subject: [PATCH] Re-introduce spe commandline options
> +
> +This should ensure that we keep accepting
> +spe options
> +
> +Upstream-Status: Inappropriate [SPE port is removed from rs600 port]
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/rs6000/rs6000.opt | 12 ++++++++++++
> + 1 file changed, 12 insertions(+)
> +
> +diff --git a/gcc/config/rs6000/rs6000.opt b/gcc/config/rs6000/rs6000.opt
> +index f95b8279270..0e52d51409d 100644
> +--- a/gcc/config/rs6000/rs6000.opt
> ++++ b/gcc/config/rs6000/rs6000.opt
> +@@ -344,6 +344,18 @@ mdebug=
> + Target RejectNegative Joined
> + -mdebug=      Enable debug output.
> +
> ++mspe
> ++Target Var(rs6000_spe) Save
> ++Generate SPE SIMD instructions on E500.
> ++
> ++mabi=spe
> ++Target RejectNegative Var(rs6000_spe_abi) Save
> ++Use the SPE ABI extensions.
> ++
> ++mabi=no-spe
> ++Target RejectNegative Var(rs6000_spe_abi, 0)
> ++Do not use the SPE ABI extensions.
> ++
> + mabi=altivec
> + Target RejectNegative Var(rs6000_altivec_abi) Save
> + Use the AltiVec ABI extensions.
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
> new file mode 100644
> index 0000000..4ce9dc6
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
> @@ -0,0 +1,83 @@
> +From b42ff59c3fe2967d37815c8db72a47b9b7f585b4 Mon Sep 17 00:00:00 2001
> +From: Szabolcs Nagy <nsz@port70.net>
> +Date: Sat, 24 Oct 2015 20:09:53 +0000
> +Subject: [PATCH] libgcc_s: Use alias for __cpu_indicator_init instead of
> + symver
> +
> +Adapter from
> +
> +https://gcc.gnu.org/ml/gcc-patches/2015-05/msg00899.html
> +
> +This fix was debated but hasnt been applied gcc upstream since
> +they expect musl to support '@' in symbol versioning which is
> +a sun/gnu versioning extention. This patch however avoids the
> +need for the '@' symbols at all
> +
> +libgcc/Changelog:
> +
> +2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
> +
> +       * config/i386/cpuinfo.c (__cpu_indicator_init_local): Add.
> +       (__cpu_indicator_init@GCC_4.8.0, __cpu_model@GCC_4.8.0): Remove.
> +
> +       * config/i386/t-linux (HOST_LIBGCC2_CFLAGS): Remove -DUSE_ELF_SYMVER.
> +
> +gcc/Changelog:
> +
> +2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
> +
> +       * config/i386/i386-expand.c (ix86_expand_builtin): Make __builtin_cpu_init
> +       call __cpu_indicator_init_local instead of __cpu_indicator_init.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/i386/i386-expand.c | 4 ++--
> + libgcc/config/i386/cpuinfo.c  | 6 +++---
> + libgcc/config/i386/t-linux    | 2 +-
> + 3 files changed, 6 insertions(+), 6 deletions(-)
> +
> +diff --git a/gcc/config/i386/i386-expand.c b/gcc/config/i386/i386-expand.c
> +index 48f00c5fcfc..468f5f71fac 100644
> +--- a/gcc/config/i386/i386-expand.c
> ++++ b/gcc/config/i386/i386-expand.c
> +@@ -10941,10 +10941,10 @@ ix86_expand_builtin (tree exp, rtx target, rtx subtarget,
> +     {
> +     case IX86_BUILTIN_CPU_INIT:
> +       {
> +-      /* Make it call __cpu_indicator_init in libgcc. */
> ++      /* Make it call __cpu_indicator_init_local in libgcc.a. */
> +       tree call_expr, fndecl, type;
> +         type = build_function_type_list (integer_type_node, NULL_TREE);
> +-      fndecl = build_fn_decl ("__cpu_indicator_init", type);
> ++      fndecl = build_fn_decl ("__cpu_indicator_init_local", type);
> +       call_expr = build_call_expr (fndecl, 0);
> +       return expand_expr (call_expr, target, mode, EXPAND_NORMAL);
> +       }
> +diff --git a/libgcc/config/i386/cpuinfo.c b/libgcc/config/i386/cpuinfo.c
> +index 00322c58622..f42bbb8af98 100644
> +--- a/libgcc/config/i386/cpuinfo.c
> ++++ b/libgcc/config/i386/cpuinfo.c
> +@@ -508,7 +508,7 @@ __cpu_indicator_init (void)
> +   return 0;
> + }
> +
> +-#if defined SHARED && defined USE_ELF_SYMVER
> +-__asm__ (".symver __cpu_indicator_init, __cpu_indicator_init@GCC_4.8.0");
> +-__asm__ (".symver __cpu_model, __cpu_model@GCC_4.8.0");
> ++#ifndef SHARED
> ++int __cpu_indicator_init_local (void)
> ++  __attribute__ ((weak, alias ("__cpu_indicator_init")));
> + #endif
> +diff --git a/libgcc/config/i386/t-linux b/libgcc/config/i386/t-linux
> +index 8506a635790..564296f788e 100644
> +--- a/libgcc/config/i386/t-linux
> ++++ b/libgcc/config/i386/t-linux
> +@@ -3,5 +3,5 @@
> + # t-slibgcc-elf-ver and t-linux
> + SHLIB_MAPFILES = libgcc-std.ver $(srcdir)/config/i386/libgcc-glibc.ver
> +
> +-HOST_LIBGCC2_CFLAGS += -mlong-double-80 -DUSE_ELF_SYMVER $(CET_FLAGS)
> ++HOST_LIBGCC2_CFLAGS += -mlong-double-80 $(CET_FLAGS)
> + CRTSTUFF_T_CFLAGS += $(CET_FLAGS)
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
> new file mode 100644
> index 0000000..dd1bf6d
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
> @@ -0,0 +1,182 @@
> +From 0395060a7dcf98c5f5a65103f6aaa71d6b862259 Mon Sep 17 00:00:00 2001
> +From: Richard Purdie <richard.purdie@linuxfoundation.org>
> +Date: Tue, 10 Mar 2020 08:26:53 -0700
> +Subject: [PATCH] gentypes/genmodes: Do not use __LINE__ for maintaining
> + reproducibility
> +
> +Inserting line numbers into generated code means its not always reproducible wth
> +differing versions of host gcc. Void the issue by not adding these.
> +
> +Upstream-Status: Inappropriate [OE Reproducibility specific]
> +
> +Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/gengtype.c |  6 +++---
> + gcc/genmodes.c | 32 ++++++++++++++++----------------
> + 2 files changed, 19 insertions(+), 19 deletions(-)
> +
> +diff --git a/gcc/gengtype.c b/gcc/gengtype.c
> +index 981577481af..d5700fff401 100644
> +--- a/gcc/gengtype.c
> ++++ b/gcc/gengtype.c
> +@@ -991,7 +991,7 @@ create_field_at (pair_p next, type_p type, const char *name, options_p opt,
> + /* Create a fake field with the given type and name.  NEXT is the next
> +    field in the chain.  */
> + #define create_field(next,type,name) \
> +-    create_field_all (next,type,name, 0, this_file, __LINE__)
> ++    create_field_all (next,type,name, 0, this_file, 0)
> +
> + /* Like create_field, but the field is only valid when condition COND
> +    is true.  */
> +@@ -1024,7 +1024,7 @@ create_optional_field_ (pair_p next, type_p type, const char *name,
> + }
> +
> + #define create_optional_field(next,type,name,cond)    \
> +-       create_optional_field_(next,type,name,cond,__LINE__)
> ++       create_optional_field_(next,type,name,cond,0)
> +
> + /* Reverse a linked list of 'struct pair's in place.  */
> + pair_p
> +@@ -5187,7 +5187,7 @@ main (int argc, char **argv)
> +       /* These types are set up with #define or else outside of where
> +          we can see them.  We should initialize them before calling
> +          read_input_list.  */
> +-#define POS_HERE(Call) do { pos.file = this_file; pos.line = __LINE__; \
> ++#define POS_HERE(Call) do { pos.file = this_file; pos.line = 0; \
> +       Call;} while (0)
> +       POS_HERE (do_scalar_typedef ("CUMULATIVE_ARGS", &pos));
> +       POS_HERE (do_scalar_typedef ("REAL_VALUE_TYPE", &pos));
> +diff --git a/gcc/genmodes.c b/gcc/genmodes.c
> +index bd78310ea24..dbd02c51a4c 100644
> +--- a/gcc/genmodes.c
> ++++ b/gcc/genmodes.c
> +@@ -430,7 +430,7 @@ complete_all_modes (void)
> + }
> +
> + /* For each mode in class CLASS, construct a corresponding complex mode.  */
> +-#define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, __LINE__)
> ++#define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, 0)
> + static void
> + make_complex_modes (enum mode_class cl,
> +                   const char *file, unsigned int line)
> +@@ -489,7 +489,7 @@ make_complex_modes (enum mode_class cl,
> +    having as many components as necessary.  ORDER is the sorting order
> +    of the mode, with smaller numbers indicating a higher priority.  */
> + #define VECTOR_MODES_WITH_PREFIX(PREFIX, C, W, ORDER) \
> +-  make_vector_modes (MODE_##C, #PREFIX, W, ORDER, __FILE__, __LINE__)
> ++  make_vector_modes (MODE_##C, #PREFIX, W, ORDER, __FILE__, 0)
> + #define VECTOR_MODES(C, W) VECTOR_MODES_WITH_PREFIX (V, C, W, 0)
> + static void ATTRIBUTE_UNUSED
> + make_vector_modes (enum mode_class cl, const char *prefix, unsigned int width,
> +@@ -541,7 +541,7 @@ make_vector_modes (enum mode_class cl, const char *prefix, unsigned int width,
> + /* Create a vector of booleans called NAME with COUNT elements and
> +    BYTESIZE bytes in total.  */
> + #define VECTOR_BOOL_MODE(NAME, COUNT, BYTESIZE) \
> +-  make_vector_bool_mode (#NAME, COUNT, BYTESIZE, __FILE__, __LINE__)
> ++  make_vector_bool_mode (#NAME, COUNT, BYTESIZE, __FILE__, 0)
> + static void ATTRIBUTE_UNUSED
> + make_vector_bool_mode (const char *name, unsigned int count,
> +                      unsigned int bytesize, const char *file,
> +@@ -563,7 +563,7 @@ make_vector_bool_mode (const char *name, unsigned int count,
> + /* Input.  */
> +
> + #define _SPECIAL_MODE(C, N) \
> +-  make_special_mode (MODE_##C, #N, __FILE__, __LINE__)
> ++  make_special_mode (MODE_##C, #N, __FILE__, 0)
> + #define RANDOM_MODE(N) _SPECIAL_MODE (RANDOM, N)
> + #define CC_MODE(N) _SPECIAL_MODE (CC, N)
> +
> +@@ -576,7 +576,7 @@ make_special_mode (enum mode_class cl, const char *name,
> +
> + #define INT_MODE(N, Y) FRACTIONAL_INT_MODE (N, -1U, Y)
> + #define FRACTIONAL_INT_MODE(N, B, Y) \
> +-  make_int_mode (#N, B, Y, __FILE__, __LINE__)
> ++  make_int_mode (#N, B, Y, __FILE__, 0)
> +
> + static void
> + make_int_mode (const char *name,
> +@@ -589,16 +589,16 @@ make_int_mode (const char *name,
> + }
> +
> + #define FRACT_MODE(N, Y, F) \
> +-      make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, __LINE__)
> ++      make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, 0)
> +
> + #define UFRACT_MODE(N, Y, F) \
> +-      make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, __LINE__)
> ++      make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, 0)
> +
> + #define ACCUM_MODE(N, Y, I, F) \
> +-      make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, __LINE__)
> ++      make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, 0)
> +
> + #define UACCUM_MODE(N, Y, I, F) \
> +-      make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, __LINE__)
> ++      make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, 0)
> +
> + /* Create a fixed-point mode by setting CL, NAME, BYTESIZE, IBIT, FBIT,
> +    FILE, and LINE.  */
> +@@ -619,7 +619,7 @@ make_fixed_point_mode (enum mode_class cl,
> +
> + #define FLOAT_MODE(N, Y, F)             FRACTIONAL_FLOAT_MODE (N, -1U, Y, F)
> + #define FRACTIONAL_FLOAT_MODE(N, B, Y, F) \
> +-  make_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
> ++  make_float_mode (#N, B, Y, #F, __FILE__, 0)
> +
> + static void
> + make_float_mode (const char *name,
> +@@ -636,7 +636,7 @@ make_float_mode (const char *name,
> + #define DECIMAL_FLOAT_MODE(N, Y, F)   \
> +       FRACTIONAL_DECIMAL_FLOAT_MODE (N, -1U, Y, F)
> + #define FRACTIONAL_DECIMAL_FLOAT_MODE(N, B, Y, F)     \
> +-  make_decimal_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
> ++  make_decimal_float_mode (#N, B, Y, #F, __FILE__, 0)
> +
> + static void
> + make_decimal_float_mode (const char *name,
> +@@ -651,7 +651,7 @@ make_decimal_float_mode (const char *name,
> + }
> +
> + #define RESET_FLOAT_FORMAT(N, F) \
> +-  reset_float_format (#N, #F, __FILE__, __LINE__)
> ++  reset_float_format (#N, #F, __FILE__, 0)
> + static void ATTRIBUTE_UNUSED
> + reset_float_format (const char *name, const char *format,
> +                   const char *file, unsigned int line)
> +@@ -672,7 +672,7 @@ reset_float_format (const char *name, const char *format,
> +
> + /* __intN support.  */
> + #define INT_N(M,PREC)                         \
> +-  make_int_n (#M, PREC, __FILE__, __LINE__)
> ++  make_int_n (#M, PREC, __FILE__, 0)
> + static void ATTRIBUTE_UNUSED
> + make_int_n (const char *m, int bitsize,
> +             const char *file, unsigned int line)
> +@@ -701,7 +701,7 @@ make_int_n (const char *m, int bitsize,
> + /* Partial integer modes are specified by relation to a full integer
> +    mode.  */
> + #define PARTIAL_INT_MODE(M,PREC,NAME)                         \
> +-  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, __LINE__)
> ++  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, 0)
> + static void ATTRIBUTE_UNUSED
> + make_partial_integer_mode (const char *base, const char *name,
> +                          unsigned int precision,
> +@@ -728,7 +728,7 @@ make_partial_integer_mode (const char *base, const char *name,
> + /* A single vector mode can be specified by naming its component
> +    mode and the number of components.  */
> + #define VECTOR_MODE(C, M, N) \
> +-  make_vector_mode (MODE_##C, #M, N, __FILE__, __LINE__);
> ++  make_vector_mode (MODE_##C, #M, N, __FILE__, 0);
> + static void ATTRIBUTE_UNUSED
> + make_vector_mode (enum mode_class bclass,
> +                 const char *base,
> +@@ -771,7 +771,7 @@ make_vector_mode (enum mode_class bclass,
> +
> + /* Adjustability.  */
> + #define _ADD_ADJUST(A, M, X, C1, C2) \
> +-  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, __LINE__)
> ++  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, 0)
> +
> + #define ADJUST_NUNITS(M, X)    _ADD_ADJUST (nunits, M, X, RANDOM, RANDOM)
> + #define ADJUST_BYTESIZE(M, X)  _ADD_ADJUST (bytesize, M, X, RANDOM, RANDOM)
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
> new file mode 100644
> index 0000000..de82a3a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
> @@ -0,0 +1,26 @@
> +From 6f87a095f0e696bec07a50df789c9db8bdbca43d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 12 May 2020 10:39:09 -0700
> +Subject: [PATCH] mingw32: Enable operation_not_supported
> +
> +Fixes nativesdk build errors on mingw32 gcc-runtime
> +
> +Upstream-Status: Pending
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + libstdc++-v3/config/os/mingw32/error_constants.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/libstdc++-v3/config/os/mingw32/error_constants.h b/libstdc++-v3/config/os/mingw32/error_constants.h
> +index 68ac72a78fb..71cd5815b81 100644
> +--- a/libstdc++-v3/config/os/mingw32/error_constants.h
> ++++ b/libstdc++-v3/config/os/mingw32/error_constants.h
> +@@ -107,7 +107,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
> + #ifdef _GLIBCXX_HAVE_EPERM
> +       operation_not_permitted =               EPERM,
> + #endif
> +-//    operation_not_supported =               EOPNOTSUPP,
> ++      operation_not_supported =               EOPNOTSUPP,
> + #ifdef _GLIBCXX_HAVE_EWOULDBLOCK
> +       operation_would_block =                         EWOULDBLOCK,
> + #endif
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
> new file mode 100644
> index 0000000..3946ace
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
> @@ -0,0 +1,42 @@
> +From 38d262bfe7c0c894c364dc6e4dc7971e78a73974 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Wed, 13 May 2020 15:10:38 -0700
> +Subject: [PATCH] libatomic: Do not enforce march on aarch64
> +
> +OE passes the right options via gcc compiler cmdline via TUNE_CCARGS
> +this can conflict between -mcpu settings and -march setting here, since
> +-mcpu will translate into an appropriate -march, lets depend on that
> +instead of setting it explicitly
> +
> +Upstream-Status: Inappropriate [OE-Specific]
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + libatomic/Makefile.am | 1 -
> + libatomic/Makefile.in | 1 -
> + 2 files changed, 2 deletions(-)
> +
> +diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
> +index 133fbbca77e..ac1ca645876 100644
> +--- a/libatomic/Makefile.am
> ++++ b/libatomic/Makefile.am
> +@@ -125,7 +125,6 @@ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix _$(s)_.lo,$(SIZEOBJS)))
> + ## On a target-specific basis, include alternates to be selected by IFUNC.
> + if HAVE_IFUNC
> + if ARCH_AARCH64_LINUX
> +-IFUNC_OPTIONS      = -march=armv8-a+lse
> + libatomic_la_LIBADD += $(foreach s,$(SIZES),$(addsuffix _$(s)_1_.lo,$(SIZEOBJS)))
> + endif
> + if ARCH_ARM_LINUX
> +diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
> +index a51807e95c9..97df2d7ff03 100644
> +--- a/libatomic/Makefile.in
> ++++ b/libatomic/Makefile.in
> +@@ -431,7 +431,6 @@ M_SRC = $(firstword $(filter %/$(M_FILE), $(all_c_files)))
> + libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix \
> +       _$(s)_.lo,$(SIZEOBJS))) $(am__append_1) $(am__append_2) \
> +       $(am__append_3) $(am__append_4)
> +-@ARCH_AARCH64_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv8-a+lse
> + @ARCH_ARM_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv7-a+fp -DHAVE_KERNEL64
> + @ARCH_I386_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=i586
> + @ARCH_X86_64_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -mcx16
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
> new file mode 100644
> index 0000000..8987a4c
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
> @@ -0,0 +1,5 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-cross-canadian.inc
> +
> +
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
> new file mode 100644
> index 0000000..0a8aa75
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
> @@ -0,0 +1,3 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-cross.inc
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
> new file mode 100644
> index 0000000..0a9f98a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
> @@ -0,0 +1,2 @@
> +require recipes-devtools/gcc/gcc-cross_${PV}.bb
> +require recipes-devtools/gcc/gcc-crosssdk.inc
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
> new file mode 100644
> index 0000000..b755f55
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
> @@ -0,0 +1,2 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-runtime.inc
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
> new file mode 100644
> index 0000000..9c41e92
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
> @@ -0,0 +1,7 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-sanitizers.inc
> +
> +# Building with thumb enabled on armv4t armv5t fails with
> +# sanitizer_linux.s:5749: Error: lo register required -- `ldr ip,[sp],#8'
> +ARM_INSTRUCTION_SET_armv4 = "arm"
> +ARM_INSTRUCTION_SET_armv5 = "arm"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
> new file mode 100644
> index 0000000..b890fa3
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
> @@ -0,0 +1,4 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-source.inc
> +
> +EXCLUDE_FROM_WORLD = "1"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
> new file mode 100644
> index 0000000..51a0877
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
> @@ -0,0 +1,15 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-target.inc
> +require recipes-devtools/gcc/gcc-arm-common.inc
> +
> +# Building with thumb enabled on armv4t armv5t fails with
> +# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7438:(.text.unlikely+0x2fa): relocation truncated to fit: R_ARM_THM_CALL against symbol `fancy_abort(char const*, int, char const*)' defined in .glue_7 section in linker stubs
> +# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7442:(.text.unlikely+0x318): additional relocation overflows omitted from the output
> +ARM_INSTRUCTION_SET_armv4 = "arm"
> +ARM_INSTRUCTION_SET_armv5 = "arm"
> +
> +ARMFPARCHEXT_armv6 = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> +ARMFPARCHEXT_armv7a = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> +ARMFPARCHEXT_armv7ve = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> +
> +BBCLASSEXTEND = "nativesdk"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
> new file mode 100644
> index 0000000..32f3dc0
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
> @@ -0,0 +1,5 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/libgcc-initial.inc
> +
> +# Building with thumb enabled on armv6t fails
> +ARM_INSTRUCTION_SET_armv6 = "arm"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
> new file mode 100644
> index 0000000..572bab1
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
> @@ -0,0 +1,5 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/libgcc.inc
> +
> +# Building with thumb enabled on armv6t fails
> +ARM_INSTRUCTION_SET_armv6 = "arm"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
> new file mode 100644
> index 0000000..4e5688e
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
> @@ -0,0 +1,3 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/libgfortran.inc
> +
> --
> 2.17.1
>
>
> 
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11
  2021-01-06 23:19 ` [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11 Ross Burton
@ 2021-01-07  4:47   ` Sumit Garg
  0 siblings, 0 replies; 5+ messages in thread
From: Sumit Garg @ 2021-01-07  4:47 UTC (permalink / raw)
  To: Ross Burton
  Cc: meta-arm, Jon Mason, Ross Burton, Denys Dmytriyenko,
	Nicolas Dechesne, Daniel Thompson

On Thu, 7 Jan 2021 at 04:49, Ross Burton <ross@burtonini.com> wrote:
>
> Thanks Sumit!  I've just ran this through the CI using it to build
> qemuarm64 and n1sdp and it all built fine.
>

Thanks Ross for your testing.

-Sumit

> Cheers,
> Ross
>
> On Wed, 6 Jan 2021 at 12:23, Sumit Garg <sumit.garg@linaro.org> wrote:
> >
> > Add support for GNU-A toolchain version: 10.2-2020.11.
> >
> > Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
> > ---
> >  .../recipes-devtools/gcc/gcc-arm-10.2.inc     | 121 ++++++
> >  ...0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch |  39 ++
> >  ...0001-lib-Remove-i-86-march-overrides.patch | 113 ++++++
> >  .../0002-gcc-poison-system-directories.patch  | 200 ++++++++++
> >  ...-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch |  70 ++++
> >  .../0004-64-bit-multilib-hack.patch           | 116 ++++++
> >  .../gcc-arm-10.2/0005-optional-libstdc.patch  | 122 ++++++
> >  .../0006-COLLECT_GCC_OPTIONS.patch            |  35 ++
> >  ...ts.h-in-B-instead-of-S-and-t-oe-in-B.patch |  92 +++++
> >  .../0008-fortran-cross-compile-hack.patch     |  43 +++
> >  .../gcc-arm-10.2/0009-cpp-honor-sysroot.patch |  51 +++
> >  .../0010-MIPS64-Default-to-N64-ABI.patch      |  54 +++
> >  ...AMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch | 243 ++++++++++++
> >  ...gcc-Fix-argument-list-too-long-error.patch |  41 ++
> >  .../gcc/gcc-arm-10.2/0013-Disable-sdt.patch   | 110 ++++++
> >  .../gcc/gcc-arm-10.2/0014-libtool.patch       |  39 ++
> >  ...s-fix-v4bx-to-linker-to-support-EABI.patch |  40 ++
> >  ...-config-files-from-B-instead-of-usin.patch |  99 +++++
> >  ...ir-from-.la-which-usually-points-to-.patch |  28 ++
> >  .../gcc/gcc-arm-10.2/0018-export-CPP.patch    |  50 +++
> >  ...e-target-gcc-headers-can-be-included.patch |  57 +++
> >  ...t-directory-during-relink-if-inst_pr.patch |  35 ++
> >  ...IR-replacement-instead-of-hardcoding.patch |  26 ++
> >  ...22-aarch64-Add-support-for-musl-ldso.patch |  25 ++
> >  ...-fix-libcc1-s-install-path-and-rpath.patch |  51 +++
> >  ...le-sysroot-support-for-nativesdk-gcc.patch | 349 ++++++++++++++++++
> >  ...sroot-gcc-version-specific-dirs-with.patch |  99 +++++
> >  ...ous-_FOR_BUILD-and-related-variables.patch | 134 +++++++
> >  ...027-nios2-Define-MUSL_DYNAMIC_LINKER.patch |  25 ++
> >  ...d-to-link-commandline-for-musl-targe.patch |  84 +++++
> >  ...using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch |  26 ++
> >  .../0030-sync-gcc-stddef.h-with-musl.patch    |  88 +++++
> >  ...-fault-in-precompiled-header-generat.patch |  57 +++
> >  .../0032-Fix-for-testsuite-failure.patch      | 255 +++++++++++++
> >  ...Re-introduce-spe-commandline-options.patch |  38 ++
> >  ...as-for-__cpu_indicator_init-instead-.patch |  83 +++++
> >  ...s-Do-not-use-__LINE__-for-maintainin.patch | 182 +++++++++
> >  ...ngw32-Enable-operation_not_supported.patch |  26 ++
> >  ...omic-Do-not-enforce-march-on-aarch64.patch |  42 +++
> >  .../gcc/gcc-cross-canadian_arm-10.2.bb        |   5 +
> >  .../gcc/gcc-cross_arm-10.2.bb                 |   3 +
> >  .../gcc/gcc-crosssdk_arm-10.2.bb              |   2 +
> >  .../gcc/gcc-runtime_arm-10.2.bb               |   2 +
> >  .../gcc/gcc-sanitizers_arm-10.2.bb            |   7 +
> >  .../gcc/gcc-source_arm-10.2.bb                |   4 +
> >  .../recipes-devtools/gcc/gcc_arm-10.2.bb      |  15 +
> >  .../gcc/libgcc-initial_arm-10.2.bb            |   5 +
> >  .../recipes-devtools/gcc/libgcc_arm-10.2.bb   |   5 +
> >  .../gcc/libgfortran_arm-10.2.bb               |   3 +
> >  49 files changed, 3439 insertions(+)
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
> >  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
> >
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
> > new file mode 100644
> > index 0000000..2a82293
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
> > @@ -0,0 +1,121 @@
> > +require recipes-devtools/gcc/gcc-common.inc
> > +
> > +# Third digit in PV should be incremented after a minor release
> > +
> > +PV = "arm-10.2"
> > +CVE_VERSION = "10.2"
> > +
> > +# BINV should be incremented to a revision after a minor gcc release
> > +
> > +BINV = "10.2.1"
> > +
> > +MMYY = "20.11"
> > +RELEASE = "20${MMYY}"
> > +PR = "r${RELEASE}"
> > +
> > +FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc-arm-10.2:${FILE_DIRNAME}/gcc-arm-10.2/backport:"
> > +
> > +DEPENDS =+ "mpfr gmp libmpc zlib flex-native"
> > +NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native flex-native"
> > +
> > +LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
> > +
> > +LIC_FILES_CHKSUM = "\
> > +    file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
> > +    file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
> > +    file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
> > +    file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
> > +    file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \
> > +"
> > +
> > +BASEURI ?= "https://developer.arm.com/-/media/Files/downloads/gnu-a/10.2-2020.11/srcrel/gcc-arm-src-snapshot-10.2-2020.11.tar.xz"
> > +SRC_URI = "\
> > +           ${BASEURI} \
> > +           file://0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \
> > +           file://0002-gcc-poison-system-directories.patch \
> > +           file://0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch \
> > +           file://0004-64-bit-multilib-hack.patch \
> > +           file://0005-optional-libstdc.patch \
> > +           file://0006-COLLECT_GCC_OPTIONS.patch \
> > +           file://0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \
> > +           file://0008-fortran-cross-compile-hack.patch \
> > +           file://0009-cpp-honor-sysroot.patch \
> > +           file://0010-MIPS64-Default-to-N64-ABI.patch \
> > +           file://0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \
> > +           file://0012-gcc-Fix-argument-list-too-long-error.patch \
> > +           file://0013-Disable-sdt.patch \
> > +           file://0014-libtool.patch \
> > +           file://0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch \
> > +           file://0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch \
> > +           file://0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch \
> > +           file://0018-export-CPP.patch \
> > +           file://0019-Ensure-target-gcc-headers-can-be-included.patch \
> > +           file://0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch \
> > +           file://0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch \
> > +           file://0022-aarch64-Add-support-for-musl-ldso.patch \
> > +           file://0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch \
> > +           file://0024-handle-sysroot-support-for-nativesdk-gcc.patch \
> > +           file://0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch \
> > +           file://0026-Fix-various-_FOR_BUILD-and-related-variables.patch \
> > +           file://0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch \
> > +           file://0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch \
> > +           file://0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \
> > +           file://0030-sync-gcc-stddef.h-with-musl.patch \
> > +           file://0031-fix-segmentation-fault-in-precompiled-header-generat.patch \
> > +           file://0032-Fix-for-testsuite-failure.patch \
> > +           file://0033-Re-introduce-spe-commandline-options.patch \
> > +           file://0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \
> > +           file://0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch \
> > +           file://0036-mingw32-Enable-operation_not_supported.patch \
> > +           file://0037-libatomic-Do-not-enforce-march-on-aarch64.patch \
> > +           file://0001-lib-Remove-i-86-march-overrides.patch \
> > +"
> > +SRC_URI[md5sum] = "ce6ebec573e3e52cdb770c8f822aad17"
> > +
> > +S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-arm-src-snapshot-10.2-2020.11"
> > +# For dev release snapshotting
> > +#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${RELEASE}"
> > +#B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
> > +
> > +# Language Overrides
> > +FORTRAN = ""
> > +JAVA = ""
> > +
> > +SSP ?= "--disable-libssp"
> > +SSP_mingw32 = "--enable-libssp"
> > +
> > +EXTRA_OECONF_BASE = "\
> > +    ${SSP} \
> > +    --enable-libitm \
> > +    --enable-lto \
> > +    --disable-bootstrap \
> > +    --with-system-zlib \
> > +    ${@'--with-linker-hash-style=${LINKER_HASH_STYLE}' if '${LINKER_HASH_STYLE}' else ''} \
> > +    --enable-linker-build-id \
> > +    --with-ppl=no \
> > +    --with-cloog=no \
> > +    --enable-checking=release \
> > +    --enable-cheaders=c_global \
> > +    --without-isl \
> > +"
> > +
> > +EXTRA_OECONF_INITIAL = "\
> > +    --disable-libgomp \
> > +    --disable-libitm \
> > +    --disable-libquadmath \
> > +    --with-system-zlib \
> > +    --disable-lto \
> > +    --disable-plugin \
> > +    --enable-linker-build-id \
> > +    --enable-decimal-float=no \
> > +    --without-isl \
> > +    --disable-libssp \
> > +"
> > +
> > +EXTRA_OECONF_append_aarchilp32 = " --with-abi=ilp32"
> > +
> > +EXTRA_OECONF_PATHS = "\
> > +    --with-gxx-include-dir=/not/exist{target_includedir}/c++/${BINV} \
> > +    --with-sysroot=/not/exist \
> > +    --with-build-sysroot=${STAGING_DIR_TARGET} \
> > +"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
> > new file mode 100644
> > index 0000000..82ae9f8
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
> > @@ -0,0 +1,39 @@
> > +From f2a5dc3bc7e5727d6bf77e1c6e8a31a6f000883d Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 08:37:11 +0400
> > +Subject: [PATCH] gcc-4.3.1: ARCH_FLAGS_FOR_TARGET
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Inappropriate [embedded specific]
> > +---
> > + configure    | 2 +-
> > + configure.ac | 2 +-
> > + 2 files changed, 2 insertions(+), 2 deletions(-)
> > +
> > +diff --git a/configure b/configure
> > +index 4cc938ebb7d..226a64939d1 100755
> > +--- a/configure
> > ++++ b/configure
> > +@@ -7722,7 +7722,7 @@ fi
> > + # for target_alias and gcc doesn't manage it consistently.
> > + target_configargs="--cache-file=./config.cache ${target_configargs}"
> > +
> > +-FLAGS_FOR_TARGET=
> > ++FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
> > + case " $target_configdirs " in
> > +  *" newlib "*)
> > +   case " $target_configargs " in
> > +diff --git a/configure.ac b/configure.ac
> > +index c78d9cbea62..f024f4bac9b 100644
> > +--- a/configure.ac
> > ++++ b/configure.ac
> > +@@ -3227,7 +3227,7 @@ fi
> > + # for target_alias and gcc doesn't manage it consistently.
> > + target_configargs="--cache-file=./config.cache ${target_configargs}"
> > +
> > +-FLAGS_FOR_TARGET=
> > ++FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
> > + case " $target_configdirs " in
> > +  *" newlib "*)
> > +   case " $target_configargs " in
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
> > new file mode 100644
> > index 0000000..3f04e12
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
> > @@ -0,0 +1,113 @@
> > +From 3776789cde95916f95deef48acf9532b0ebf91ae Mon Sep 17 00:00:00 2001
> > +From: Nathan Rossi <nathan@nathanrossi.com>
> > +Date: Tue, 15 Dec 2020 11:43:36 +1000
> > +Subject: [PATCH] lib*: Remove i*86 march overrides
> > +
> > +OE does not pass the '--with-arch' option to gccs configure, as such
> > +some gcc-runtime libraries try to override the value of '-march' and
> > +'-mtune' which OE already provides. This causes conflicts with other
> > +i*86 instruction/architecture flags (e.g. -msse* and -mfpmath=*).
> > +Additionally this caused the following libraries to be built with less
> > +optimized tune configurations.
> > +
> > +Upstream suggests that this should be detecting or otherwise checking if
> > +the target supports the desired functionality before overriding.
> > +
> > +    https://gcc.gnu.org/legacy-ml/gcc-patches/2016-04/msg01344.html
> > +
> > +libatomic also overrides the '-march' specifically for IFUNC objects.
> > +OE already supplies the correct march flag, so remove setting.
> > +
> > +Upstream-Status: Inappropriate [OE Specific]
> > +Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
> > +---
> > + libatomic/Makefile.am   | 1 -
> > + libatomic/Makefile.in   | 1 -
> > + libatomic/configure.tgt | 9 ---------
> > + libgomp/configure.tgt   | 8 --------
> > + libitm/configure.tgt    | 9 ---------
> > + 5 files changed, 28 deletions(-)
> > +
> > +diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
> > +index ac1ca64587..5aa16e0699 100644
> > +--- a/libatomic/Makefile.am
> > ++++ b/libatomic/Makefile.am
> > +@@ -133,7 +133,6 @@ libatomic_la_LIBADD += $(foreach s,$(SIZES),$(addsuffix _$(s)_1_.lo,$(SIZEOBJS))
> > + libatomic_la_LIBADD += $(addsuffix _8_2_.lo,$(SIZEOBJS))
> > + endif
> > + if ARCH_I386
> > +-IFUNC_OPTIONS      = -march=i586
> > + libatomic_la_LIBADD += $(addsuffix _8_1_.lo,$(SIZEOBJS))
> > + endif
> > + if ARCH_X86_64
> > +diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
> > +index 97df2d7ff0..82c511d420 100644
> > +--- a/libatomic/Makefile.in
> > ++++ b/libatomic/Makefile.in
> > +@@ -432,7 +432,6 @@ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix \
> > +       _$(s)_.lo,$(SIZEOBJS))) $(am__append_1) $(am__append_2) \
> > +       $(am__append_3) $(am__append_4)
> > + @ARCH_ARM_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv7-a+fp -DHAVE_KERNEL64
> > +-@ARCH_I386_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=i586
> > + @ARCH_X86_64_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -mcx16
> > + libatomic_convenience_la_SOURCES = $(libatomic_la_SOURCES)
> > + libatomic_convenience_la_LIBADD = $(libatomic_la_LIBADD)
> > +diff --git a/libatomic/configure.tgt b/libatomic/configure.tgt
> > +index 5dd0926d20..3cc41773c3 100644
> > +--- a/libatomic/configure.tgt
> > ++++ b/libatomic/configure.tgt
> > +@@ -82,15 +82,6 @@ case "${target_cpu}" in
> > +       ;;
> > +
> > +   i[3456]86)
> > +-      case " ${CC} ${CFLAGS} " in
> > +-        *" -m64 "*|*" -mx32 "*)
> > +-          ;;
> > +-        *)
> > +-          if test -z "$with_arch"; then
> > +-            XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> > +-            XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
> > +-          fi
> > +-      esac
> > +       ARCH=x86
> > +       # ??? Detect when -march=i686 is already enabled.
> > +       try_ifunc=yes
> > +diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt
> > +index 4790a31e39..46c4c958e6 100644
> > +--- a/libgomp/configure.tgt
> > ++++ b/libgomp/configure.tgt
> > +@@ -72,14 +72,6 @@ if test x$enable_linux_futex = xyes; then
> > +     # Note that bare i386 is not included here.  We need cmpxchg.
> > +     i[456]86-*-linux*)
> > +       config_path="linux/x86 linux posix"
> > +-      case " ${CC} ${CFLAGS} " in
> > +-        *" -m64 "*|*" -mx32 "*)
> > +-          ;;
> > +-        *)
> > +-          if test -z "$with_arch"; then
> > +-            XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> > +-          fi
> > +-      esac
> > +       ;;
> > +
> > +     # Similar jiggery-pokery for x86_64 multilibs, except here we
> > +diff --git a/libitm/configure.tgt b/libitm/configure.tgt
> > +index 04109160e9..3d78ea609d 100644
> > +--- a/libitm/configure.tgt
> > ++++ b/libitm/configure.tgt
> > +@@ -59,15 +59,6 @@ case "${target_cpu}" in
> > +   arm*)               ARCH=arm ;;
> > +
> > +   i[3456]86)
> > +-      case " ${CC} ${CFLAGS} " in
> > +-        *" -m64 "*|*" -mx32 "*)
> > +-          ;;
> > +-        *)
> > +-          if test -z "$with_arch"; then
> > +-            XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> > +-            XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
> > +-          fi
> > +-      esac
> > +       XCFLAGS="${XCFLAGS} -mrtm"
> > +       ARCH=x86
> > +       ;;
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
> > new file mode 100644
> > index 0000000..30a8486
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
> > @@ -0,0 +1,200 @@
> > +From 74cc21f474402cf3578e37e1d7a1a22bbd070f6a Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 08:59:00 +0400
> > +Subject: [PATCH] gcc: poison-system-directories
> > +
> > +Add /sw/include and /opt/include based on the original
> > +zecke-no-host-includes.patch patch.  The original patch checked for
> > +/usr/include, /sw/include and /opt/include and then triggered a failure and
> > +aborted.
> > +
> > +Instead, we add the two missing items to the current scan.  If the user
> > +wants this to be a failure, they can add "-Werror=poison-system-directories".
> > +
> > +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Pending
> > +---
> > + gcc/common.opt      |  4 ++++
> > + gcc/config.in       |  6 ++++++
> > + gcc/configure       | 16 ++++++++++++++++
> > + gcc/configure.ac    | 10 ++++++++++
> > + gcc/doc/invoke.texi |  9 +++++++++
> > + gcc/gcc.c           |  2 ++
> > + gcc/incpath.c       | 21 +++++++++++++++++++++
> > + 7 files changed, 68 insertions(+)
> > +
> > +diff --git a/gcc/common.opt b/gcc/common.opt
> > +index 65a82410abc..415f38fa1f4 100644
> > +--- a/gcc/common.opt
> > ++++ b/gcc/common.opt
> > +@@ -682,6 +682,10 @@ Wreturn-local-addr
> > + Common Var(warn_return_local_addr) Init(1) Warning
> > + Warn about returning a pointer/reference to a local or temporary variable.
> > +
> > ++Wpoison-system-directories
> > ++Common Var(flag_poison_system_directories) Init(1) Warning
> > ++Warn for -I and -L options using system directories if cross compiling
> > ++
> > + Wshadow
> > + Common Var(warn_shadow) Warning
> > + Warn when one variable shadows another.  Same as -Wshadow=global.
> > +diff --git a/gcc/config.in b/gcc/config.in
> > +index 809e7b26823..5adeaeed36b 100644
> > +--- a/gcc/config.in
> > ++++ b/gcc/config.in
> > +@@ -224,6 +224,12 @@
> > + #endif
> > +
> > +
> > ++/* Define to warn for use of native system header directories */
> > ++#ifndef USED_FOR_TARGET
> > ++#undef ENABLE_POISON_SYSTEM_DIRECTORIES
> > ++#endif
> > ++
> > ++
> > + /* Define if you want all operations on RTL (the basic data structure of the
> > +    optimizer and back end) to be checked for dynamic type safety at runtime.
> > +    This is quite expensive. */
> > +diff --git a/gcc/configure b/gcc/configure
> > +index cd3d9516fce..8de766a942c 100755
> > +--- a/gcc/configure
> > ++++ b/gcc/configure
> > +@@ -1010,6 +1010,7 @@ with_system_zlib
> > + enable_maintainer_mode
> > + enable_link_mutex
> > + enable_version_specific_runtime_libs
> > ++enable_poison_system_directories
> > + enable_plugin
> > + enable_host_shared
> > + enable_libquadmath_support
> > +@@ -1766,6 +1767,8 @@ Optional Features:
> > +   --enable-version-specific-runtime-libs
> > +                           specify that runtime libraries should be installed
> > +                           in a compiler-specific directory
> > ++  --enable-poison-system-directories
> > ++                          warn for use of native system header directories
> > +   --enable-plugin         enable plugin support
> > +   --enable-host-shared    build host code as shared libraries
> > +   --disable-libquadmath-support
> > +@@ -30235,6 +30238,19 @@ if test "${enable_version_specific_runtime_libs+set}" = set; then :
> > + fi
> > +
> > +
> > ++# Check whether --enable-poison-system-directories was given.
> > ++if test "${enable_poison_system_directories+set}" = set; then :
> > ++  enableval=$enable_poison_system_directories;
> > ++else
> > ++  enable_poison_system_directories=no
> > ++fi
> > ++
> > ++if test "x${enable_poison_system_directories}" = "xyes"; then
> > ++
> > ++$as_echo "#define ENABLE_POISON_SYSTEM_DIRECTORIES 1" >>confdefs.h
> > ++
> > ++fi
> > ++
> > + # Substitute configuration variables
> > +
> > +
> > +diff --git a/gcc/configure.ac b/gcc/configure.ac
> > +index 0de3b4bf97b..8bfd6feb780 100644
> > +--- a/gcc/configure.ac
> > ++++ b/gcc/configure.ac
> > +@@ -6595,6 +6595,16 @@ AC_ARG_ENABLE(version-specific-runtime-libs,
> > +                 [specify that runtime libraries should be
> > +                  installed in a compiler-specific directory])])
> > +
> > ++AC_ARG_ENABLE([poison-system-directories],
> > ++             AS_HELP_STRING([--enable-poison-system-directories],
> > ++                            [warn for use of native system header directories]),,
> > ++             [enable_poison_system_directories=no])
> > ++if test "x${enable_poison_system_directories}" = "xyes"; then
> > ++  AC_DEFINE([ENABLE_POISON_SYSTEM_DIRECTORIES],
> > ++           [1],
> > ++           [Define to warn for use of native system header directories])
> > ++fi
> > ++
> > + # Substitute configuration variables
> > + AC_SUBST(subdirs)
> > + AC_SUBST(srcdir)
> > +diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
> > +index f98161391a0..f12d8d12150 100644
> > +--- a/gcc/doc/invoke.texi
> > ++++ b/gcc/doc/invoke.texi
> > +@@ -348,6 +348,7 @@ Objective-C and Objective-C++ Dialects}.
> > + -Wpacked  -Wno-packed-bitfield-compat  -Wpacked-not-aligned  -Wpadded @gol
> > + -Wparentheses  -Wno-pedantic-ms-format @gol
> > + -Wpointer-arith  -Wno-pointer-compare  -Wno-pointer-to-int-cast @gol
> > ++-Wno-poison-system-directories @gol
> > + -Wno-pragmas  -Wno-prio-ctor-dtor  -Wredundant-decls @gol
> > + -Wrestrict  -Wno-return-local-addr  -Wreturn-type @gol
> > + -Wno-scalar-storage-order  -Wsequence-point @gol
> > +@@ -6924,6 +6925,14 @@ made up of data only and thus requires no special treatment.  But, for
> > + most targets, it is made up of code and thus requires the stack to be
> > + made executable in order for the program to work properly.
> > +
> > ++@item -Wno-poison-system-directories
> > ++@opindex Wno-poison-system-directories
> > ++Do not warn for @option{-I} or @option{-L} options using system
> > ++directories such as @file{/usr/include} when cross compiling.  This
> > ++option is intended for use in chroot environments when such
> > ++directories contain the correct headers and libraries for the target
> > ++system rather than the host.
> > ++
> > + @item -Wfloat-equal
> > + @opindex Wfloat-equal
> > + @opindex Wno-float-equal
> > +diff --git a/gcc/gcc.c b/gcc/gcc.c
> > +index 9f790db0daf..b2200c5185a 100644
> > +--- a/gcc/gcc.c
> > ++++ b/gcc/gcc.c
> > +@@ -1041,6 +1041,8 @@ proper position among the other output files.  */
> > +    "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
> > +    "%X %{o*} %{e*} %{N} %{n} %{r}\
> > +     %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!r:%{!nostartfiles:%S}}} \
> > ++    %{Wno-poison-system-directories:--no-poison-system-directories} \
> > ++    %{Werror=poison-system-directories:--error-poison-system-directories} \
> > +     %{static|no-pie|static-pie:} %@{L*} %(mfwrap) %(link_libgcc) " \
> > +     VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o "" \
> > +     %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
> > +diff --git a/gcc/incpath.c b/gcc/incpath.c
> > +index 8a2bda00f80..9098ab044ab 100644
> > +--- a/gcc/incpath.c
> > ++++ b/gcc/incpath.c
> > +@@ -26,6 +26,7 @@
> > + #include "intl.h"
> > + #include "incpath.h"
> > + #include "cppdefault.h"
> > ++#include "diagnostic-core.h"
> > +
> > + /* Microsoft Windows does not natively support inodes.
> > +    VMS has non-numeric inodes.  */
> > +@@ -393,6 +394,26 @@ merge_include_chains (const char *sysroot, cpp_reader *pfile, int verbose)
> > +       }
> > +       fprintf (stderr, _("End of search list.\n"));
> > +     }
> > ++
> > ++#ifdef ENABLE_POISON_SYSTEM_DIRECTORIES
> > ++  if (flag_poison_system_directories)
> > ++    {
> > ++       struct cpp_dir *p;
> > ++
> > ++       for (p = heads[INC_QUOTE]; p; p = p->next)
> > ++         {
> > ++          if ((!strncmp (p->name, "/usr/include", 12))
> > ++              || (!strncmp (p->name, "/usr/local/include", 18))
> > ++              || (!strncmp (p->name, "/usr/X11R6/include", 18))
> > ++              || (!strncmp (p->name, "/sw/include", 11))
> > ++              || (!strncmp (p->name, "/opt/include", 12)))
> > ++            warning (OPT_Wpoison_system_directories,
> > ++                     "include location \"%s\" is unsafe for "
> > ++                     "cross-compilation",
> > ++                     p->name);
> > ++         }
> > ++    }
> > ++#endif
> > + }
> > +
> > + /* Use given -I paths for #include "..." but not #include <...>, and
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
> > new file mode 100644
> > index 0000000..27237fe
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
> > @@ -0,0 +1,70 @@
> > +From 6e3395c0bc933bdc3242d1dead4896d0aa4e11a8 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:08:31 +0400
> > +Subject: [PATCH] gcc-4.3.3: SYSROOT_CFLAGS_FOR_TARGET
> > +
> > +Before committing, I noticed that PR/32161 was marked as a dup of PR/32009, but my previous patch did not fix it.
> > +
> > +This alternative patch is better because it lets you just use CFLAGS_FOR_TARGET to set the compilation flags for libgcc. Since bootstrapped target libraries are never compiled with the native compiler, it makes little sense to use different flags for stage1 and later stages. And it also makes little sense to use a different variable than CFLAGS_FOR_TARGET.
> > +
> > +Other changes I had to do include:
> > +
> > +- moving the creation of default CFLAGS_FOR_TARGET from Makefile.am to configure.ac, because otherwise the BOOT_CFLAGS are substituted into CFLAGS_FOR_TARGET (which is "-O2 -g $(CFLAGS)") via $(CFLAGS). It is also cleaner this way though.
> > +
> > +- passing the right CFLAGS to configure scripts as exported environment variables
> > +
> > +I also stopped passing LIBCFLAGS to configure scripts since they are unused in the whole src tree. And I updated the documentation as H-P reminded me to do.
> > +
> > +Bootstrapped/regtested i686-pc-linux-gnu, will commit to 4.4 shortly. Ok for 4.3?
> > +
> > +Signed-off-by: Paolo Bonzini  <bonzini@gnu.org>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Pending
> > +---
> > + configure | 32 ++++++++++++++++++++++++++++++++
> > + 1 file changed, 32 insertions(+)
> > +
> > +diff --git a/configure b/configure
> > +index 226a64939d1..b31dc137fc9 100755
> > +--- a/configure
> > ++++ b/configure
> > +@@ -6971,6 +6971,38 @@ fi
> > +
> > +
> > +
> > ++# During gcc bootstrap, if we use some random cc for stage1 then CFLAGS
> > ++# might be empty or "-g".  We don't require a C++ compiler, so CXXFLAGS
> > ++# might also be empty (or "-g", if a non-GCC C++ compiler is in the path).
> > ++# We want to ensure that TARGET libraries (which we know are built with
> > ++# gcc) are built with "-O2 -g", so include those options when setting
> > ++# CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
> > ++if test "x$CFLAGS_FOR_TARGET" = x; then
> > ++  CFLAGS_FOR_TARGET=$CFLAGS
> > ++  case " $CFLAGS " in
> > ++    *" -O2 "*) ;;
> > ++    *) CFLAGS_FOR_TARGET="-O2 $CFLAGS" ;;
> > ++  esac
> > ++  case " $CFLAGS " in
> > ++    *" -g "* | *" -g3 "*) ;;
> > ++    *) CFLAGS_FOR_TARGET="-g $CFLAGS" ;;
> > ++  esac
> > ++fi
> > ++
> > ++
> > ++if test "x$CXXFLAGS_FOR_TARGET" = x; then
> > ++  CXXFLAGS_FOR_TARGET=$CXXFLAGS
> > ++  case " $CXXFLAGS " in
> > ++    *" -O2 "*) ;;
> > ++    *) CXXFLAGS_FOR_TARGET="-O2 $CXXFLAGS" ;;
> > ++  esac
> > ++  case " $CXXFLAGS " in
> > ++    *" -g "* | *" -g3 "*) ;;
> > ++    *) CXXFLAGS_FOR_TARGET="-g $CXXFLAGS" ;;
> > ++  esac
> > ++fi
> > ++
> > ++
> > + # Handle --with-headers=XXX.  If the value is not "yes", the contents of
> > + # the named directory are copied to $(tooldir)/sys-include.
> > + if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
> > new file mode 100644
> > index 0000000..7c751be
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
> > @@ -0,0 +1,116 @@
> > +From 85a7c5aeb82ed61e6ef6d8e061b9da9e6a4a652c Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:10:06 +0400
> > +Subject: [PATCH] 64-bit multilib hack.
> > +
> > +GCC has internal multilib handling code but it assumes a very specific rigid directory
> > +layout. The build system implementation of multilib layout is very generic and allows
> > +complete customisation of the library directories.
> > +
> > +This patch is a partial solution to allow any custom directories to be passed into gcc
> > +and handled correctly. It forces gcc to use the base_libdir (which is the current
> > +directory, "."). We need to do this for each multilib that is configured as we don't
> > +know which compiler options may be being passed into the compiler. Since we have a compiler
> > +per mulitlib at this point that isn't an issue.
> > +
> > +The one problem is the target compiler is only going to work for the default multlilib at
> > +this point. Ideally we'd figure out which multilibs were being enabled with which paths
> > +and be able to patch these entries with a complete set of correct paths but this we
> > +don't have such code at this point. This is something the target gcc recipe should do
> > +and override these platform defaults in its build config.
> > +
> > +Do same for riscv64 and aarch64
> > +
> > +RP 15/8/11
> > +
> > +Upstream-Status: Inappropriate[OE-Specific]
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
> > +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> > +---
> > + gcc/config/aarch64/t-aarch64-linux |  8 ++++----
> > + gcc/config/i386/t-linux64          |  6 ++----
> > + gcc/config/mips/t-linux64          | 10 +++-------
> > + gcc/config/riscv/t-linux           |  6 ++++--
> > + gcc/config/rs6000/t-linux64        |  5 ++---
> > + 5 files changed, 15 insertions(+), 20 deletions(-)
> > +
> > +diff --git a/gcc/config/aarch64/t-aarch64-linux b/gcc/config/aarch64/t-aarch64-linux
> > +index 83e59e33b85..b1356be1fb4 100644
> > +--- a/gcc/config/aarch64/t-aarch64-linux
> > ++++ b/gcc/config/aarch64/t-aarch64-linux
> > +@@ -21,8 +21,8 @@
> > + LIB1ASMSRC   = aarch64/lib1funcs.asm
> > + LIB1ASMFUNCS = _aarch64_sync_cache_range
> > +
> > +-AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
> > +-MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
> > +-MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
> > ++#AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
> > ++#MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
> > ++#MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
> > +
> > +-MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
> > ++#MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
> > +diff --git a/gcc/config/i386/t-linux64 b/gcc/config/i386/t-linux64
> > +index 1171e218578..5e057b7e5db 100644
> > +--- a/gcc/config/i386/t-linux64
> > ++++ b/gcc/config/i386/t-linux64
> > +@@ -32,7 +32,5 @@
> > + #
> > + comma=,
> > + MULTILIB_OPTIONS    = $(subst $(comma),/,$(TM_MULTILIB_CONFIG))
> > +-MULTILIB_DIRNAMES   = $(patsubst m%, %, $(subst /, ,$(MULTILIB_OPTIONS)))
> > +-MULTILIB_OSDIRNAMES = m64=../lib64$(call if_multiarch,:x86_64-linux-gnu)
> > +-MULTILIB_OSDIRNAMES+= m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:i386-linux-gnu)
> > +-MULTILIB_OSDIRNAMES+= mx32=../libx32$(call if_multiarch,:x86_64-linux-gnux32)
> > ++MULTILIB_DIRNAMES = . .
> > ++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> > +diff --git a/gcc/config/mips/t-linux64 b/gcc/config/mips/t-linux64
> > +index ceb58d3b5f3..43fe2bf28ab 100644
> > +--- a/gcc/config/mips/t-linux64
> > ++++ b/gcc/config/mips/t-linux64
> > +@@ -17,10 +17,6 @@
> > + # <http://www.gnu.org/licenses/>.
> > +
> > + MULTILIB_OPTIONS = mabi=n32/mabi=32/mabi=64
> > +-MULTILIB_DIRNAMES = n32 32 64
> > +-MIPS_EL = $(if $(filter %el, $(firstword $(subst -, ,$(target)))),el)
> > +-MIPS_SOFT = $(if $(strip $(filter MASK_SOFT_FLOAT_ABI, $(target_cpu_default)) $(filter soft, $(with_float))),soft)
> > +-MULTILIB_OSDIRNAMES = \
> > +-      ../lib32$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabin32$(MIPS_SOFT)) \
> > +-      ../lib$(call if_multiarch,:mips$(MIPS_EL)-linux-gnu$(MIPS_SOFT)) \
> > +-      ../lib64$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabi64$(MIPS_SOFT))
> > ++MULTILIB_DIRNAMES = . . .
> > ++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> > ++
> > +diff --git a/gcc/config/riscv/t-linux b/gcc/config/riscv/t-linux
> > +index 216d2776a18..e4d817621fc 100644
> > +--- a/gcc/config/riscv/t-linux
> > ++++ b/gcc/config/riscv/t-linux
> > +@@ -1,3 +1,5 @@
> > + # Only XLEN and ABI affect Linux multilib dir names, e.g. /lib32/ilp32d/
> > +-MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
> > +-MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
> > ++#MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
> > ++MULTILIB_DIRNAMES := . .
> > ++#MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
> > ++MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> > +diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64
> > +index 264a7e27524..dc9d440f66b 100644
> > +--- a/gcc/config/rs6000/t-linux64
> > ++++ b/gcc/config/rs6000/t-linux64
> > +@@ -26,10 +26,9 @@
> > + # MULTILIB_OSDIRNAMES according to what is found on the target.
> > +
> > + MULTILIB_OPTIONS    := m64/m32
> > +-MULTILIB_DIRNAMES   := 64 32
> > ++MULTILIB_DIRNAMES   := . .
> > + MULTILIB_EXTRA_OPTS :=
> > +-MULTILIB_OSDIRNAMES := m64=../lib64$(call if_multiarch,:powerpc64-linux-gnu)
> > +-MULTILIB_OSDIRNAMES += m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:powerpc-linux-gnu)
> > ++MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> > +
> > + rs6000-linux.o: $(srcdir)/config/rs6000/rs6000-linux.c
> > +       $(COMPILE) $<
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
> > new file mode 100644
> > index 0000000..4020c9e
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
> > @@ -0,0 +1,122 @@
> > +From 6ddfb0bfcd1eea71acd37ab06f7a4510b9f1d12b Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:12:56 +0400
> > +Subject: [PATCH] optional libstdc
> > +
> > +gcc-runtime builds libstdc++ separately from gcc-cross-*. Its configure tests using g++
> > +will not run correctly since by default the linker will try to link against libstdc++
> > +which shouldn't exist yet. We need an option to disable -lstdc++
> > +option whilst leaving -lc, -lgcc and other automatic library dependencies added by gcc
> > +driver. This patch adds such an option which only disables the -lstdc++.
> > +
> > +A "standard" gcc build uses xgcc and hence avoids this. We should ask upstream how to
> > +do this officially, the likely answer is don't build libstdc++ separately.
> > +
> > +RP 29/6/10
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Inappropriate [embedded specific]
> > +---
> > + gcc/c-family/c.opt  |  4 ++++
> > + gcc/cp/g++spec.c    |  1 +
> > + gcc/doc/invoke.texi | 32 +++++++++++++++++++++++++++++++-
> > + gcc/gcc.c           |  1 +
> > + 4 files changed, 37 insertions(+), 1 deletion(-)
> > +
> > +diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt
> > +index c49da99d395..35f712e2c84 100644
> > +--- a/gcc/c-family/c.opt
> > ++++ b/gcc/c-family/c.opt
> > +@@ -2025,6 +2025,10 @@ nostdinc++
> > + C++ ObjC++
> > + Do not search standard system include directories for C++.
> > +
> > ++nostdlib++
> > ++Driver
> > ++Do not link standard C++ runtime library
> > ++
> > + o
> > + C ObjC C++ ObjC++ Joined Separate
> > + ; Documented in common.opt
> > +diff --git a/gcc/cp/g++spec.c b/gcc/cp/g++spec.c
> > +index 0ab63bcd211..7b081e9e4f0 100644
> > +--- a/gcc/cp/g++spec.c
> > ++++ b/gcc/cp/g++spec.c
> > +@@ -137,6 +137,7 @@ lang_specific_driver (struct cl_decoded_option **in_decoded_options,
> > +       switch (decoded_options[i].opt_index)
> > +       {
> > +       case OPT_nostdlib:
> > ++      case OPT_nostdlib__:
> > +       case OPT_nodefaultlibs:
> > +         library = -1;
> > +         break;
> > +diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
> > +index f12d8d12150..cf6cb428e7d 100644
> > +--- a/gcc/doc/invoke.texi
> > ++++ b/gcc/doc/invoke.texi
> > +@@ -230,6 +230,9 @@ in the following sections.
> > + -fno-weak  -nostdinc++ @gol
> > + -fvisibility-inlines-hidden @gol
> > + -fvisibility-ms-compat @gol
> > ++-fvtable-verify=@r{[}std@r{|}preinit@r{|}none@r{]} @gol
> > ++-fvtv-counts -fvtv-debug @gol
> > ++-nostdlib++ @gol
> > + -fext-numeric-literals @gol
> > + -Wabi-tag  -Wcatch-value  -Wcatch-value=@var{n} @gol
> > + -Wno-class-conversion  -Wclass-memaccess @gol
> > +@@ -599,7 +602,7 @@ Objective-C and Objective-C++ Dialects}.
> > + -pie  -pthread  -r  -rdynamic @gol
> > + -s  -static  -static-pie  -static-libgcc  -static-libstdc++ @gol
> > + -static-libasan  -static-libtsan  -static-liblsan  -static-libubsan @gol
> > +--shared  -shared-libgcc  -symbolic @gol
> > ++-shared  -shared-libgcc  -symbolic -nostdlib++ @gol
> > + -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
> > + -u @var{symbol}  -z @var{keyword}}
> > +
> > +@@ -14407,6 +14410,33 @@ Specify that the program entry point is @var{entry}.  The argument is
> > + interpreted by the linker; the GNU linker accepts either a symbol name
> > + or an address.
> > +
> > ++@item -nostdlib++
> > ++@opindex nostdlib++
> > ++Do not use the standard system C++ runtime libraries when linking.
> > ++Only the libraries you specify will be passed to the linker.
> > ++
> > ++@cindex @option{-lgcc}, use with @option{-nostdlib}
> > ++@cindex @option{-nostdlib} and unresolved references
> > ++@cindex unresolved references and @option{-nostdlib}
> > ++@cindex @option{-lgcc}, use with @option{-nodefaultlibs}
> > ++@cindex @option{-nodefaultlibs} and unresolved references
> > ++@cindex unresolved references and @option{-nodefaultlibs}
> > ++One of the standard libraries bypassed by @option{-nostdlib} and
> > ++@option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
> > ++which GCC uses to overcome shortcomings of particular machines, or special
> > ++needs for some languages.
> > ++(@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
> > ++Collection (GCC) Internals},
> > ++for more discussion of @file{libgcc.a}.)
> > ++In most cases, you need @file{libgcc.a} even when you want to avoid
> > ++other standard libraries.  In other words, when you specify @option{-nostdlib}
> > ++or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
> > ++This ensures that you have no unresolved references to internal GCC
> > ++library subroutines.
> > ++(An example of such an internal subroutine is @code{__main}, used to ensure C++
> > ++constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
> > ++GNU Compiler Collection (GCC) Internals}.)
> > ++
> > + @item -pie
> > + @opindex pie
> > + Produce a dynamically linked position independent executable on targets
> > +diff --git a/gcc/gcc.c b/gcc/gcc.c
> > +index b2200c5185a..f8be58ce0a6 100644
> > +--- a/gcc/gcc.c
> > ++++ b/gcc/gcc.c
> > +@@ -1051,6 +1051,7 @@ proper position among the other output files.  */
> > +     %(mflib) " STACK_SPLIT_SPEC "\
> > +     %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
> > +     %{!nostdlib:%{!r:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}}\
> > ++    %{!nostdlib++:}\
> > +     %{!nostdlib:%{!r:%{!nostartfiles:%E}}} %{T*}  \n%(post_link) }}}}}}"
> > + #endif
> > +
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
> > new file mode 100644
> > index 0000000..9fbbe80
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
> > @@ -0,0 +1,35 @@
> > +From a6c90d3a9c5010b4aa7cc30467cf81ca7e0f430e Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:16:28 +0400
> > +Subject: [PATCH] COLLECT_GCC_OPTIONS
> > +
> > +This patch adds --sysroot into COLLECT_GCC_OPTIONS which is used to
> > +invoke collect2.
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Pending
> > +---
> > + gcc/gcc.c | 9 +++++++++
> > + 1 file changed, 9 insertions(+)
> > +
> > +diff --git a/gcc/gcc.c b/gcc/gcc.c
> > +index f8be58ce0a6..48b0f9dde81 100644
> > +--- a/gcc/gcc.c
> > ++++ b/gcc/gcc.c
> > +@@ -4806,6 +4806,15 @@ set_collect_gcc_options (void)
> > +               sizeof ("COLLECT_GCC_OPTIONS=") - 1);
> > +
> > +   first_time = TRUE;
> > ++#ifdef HAVE_LD_SYSROOT
> > ++  if (target_system_root_changed && target_system_root)
> > ++    {
> > ++      obstack_grow (&collect_obstack, "'--sysroot=", sizeof("'--sysroot=")-1);
> > ++      obstack_grow (&collect_obstack, target_system_root,strlen(target_system_root));
> > ++      obstack_grow (&collect_obstack, "'", 1);
> > ++      first_time = FALSE;
> > ++    }
> > ++#endif
> > +   for (i = 0; (int) i < n_switches; i++)
> > +     {
> > +       const char *const *args;
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
> > new file mode 100644
> > index 0000000..a764bdd
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
> > @@ -0,0 +1,92 @@
> > +From 5670d4489f119d2da661734895ac0be99b606d1b Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:17:25 +0400
> > +Subject: [PATCH] Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}
> > +
> > +Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}, so that
> > +the source can be shared between gcc-cross-initial,
> > +gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Pending
> > +
> > +While compiling gcc-crosssdk-initial-x86_64 on some host, there is
> > +occasionally failure that test the existance of default.h doesn't
> > +work, the reason is tm_include_list='** defaults.h' rather than
> > +tm_include_list='** ./defaults.h'
> > +
> > +So we add the test condition for this situation.
> > +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> > +---
> > + gcc/Makefile.in  | 2 +-
> > + gcc/configure    | 4 ++--
> > + gcc/configure.ac | 4 ++--
> > + gcc/mkconfig.sh  | 4 ++--
> > + 4 files changed, 7 insertions(+), 7 deletions(-)
> > +
> > +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> > +index 543b477ff18..a67d2cc18d6 100644
> > +--- a/gcc/Makefile.in
> > ++++ b/gcc/Makefile.in
> > +@@ -540,7 +540,7 @@ TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
> > + TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
> > +
> > + xmake_file=@xmake_file@
> > +-tmake_file=@tmake_file@
> > ++tmake_file=@tmake_file@ ./t-oe
> > + TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
> > + TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
> > + TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
> > +diff --git a/gcc/configure b/gcc/configure
> > +index 8de766a942c..b26e8fc7fee 100755
> > +--- a/gcc/configure
> > ++++ b/gcc/configure
> > +@@ -12705,8 +12705,8 @@ for f in $tm_file; do
> > +        tm_include_list="${tm_include_list} $f"
> > +        ;;
> > +     defaults.h )
> > +-       tm_file_list="${tm_file_list} \$(srcdir)/$f"
> > +-       tm_include_list="${tm_include_list} $f"
> > ++       tm_file_list="${tm_file_list} ./$f"
> > ++       tm_include_list="${tm_include_list} ./$f"
> > +        ;;
> > +     * )
> > +        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
> > +diff --git a/gcc/configure.ac b/gcc/configure.ac
> > +index 8bfd6feb780..26fa46802c7 100644
> > +--- a/gcc/configure.ac
> > ++++ b/gcc/configure.ac
> > +@@ -2138,8 +2138,8 @@ for f in $tm_file; do
> > +        tm_include_list="${tm_include_list} $f"
> > +        ;;
> > +     defaults.h )
> > +-       tm_file_list="${tm_file_list} \$(srcdir)/$f"
> > +-       tm_include_list="${tm_include_list} $f"
> > ++       tm_file_list="${tm_file_list} ./$f"
> > ++       tm_include_list="${tm_include_list} ./$f"
> > +        ;;
> > +     * )
> > +        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
> > +diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh
> > +index d2c677a4a42..d03852481cb 100644
> > +--- a/gcc/mkconfig.sh
> > ++++ b/gcc/mkconfig.sh
> > +@@ -77,7 +77,7 @@ if [ -n "$HEADERS" ]; then
> > +     if [ $# -ge 1 ]; then
> > +       echo '#ifdef IN_GCC' >> ${output}T
> > +       for file in "$@"; do
> > +-          if test x"$file" = x"defaults.h"; then
> > ++          if test x"$file" = x"./defaults.h" -o x"$file" = x"defaults.h"; then
> > +               postpone_defaults_h="yes"
> > +           else
> > +               echo "# include \"$file\"" >> ${output}T
> > +@@ -106,7 +106,7 @@ esac
> > +
> > + # If we postponed including defaults.h, add the #include now.
> > + if test x"$postpone_defaults_h" = x"yes"; then
> > +-    echo "# include \"defaults.h\"" >> ${output}T
> > ++    echo "# include \"./defaults.h\"" >> ${output}T
> > + fi
> > +
> > + # Add multiple inclusion protection guard, part two.
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
> > new file mode 100644
> > index 0000000..714db3b
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
> > @@ -0,0 +1,43 @@
> > +From f05062625e7a4751be723595a2f7a4b7fbeff311 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:20:01 +0400
> > +Subject: [PATCH] fortran cross-compile hack.
> > +
> > +* Fortran would have searched for arm-angstrom-gnueabi-gfortran but would have used
> > +used gfortan. For gcc_4.2.2.bb we want to use the gfortran compiler from our cross
> > +directory.
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Inappropriate [embedded specific]
> > +---
> > + libgfortran/configure    | 2 +-
> > + libgfortran/configure.ac | 2 +-
> > + 2 files changed, 2 insertions(+), 2 deletions(-)
> > +
> > +diff --git a/libgfortran/configure b/libgfortran/configure
> > +index b4cf854ddb3..e8e0ac3b1cf 100755
> > +--- a/libgfortran/configure
> > ++++ b/libgfortran/configure
> > +@@ -13090,7 +13090,7 @@ esac
> > +
> > + # We need gfortran to compile parts of the library
> > + #AC_PROG_FC(gfortran)
> > +-FC="$GFORTRAN"
> > ++#FC="$GFORTRAN"
> > + ac_ext=${ac_fc_srcext-f}
> > + ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5'
> > + ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5'
> > +diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac
> > +index 711dc60ff78..3c9bbfbf47d 100644
> > +--- a/libgfortran/configure.ac
> > ++++ b/libgfortran/configure.ac
> > +@@ -258,7 +258,7 @@ AC_SUBST(enable_static)
> > +
> > + # We need gfortran to compile parts of the library
> > + #AC_PROG_FC(gfortran)
> > +-FC="$GFORTRAN"
> > ++#FC="$GFORTRAN"
> > + AC_PROG_FC(gfortran)
> > +
> > + # extra LD Flags which are required for targets
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
> > new file mode 100644
> > index 0000000..8ad6853
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
> > @@ -0,0 +1,51 @@
> > +From 1d76de7f1f5c99f1fa1a4b14aedad3d702e4e136 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:22:00 +0400
> > +Subject: [PATCH] cpp: honor sysroot.
> > +
> > +Currently, if the gcc toolchain is relocated and installed from sstate, then you try and compile
> > +preprocessed source (.i or .ii files), the compiler will try and access the builtin sysroot location
> > +rather than the --sysroot option specified on the commandline. If access to that directory is
> > +permission denied (unreadable), gcc will error.
> > +
> > +This happens when ccache is in use due to the fact it uses preprocessed source files.
> > +
> > +The fix below adds %I to the cpp-output spec macro so the default substitutions for -iprefix,
> > +-isystem, -isysroot happen and the correct sysroot is used.
> > +
> > +[YOCTO #2074]
> > +
> > +RP 2012/04/13
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Pending
> > +---
> > + gcc/cp/lang-specs.h | 2 +-
> > + gcc/gcc.c           | 2 +-
> > + 2 files changed, 2 insertions(+), 2 deletions(-)
> > +
> > +diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h
> > +index 0ad4a33b93e..16c744f4f90 100644
> > +--- a/gcc/cp/lang-specs.h
> > ++++ b/gcc/cp/lang-specs.h
> > +@@ -66,5 +66,5 @@ along with GCC; see the file COPYING3.  If not see
> > +   {".ii", "@c++-cpp-output", 0, 0, 0},
> > +   {"@c++-cpp-output",
> > +       "%{!E:%{!M:%{!MM:"
> > +-      "  cc1plus -fpreprocessed %i %(cc1_options) %2"
> > ++      "  cc1plus -fpreprocessed %i %I %(cc1_options) %2"
> > +       "  %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> > +diff --git a/gcc/gcc.c b/gcc/gcc.c
> > +index 48b0f9dde81..c87f603955f 100644
> > +--- a/gcc/gcc.c
> > ++++ b/gcc/gcc.c
> > +@@ -1348,7 +1348,7 @@ static const struct compiler default_compilers[] =
> > +                                          %W{o*:--output-pch=%*}}%V}}}}}}}", 0, 0, 0},
> > +   {".i", "@cpp-output", 0, 0, 0},
> > +   {"@cpp-output",
> > +-   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> > ++   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %I %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> > +   {".s", "@assembler", 0, 0, 0},
> > +   {"@assembler",
> > +    "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
> > new file mode 100644
> > index 0000000..625e2d8
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
> > @@ -0,0 +1,54 @@
> > +From 4fad4433c96bc9d0d9d124f9674fb3389f6f426e Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:23:08 +0400
> > +Subject: [PATCH] MIPS64: Default to N64 ABI
> > +
> > +MIPS64 defaults to n32 ABI, this patch makes it
> > +so that it defaults to N64 ABI
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Inappropriate [OE config specific]
> > +---
> > + gcc/config.gcc | 10 +++++-----
> > + 1 file changed, 5 insertions(+), 5 deletions(-)
> > +
> > +diff --git a/gcc/config.gcc b/gcc/config.gcc
> > +index cf1a87e2efd..37c4221a39f 100644
> > +--- a/gcc/config.gcc
> > ++++ b/gcc/config.gcc
> > +@@ -2511,29 +2511,29 @@ mips*-*-linux*)                                # Linux MIPS, either endian.
> > +                       default_mips_arch=mips32
> > +                       ;;
> > +               mips64el-st-linux-gnu)
> > +-                      default_mips_abi=n32
> > ++                      default_mips_abi=64
> > +                       tm_file="${tm_file} mips/st.h"
> > +                       tmake_file="${tmake_file} mips/t-st"
> > +                       enable_mips_multilibs="yes"
> > +                       ;;
> > +               mips64octeon*-*-linux*)
> > +-                      default_mips_abi=n32
> > ++                      default_mips_abi=64
> > +                       tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
> > +                       target_cpu_default=MASK_SOFT_FLOAT_ABI
> > +                       enable_mips_multilibs="yes"
> > +                       ;;
> > +               mipsisa64r6*-*-linux*)
> > +-                      default_mips_abi=n32
> > ++                      default_mips_abi=64
> > +                       default_mips_arch=mips64r6
> > +                       enable_mips_multilibs="yes"
> > +                       ;;
> > +               mipsisa64r2*-*-linux*)
> > +-                      default_mips_abi=n32
> > ++                      default_mips_abi=64
> > +                       default_mips_arch=mips64r2
> > +                       enable_mips_multilibs="yes"
> > +                       ;;
> > +               mips64*-*-linux* | mipsisa64*-*-linux*)
> > +-                      default_mips_abi=n32
> > ++                      default_mips_abi=64
> > +                       enable_mips_multilibs="yes"
> > +                       ;;
> > +       esac
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
> > new file mode 100644
> > index 0000000..e357976
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
> > @@ -0,0 +1,243 @@
> > +From 8fc016a53c22c19feccbfa13ebdf19090dc67058 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:24:50 +0400
> > +Subject: [PATCH] Define GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
> > + relative to SYSTEMLIBS_DIR
> > +
> > +This patch defines GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
> > +relative to SYSTEMLIBS_DIR which can be set in generated headers
> > +This breaks the assumption of hardcoded multilib in gcc
> > +Change is only for the supported architectures in OE including
> > +SH, sparc, alpha for possible future support (if any)
> > +
> > +Removes the do_headerfix task in metadata
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Inappropriate [OE configuration]
> > +---
> > + gcc/config/alpha/linux-elf.h |  4 ++--
> > + gcc/config/arm/linux-eabi.h  |  4 ++--
> > + gcc/config/arm/linux-elf.h   |  2 +-
> > + gcc/config/i386/linux.h      |  2 +-
> > + gcc/config/i386/linux64.h    |  6 +++---
> > + gcc/config/linux.h           |  8 ++++----
> > + gcc/config/mips/linux.h      | 12 ++++++------
> > + gcc/config/riscv/linux.h     |  2 +-
> > + gcc/config/rs6000/linux64.h  | 15 +++++----------
> > + gcc/config/sh/linux.h        |  2 +-
> > + gcc/config/sparc/linux.h     |  2 +-
> > + gcc/config/sparc/linux64.h   |  4 ++--
> > + 12 files changed, 29 insertions(+), 34 deletions(-)
> > +
> > +diff --git a/gcc/config/alpha/linux-elf.h b/gcc/config/alpha/linux-elf.h
> > +index e25fcac3c59..01aca0c6542 100644
> > +--- a/gcc/config/alpha/linux-elf.h
> > ++++ b/gcc/config/alpha/linux-elf.h
> > +@@ -23,8 +23,8 @@ along with GCC; see the file COPYING3.  If not see
> > + #define EXTRA_SPECS \
> > + { "elf_dynamic_linker", ELF_DYNAMIC_LINKER },
> > +
> > +-#define GLIBC_DYNAMIC_LINKER  "/lib/ld-linux.so.2"
> > +-#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
> > ++#define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux.so.2"
> > ++#define UCLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-uClibc.so.0"
> > + #if DEFAULT_LIBC == LIBC_UCLIBC
> > + #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
> > + #elif DEFAULT_LIBC == LIBC_GLIBC
> > +diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
> > +index 5bdcfa0c5d3..0c0332f317f 100644
> > +--- a/gcc/config/arm/linux-eabi.h
> > ++++ b/gcc/config/arm/linux-eabi.h
> > +@@ -65,8 +65,8 @@
> > +    GLIBC_DYNAMIC_LINKER_DEFAULT and TARGET_DEFAULT_FLOAT_ABI.  */
> > +
> > + #undef  GLIBC_DYNAMIC_LINKER
> > +-#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "/lib/ld-linux.so.3"
> > +-#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT "/lib/ld-linux-armhf.so.3"
> > ++#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT SYSTEMLIBS_DIR "ld-linux.so.3"
> > ++#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT SYSTEMLIBS_DIR "ld-linux-armhf.so.3"
> > + #define GLIBC_DYNAMIC_LINKER_DEFAULT GLIBC_DYNAMIC_LINKER_SOFT_FLOAT
> > +
> > + #define GLIBC_DYNAMIC_LINKER \
> > +diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h
> > +index 0ec3aa53189..abfa9566d74 100644
> > +--- a/gcc/config/arm/linux-elf.h
> > ++++ b/gcc/config/arm/linux-elf.h
> > +@@ -60,7 +60,7 @@
> > +
> > + #define LIBGCC_SPEC "%{mfloat-abi=soft*:-lfloat} -lgcc"
> > +
> > +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> > ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> > +
> > + #define LINUX_TARGET_LINK_SPEC  "%{h*} \
> > +    %{static:-Bstatic} \
> > +diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h
> > +index 9f823f125ed..e0390b7d5e3 100644
> > +--- a/gcc/config/i386/linux.h
> > ++++ b/gcc/config/i386/linux.h
> > +@@ -20,7 +20,7 @@ along with GCC; see the file COPYING3.  If not see
> > + <http://www.gnu.org/licenses/>.  */
> > +
> > + #define GNU_USER_LINK_EMULATION "elf_i386"
> > +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> > ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> > +
> > + #undef MUSL_DYNAMIC_LINKER
> > + #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-i386.so.1"
> > +diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h
> > +index 6cb68d1ccfa..7de09ec857c 100644
> > +--- a/gcc/config/i386/linux64.h
> > ++++ b/gcc/config/i386/linux64.h
> > +@@ -27,9 +27,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> > + #define GNU_USER_LINK_EMULATION64 "elf_x86_64"
> > + #define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64"
> > +
> > +-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
> > +-#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
> > +-#define GLIBC_DYNAMIC_LINKERX32 "/libx32/ld-linux-x32.so.2"
> > ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
> > ++#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux-x86-64.so.2"
> > ++#define GLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ld-linux-x32.so.2"
> > +
> > + #undef MUSL_DYNAMIC_LINKER32
> > + #define MUSL_DYNAMIC_LINKER32 "/lib/ld-musl-i386.so.1"
> > +diff --git a/gcc/config/linux.h b/gcc/config/linux.h
> > +index 95654bcdb5a..0c1a8118a26 100644
> > +--- a/gcc/config/linux.h
> > ++++ b/gcc/config/linux.h
> > +@@ -94,10 +94,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> > +    GLIBC_DYNAMIC_LINKER must be defined for each target using them, or
> > +    GLIBC_DYNAMIC_LINKER32 and GLIBC_DYNAMIC_LINKER64 for targets
> > +    supporting both 32-bit and 64-bit compilation.  */
> > +-#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
> > +-#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
> > +-#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
> > +-#define UCLIBC_DYNAMIC_LINKERX32 "/lib/ldx32-uClibc.so.0"
> > ++#define UCLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-uClibc.so.0"
> > ++#define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
> > ++#define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
> > ++#define UCLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ldx32-uClibc.so.0"
> > + #define BIONIC_DYNAMIC_LINKER "/system/bin/linker"
> > + #define BIONIC_DYNAMIC_LINKER32 "/system/bin/linker"
> > + #define BIONIC_DYNAMIC_LINKER64 "/system/bin/linker64"
> > +diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h
> > +index 54446e58e5f..4786ee304c1 100644
> > +--- a/gcc/config/mips/linux.h
> > ++++ b/gcc/config/mips/linux.h
> > +@@ -22,20 +22,20 @@ along with GCC; see the file COPYING3.  If not see
> > + #define GNU_USER_LINK_EMULATIONN32 "elf32%{EB:b}%{EL:l}tsmipn32"
> > +
> > + #define GLIBC_DYNAMIC_LINKER32 \
> > +-  "%{mnan=2008:/lib/ld-linux-mipsn8.so.1;:/lib/ld.so.1}"
> > ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> > + #define GLIBC_DYNAMIC_LINKER64 \
> > +-  "%{mnan=2008:/lib64/ld-linux-mipsn8.so.1;:/lib64/ld.so.1}"
> > ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> > + #define GLIBC_DYNAMIC_LINKERN32 \
> > +-  "%{mnan=2008:/lib32/ld-linux-mipsn8.so.1;:/lib32/ld.so.1}"
> > ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> > +
> > + #undef UCLIBC_DYNAMIC_LINKER32
> > + #define UCLIBC_DYNAMIC_LINKER32 \
> > +-  "%{mnan=2008:/lib/ld-uClibc-mipsn8.so.0;:/lib/ld-uClibc.so.0}"
> > ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
> > + #undef UCLIBC_DYNAMIC_LINKER64
> > + #define UCLIBC_DYNAMIC_LINKER64 \
> > +-  "%{mnan=2008:/lib/ld64-uClibc-mipsn8.so.0;:/lib/ld64-uClibc.so.0}"
> > ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld64-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld64-uClibc.so.0}"
> > + #define UCLIBC_DYNAMIC_LINKERN32 \
> > +-  "%{mnan=2008:/lib32/ld-uClibc-mipsn8.so.0;:/lib32/ld-uClibc.so.0}"
> > ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
> > +
> > + #undef MUSL_DYNAMIC_LINKER32
> > + #define MUSL_DYNAMIC_LINKER32 \
> > +diff --git a/gcc/config/riscv/linux.h b/gcc/config/riscv/linux.h
> > +index 4afef7c228c..01997330741 100644
> > +--- a/gcc/config/riscv/linux.h
> > ++++ b/gcc/config/riscv/linux.h
> > +@@ -22,7 +22,7 @@ along with GCC; see the file COPYING3.  If not see
> > +     GNU_USER_TARGET_OS_CPP_BUILTINS();                                \
> > +   } while (0)
> > +
> > +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
> > ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
> > +
> > + #define MUSL_ABI_SUFFIX \
> > +   "%{mabi=ilp32:-sf}" \
> > +diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
> > +index 34776c8421e..967c1c43c63 100644
> > +--- a/gcc/config/rs6000/linux64.h
> > ++++ b/gcc/config/rs6000/linux64.h
> > +@@ -419,24 +419,19 @@ extern int dot_symbols;
> > + #undef        LINK_OS_DEFAULT_SPEC
> > + #define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
> > +
> > +-#define GLIBC_DYNAMIC_LINKER32 "%(dynamic_linker_prefix)/lib/ld.so.1"
> > +-
> > ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld.so.1"
> > + #ifdef LINUX64_DEFAULT_ABI_ELFv2
> > +-#define GLIBC_DYNAMIC_LINKER64 \
> > +-"%{mabi=elfv1:%(dynamic_linker_prefix)/lib64/ld64.so.1;" \
> > +-":%(dynamic_linker_prefix)/lib64/ld64.so.2}"
> > ++#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv1:" SYSTEMLIBS_DIR "ld64.so.1;:" SYSTEMLIBS_DIR "ld64.so.2}"
> > + #else
> > +-#define GLIBC_DYNAMIC_LINKER64 \
> > +-"%{mabi=elfv2:%(dynamic_linker_prefix)/lib64/ld64.so.2;" \
> > +-":%(dynamic_linker_prefix)/lib64/ld64.so.1}"
> > ++#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv2:" SYSTEMLIBS_DIR "ld64.so.2;:" SYSTEMLIBS_DIR "ld64.so.1}"
> > + #endif
> > +
> > + #undef MUSL_DYNAMIC_LINKER32
> > + #define MUSL_DYNAMIC_LINKER32 \
> > +-  "/lib/ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> > ++  SYSTEMLIBS_DIR "ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> > + #undef MUSL_DYNAMIC_LINKER64
> > + #define MUSL_DYNAMIC_LINKER64 \
> > +-  "/lib/ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> > ++  SYSTEMLIBS_DIR "ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> > +
> > + #undef  DEFAULT_ASM_ENDIAN
> > + #if (TARGET_DEFAULT & MASK_LITTLE_ENDIAN)
> > +diff --git a/gcc/config/sh/linux.h b/gcc/config/sh/linux.h
> > +index c1d0441d488..81373eb8336 100644
> > +--- a/gcc/config/sh/linux.h
> > ++++ b/gcc/config/sh/linux.h
> > +@@ -64,7 +64,7 @@ along with GCC; see the file COPYING3.  If not see
> > +   "/lib/ld-musl-sh" MUSL_DYNAMIC_LINKER_E MUSL_DYNAMIC_LINKER_FP \
> > +   "%{mfdpic:-fdpic}.so.1"
> > +
> > +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> > ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> > +
> > + #undef SUBTARGET_LINK_EMUL_SUFFIX
> > + #define SUBTARGET_LINK_EMUL_SUFFIX "%{mfdpic:_fd;:_linux}"
> > +diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h
> > +index 81201e67a2f..8b6fc577594 100644
> > +--- a/gcc/config/sparc/linux.h
> > ++++ b/gcc/config/sparc/linux.h
> > +@@ -84,7 +84,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv);
> > +    When the -shared link option is used a final link is not being
> > +    done.  */
> > +
> > +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> > ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> > +
> > + #undef  LINK_SPEC
> > + #define LINK_SPEC "-m elf32_sparc %{shared:-shared} \
> > +diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h
> > +index a1a0efd8f28..85d1084afc2 100644
> > +--- a/gcc/config/sparc/linux64.h
> > ++++ b/gcc/config/sparc/linux64.h
> > +@@ -84,8 +84,8 @@ along with GCC; see the file COPYING3.  If not see
> > +    When the -shared link option is used a final link is not being
> > +    done.  */
> > +
> > +-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
> > +-#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux.so.2"
> > ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
> > ++#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux.so.2"
> > +
> > + #ifdef SPARC_BI_ARCH
> > +
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
> > new file mode 100644
> > index 0000000..88e1715
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
> > @@ -0,0 +1,41 @@
> > +From a22d1264049d29b90663cf5667049ae6f9b7a5ce Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:26:37 +0400
> > +Subject: [PATCH] gcc: Fix argument list too long error.
> > +
> > +There would be an "Argument list too long" error when the
> > +build directory is longer than 200, this is caused by:
> > +
> > +headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`
> > +
> > +The PLUGIN_HEADERS is too long before sort, so the "echo" can't handle
> > +it, use the $(sort list) of GNU make which can handle the too long list
> > +would fix the problem, the header would be short enough after sorted.
> > +The "tr ' ' '\012'" was used for translating the space to "\n", the
> > +$(sort list) doesn't need this.
> > +
> > +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +RP: gcc then added *.h and *.def additions to this list, breaking the original
> > +fix. Add the sort to the original gcc code, leaving the tr+sort to fix the original
> > +issue but include the new files too as reported by Zhuang <qiuguang.zqg@alibaba-inc.com>
> > +
> > +Upstream-Status: Pending
> > +---
> > + gcc/Makefile.in | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> > +index a67d2cc18d6..480c9366418 100644
> > +--- a/gcc/Makefile.in
> > ++++ b/gcc/Makefile.in
> > +@@ -3606,7 +3606,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
> > + # We keep the directory structure for files in config or c-family and .def
> > + # files. All other files are flattened to a single directory.
> > +       $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
> > +-      headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
> > ++      headers=`echo $(sort $(PLUGIN_HEADERS)) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
> > +       srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
> > +       for file in $$headers; do \
> > +         if [ -f $$file ] ; then \
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
> > new file mode 100644
> > index 0000000..207cdb5
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
> > @@ -0,0 +1,110 @@
> > +From fa47586935a18ecfc2ad5586802e326e21741b7b Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:28:10 +0400
> > +Subject: [PATCH] Disable sdt.
> > +
> > +We don't list dtrace in DEPENDS so we shouldn't be depending on this header.
> > +It may or may not exist from preivous builds though. To be determinstic, disable
> > +sdt.h usage always. This avoids build failures if the header is removed after configure
> > +but before libgcc is compiled for example.
> > +
> > +RP 2012/8/7
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Disable sdt for libstdc++-v3.
> > +
> > +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> > +
> > +Upstream-Status: Inappropriate [hack]
> > +---
> > + gcc/configure             | 12 ++++++------
> > + gcc/configure.ac          | 18 +++++++++---------
> > + libstdc++-v3/configure    |  6 +++---
> > + libstdc++-v3/configure.ac |  2 +-
> > + 4 files changed, 19 insertions(+), 19 deletions(-)
> > +
> > +diff --git a/gcc/configure b/gcc/configure
> > +index b26e8fc7fee..6080f86145e 100755
> > +--- a/gcc/configure
> > ++++ b/gcc/configure
> > +@@ -29789,12 +29789,12 @@ fi
> > + { $as_echo "$as_me:${as_lineno-$LINENO}: checking sys/sdt.h in the target C library" >&5
> > + $as_echo_n "checking sys/sdt.h in the target C library... " >&6; }
> > + have_sys_sdt_h=no
> > +-if test -f $target_header_dir/sys/sdt.h; then
> > +-  have_sys_sdt_h=yes
> > +-
> > +-$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> > +-
> > +-fi
> > ++#if test -f $target_header_dir/sys/sdt.h; then
> > ++#  have_sys_sdt_h=yes
> > ++#
> > ++#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> > ++#
> > ++#fi
> > + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_sys_sdt_h" >&5
> > + $as_echo "$have_sys_sdt_h" >&6; }
> > +
> > +diff --git a/gcc/configure.ac b/gcc/configure.ac
> > +index 26fa46802c7..42be5252778 100644
> > +--- a/gcc/configure.ac
> > ++++ b/gcc/configure.ac
> > +@@ -6190,15 +6190,15 @@ fi
> > + AC_SUBST([enable_default_ssp])
> > +
> > + # Test for <sys/sdt.h> on the target.
> > +-GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
> > +-AC_MSG_CHECKING(sys/sdt.h in the target C library)
> > +-have_sys_sdt_h=no
> > +-if test -f $target_header_dir/sys/sdt.h; then
> > +-  have_sys_sdt_h=yes
> > +-  AC_DEFINE(HAVE_SYS_SDT_H, 1,
> > +-            [Define if your target C library provides sys/sdt.h])
> > +-fi
> > +-AC_MSG_RESULT($have_sys_sdt_h)
> > ++#GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
> > ++#AC_MSG_CHECKING(sys/sdt.h in the target C library)
> > ++#have_sys_sdt_h=no
> > ++#if test -f $target_header_dir/sys/sdt.h; then
> > ++#  have_sys_sdt_h=yes
> > ++#  AC_DEFINE(HAVE_SYS_SDT_H, 1,
> > ++#            [Define if your target C library provides sys/sdt.h])
> > ++#fi
> > ++#AC_MSG_RESULT($have_sys_sdt_h)
> > +
> > + # Check if TFmode long double should be used by default or not.
> > + # Some glibc targets used DFmode long double, but with glibc 2.4
> > +diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
> > +index 9f9c5a2419a..71ed13b815b 100755
> > +--- a/libstdc++-v3/configure
> > ++++ b/libstdc++-v3/configure
> > +@@ -22615,11 +22615,11 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
> > + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
> > + ac_compiler_gnu=$ac_cv_c_compiler_gnu
> > +
> > +-  if test $glibcxx_cv_sys_sdt_h = yes; then
> > ++#  if test $glibcxx_cv_sys_sdt_h = yes; then
> > +
> > +-$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> > ++#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> > +
> > +-  fi
> > ++#  fi
> > +   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_sdt_h" >&5
> > + $as_echo "$glibcxx_cv_sys_sdt_h" >&6; }
> > +
> > +diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac
> > +index 699e55fd829..5c7a7bda439 100644
> > +--- a/libstdc++-v3/configure.ac
> > ++++ b/libstdc++-v3/configure.ac
> > +@@ -241,7 +241,7 @@ GLIBCXX_CHECK_SC_NPROCESSORS_ONLN
> > + GLIBCXX_CHECK_SC_NPROC_ONLN
> > + GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP
> > + GLIBCXX_CHECK_SYSCTL_HW_NCPU
> > +-GLIBCXX_CHECK_SDT_H
> > ++#GLIBCXX_CHECK_SDT_H
> > +
> > + # Check for available headers.
> > + AC_CHECK_HEADERS([endian.h execinfo.h float.h fp.h ieeefp.h inttypes.h \
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
> > new file mode 100644
> > index 0000000..f4e70c3
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
> > @@ -0,0 +1,39 @@
> > +From 6ecd478881468934444ff85611fd43f7033b1e81 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:29:11 +0400
> > +Subject: [PATCH] libtool
> > +
> > +libstdc++ from gcc-runtime gets created with -rpath=/usr/lib/../lib for qemux86-64
> > +when running on am x86_64 build host.
> > +
> > +This patch stops this speading to libdir in the libstdc++.la file within libtool.
> > +Arguably, it shouldn't be passing this into libtool in the first place but
> > +for now this resolves the nastiest problems this causes.
> > +
> > +func_normal_abspath would resolve an empty path to `pwd` so we need
> > +to filter the zero case.
> > +
> > +RP 2012/8/24
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Pending
> > +---
> > + ltmain.sh | 4 ++++
> > + 1 file changed, 4 insertions(+)
> > +
> > +diff --git a/ltmain.sh b/ltmain.sh
> > +index 70990740b6c..ee938056bef 100644
> > +--- a/ltmain.sh
> > ++++ b/ltmain.sh
> > +@@ -6359,6 +6359,10 @@ func_mode_link ()
> > +       func_warning "ignoring multiple \`-rpath's for a libtool library"
> > +
> > +       install_libdir="$1"
> > ++      if test -n "$install_libdir"; then
> > ++      func_normal_abspath "$install_libdir"
> > ++      install_libdir=$func_normal_abspath_result
> > ++      fi
> > +
> > +       oldlibs=
> > +       if test -z "$rpath"; then
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
> > new file mode 100644
> > index 0000000..bc2674a
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
> > @@ -0,0 +1,40 @@
> > +From de4427fa49c07dc651ee6ceaf5c5078700ca3b08 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:30:32 +0400
> > +Subject: [PATCH] gcc: armv4: pass fix-v4bx to linker to support EABI.
> > +
> > +The LINK_SPEC for linux gets overwritten by linux-eabi.h which
> > +means the value of TARGET_FIX_V4BX_SPEC gets lost and as a result
> > +the option is not passed to linker when chosing march=armv4
> > +This patch redefines this in linux-eabi.h and reinserts it
> > +for eabi defaulting toolchains.
> > +
> > +We might want to send it upstream.
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Upstream-Status: Pending
> > +---
> > + gcc/config/arm/linux-eabi.h | 6 +++++-
> > + 1 file changed, 5 insertions(+), 1 deletion(-)
> > +
> > +diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
> > +index 0c0332f317f..7b3769e8459 100644
> > +--- a/gcc/config/arm/linux-eabi.h
> > ++++ b/gcc/config/arm/linux-eabi.h
> > +@@ -91,10 +91,14 @@
> > + #define MUSL_DYNAMIC_LINKER \
> > +   "/lib/ld-musl-arm" MUSL_DYNAMIC_LINKER_E "%{mfloat-abi=hard:hf}%{mfdpic:-fdpic}.so.1"
> > +
> > ++/* For armv4 we pass --fix-v4bx to linker to support EABI */
> > ++#undef TARGET_FIX_V4BX_SPEC
> > ++#define TARGET_FIX_V4BX_SPEC "%{mcpu=arm8|mcpu=arm810|mcpu=strongarm*|march=armv4: --fix-v4bx}"
> > ++
> > + /* At this point, bpabi.h will have clobbered LINK_SPEC.  We want to
> > +    use the GNU/Linux version, not the generic BPABI version.  */
> > + #undef  LINK_SPEC
> > +-#define LINK_SPEC EABI_LINK_SPEC                                      \
> > ++#define LINK_SPEC TARGET_FIX_V4BX_SPEC EABI_LINK_SPEC                 \
> > +   LINUX_OR_ANDROID_LD (LINUX_TARGET_LINK_SPEC,                                \
> > +                      LINUX_TARGET_LINK_SPEC " " ANDROID_LINK_SPEC)
> > +
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
> > new file mode 100644
> > index 0000000..1dc4bb8
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
> > @@ -0,0 +1,99 @@
> > +From 6b363c2c1c089ee900efa6013aefba1003840a37 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 29 Mar 2013 09:33:04 +0400
> > +Subject: [PATCH] Use the multilib config files from ${B} instead of using the
> > + ones from ${S}
> > +
> > +Use the multilib config files from ${B} instead of using the ones from ${S}
> > +so that the source can be shared between gcc-cross-initial,
> > +gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
> > +
> > +Upstream-Status: Inappropriate [configuration]
> > +---
> > + gcc/configure    | 22 ++++++++++++++++++----
> > + gcc/configure.ac | 22 ++++++++++++++++++----
> > + 2 files changed, 36 insertions(+), 8 deletions(-)
> > +
> > +diff --git a/gcc/configure b/gcc/configure
> > +index 6080f86145e..825a9652329 100755
> > +--- a/gcc/configure
> > ++++ b/gcc/configure
> > +@@ -12685,10 +12685,20 @@ done
> > + tmake_file_=
> > + for f in ${tmake_file}
> > + do
> > +-      if test -f ${srcdir}/config/$f
> > +-      then
> > +-              tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> > +-      fi
> > ++  case $f in
> > ++    */t-linux64 )
> > ++       if test -f ./config/$f
> > ++       then
> > ++         tmake_file_="${tmake_file_} ./config/$f"
> > ++       fi
> > ++       ;;
> > ++    * )
> > ++       if test -f ${srcdir}/config/$f
> > ++       then
> > ++         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> > ++       fi
> > ++       ;;
> > ++  esac
> > + done
> > + tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
> > +
> > +@@ -12699,6 +12709,10 @@ tm_file_list="options.h"
> > + tm_include_list="options.h insn-constants.h"
> > + for f in $tm_file; do
> > +   case $f in
> > ++    */linux64.h )
> > ++       tm_file_list="${tm_file_list} ./config/$f"
> > ++       tm_include_list="${tm_include_list} ./config/$f"
> > ++       ;;
> > +     ./* )
> > +        f=`echo $f | sed 's/^..//'`
> > +        tm_file_list="${tm_file_list} $f"
> > +diff --git a/gcc/configure.ac b/gcc/configure.ac
> > +index 42be5252778..6099eb3251f 100644
> > +--- a/gcc/configure.ac
> > ++++ b/gcc/configure.ac
> > +@@ -2118,10 +2118,20 @@ done
> > + tmake_file_=
> > + for f in ${tmake_file}
> > + do
> > +-      if test -f ${srcdir}/config/$f
> > +-      then
> > +-              tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> > +-      fi
> > ++  case $f in
> > ++    */t-linux64 )
> > ++       if test -f ./config/$f
> > ++       then
> > ++         tmake_file_="${tmake_file_} ./config/$f"
> > ++       fi
> > ++       ;;
> > ++    * )
> > ++       if test -f ${srcdir}/config/$f
> > ++       then
> > ++         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> > ++       fi
> > ++       ;;
> > ++  esac
> > + done
> > + tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
> > +
> > +@@ -2132,6 +2142,10 @@ tm_file_list="options.h"
> > + tm_include_list="options.h insn-constants.h"
> > + for f in $tm_file; do
> > +   case $f in
> > ++    */linux64.h )
> > ++       tm_file_list="${tm_file_list} ./config/$f"
> > ++       tm_include_list="${tm_include_list} ./config/$f"
> > ++       ;;
> > +     ./* )
> > +        f=`echo $f | sed 's/^..//'`
> > +        tm_file_list="${tm_file_list} $f"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
> > new file mode 100644
> > index 0000000..05f1284
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
> > @@ -0,0 +1,28 @@
> > +From 08752c2f1d21553301bee5757c453c6a36cbe03c Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 20 Feb 2015 09:39:38 +0000
> > +Subject: [PATCH] Avoid using libdir from .la which usually points to a host
> > + path
> > +
> > +Upstream-Status: Inappropriate [embedded specific]
> > +
> > +Signed-off-by: Jonathan Liu <net147@gmail.com>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + ltmain.sh | 3 +++
> > + 1 file changed, 3 insertions(+)
> > +
> > +diff --git a/ltmain.sh b/ltmain.sh
> > +index ee938056bef..9ebc7e3d1e0 100644
> > +--- a/ltmain.sh
> > ++++ b/ltmain.sh
> > +@@ -5628,6 +5628,9 @@ func_mode_link ()
> > +           absdir="$abs_ladir"
> > +           libdir="$abs_ladir"
> > +         else
> > ++          # Instead of using libdir from .la which usually points to a host path,
> > ++          # use the path the .la is contained in.
> > ++          libdir="$abs_ladir"
> > +           dir="$libdir"
> > +           absdir="$libdir"
> > +         fi
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
> > new file mode 100644
> > index 0000000..886a122
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
> > @@ -0,0 +1,50 @@
> > +From 5c3d66378c7ff60ca11a875aa4aa6f8a8529d43a Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 20 Feb 2015 09:40:59 +0000
> > +Subject: [PATCH] export CPP
> > +
> > +The OE environment sets and exports CPP as being the target gcc. When
> > +building gcc-cross-canadian for a mingw targetted sdk, the following can be found
> > +in build.x86_64-pokysdk-mingw32.i586-poky-linux/build-x86_64-linux/libiberty/config.log:
> > +
> > +configure:3641: checking for _FILE_OFFSET_BITS value needed for large files
> > +configure:3666: gcc  -c -isystem/media/build1/poky/build/tmp/sysroots/x86_64-linux/usr/include -O2 -pipe  conftest.c >&5
> > +configure:3666: $? = 0
> > +configure:3698: result: no
> > +configure:3786: checking how to run the C preprocessor
> > +configure:3856: result: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32
> > +configure:3876: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32 conftest.c
> > +configure:3876: $? = 0
> > +
> > +Note this is a *build* target (in build-x86_64-linux) so it should be
> > +using the host "gcc", not x86_64-pokysdk-mingw32-gcc. Since the mingw32
> > +headers are very different, using the wrong cpp is a real problem. It is leaking
> > +into configure through the CPP variable. Ultimately this leads to build
> > +failures related to not being able to include a process.h file for pem-unix.c.
> > +
> > +The fix is to ensure we export a sane CPP value into the build
> > +environment when using build targets. We could define a CPP_FOR_BUILD value which may be
> > +the version which needs to be upstreamed but for now, this fix is good enough to
> > +avoid the problem.
> > +
> > +RP 22/08/2013
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + Makefile.in | 1 +
> > + 1 file changed, 1 insertion(+)
> > +
> > +diff --git a/Makefile.in b/Makefile.in
> > +index 36e369df6e7..c717903bb13 100644
> > +--- a/Makefile.in
> > ++++ b/Makefile.in
> > +@@ -149,6 +149,7 @@ BUILD_EXPORTS = \
> > +       AR="$(AR_FOR_BUILD)"; export AR; \
> > +       AS="$(AS_FOR_BUILD)"; export AS; \
> > +       CC="$(CC_FOR_BUILD)"; export CC; \
> > ++      CPP="$(CC_FOR_BUILD) -E"; export CPP; \
> > +       CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> > +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> > +       CXX="$(CXX_FOR_BUILD)"; export CXX; \
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
> > new file mode 100644
> > index 0000000..2797b2c
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
> > @@ -0,0 +1,57 @@
> > +From 378b752c5d9a3dba4e58cdadf8b4b4f34ea99a76 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 20 Feb 2015 10:25:11 +0000
> > +Subject: [PATCH] Ensure target gcc headers can be included
> > +
> > +There are a few headers installed as part of the OpenEmbedded
> > +gcc-runtime target (omp.h, ssp/*.h). Being installed from a recipe
> > +built for the target architecture, these are within the target
> > +sysroot and not cross/nativesdk; thus they weren't able to be
> > +found by gcc with the existing search paths. Add support for
> > +picking up these headers under the sysroot supplied on the gcc
> > +command line in order to resolve this.
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/Makefile.in  | 2 ++
> > + gcc/cppdefault.c | 4 ++++
> > + 2 files changed, 6 insertions(+)
> > +
> > +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> > +index 480c9366418..011c7ac2db6 100644
> > +--- a/gcc/Makefile.in
> > ++++ b/gcc/Makefile.in
> > +@@ -618,6 +618,7 @@ libexecdir = @libexecdir@
> > +
> > + # Directory in which the compiler finds libraries etc.
> > + libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
> > ++libsubdir_target = $(target_noncanonical)/$(version)
> > + # Directory in which the compiler finds executables
> > + libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
> > + # Directory in which all plugin resources are installed
> > +@@ -2946,6 +2947,7 @@ CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\"
> > +
> > + PREPROCESSOR_DEFINES = \
> > +   -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
> > ++  -DGCC_INCLUDE_SUBDIR_TARGET=\"$(libsubdir_target)/include\" \
> > +   -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
> > +   -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
> > +   -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \
> > +diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
> > +index af38cc494ea..2f43b88a0c3 100644
> > +--- a/gcc/cppdefault.c
> > ++++ b/gcc/cppdefault.c
> > +@@ -59,6 +59,10 @@ const struct default_include cpp_include_defaults[]
> > +     /* This is the dir for gcc's private headers.  */
> > +     { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> > + #endif
> > ++#ifdef GCC_INCLUDE_SUBDIR_TARGET
> > ++    /* This is the dir for gcc's private headers under the specified sysroot.  */
> > ++    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
> > ++#endif
> > + #ifdef LOCAL_INCLUDE_DIR
> > +     /* /usr/local/include comes before the fixincluded header files.  */
> > +     { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
> > new file mode 100644
> > index 0000000..c3baf8b
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
> > @@ -0,0 +1,35 @@
> > +From 870e805d705d99d9b9d7dbd09727f9c1d2ad9c1d Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Tue, 3 Mar 2015 08:21:19 +0000
> > +Subject: [PATCH] Don't search host directory during "relink" if $inst_prefix
> > + is provided
> > +
> > +http://lists.gnu.org/archive/html/libtool-patches/2011-01/msg00026.html
> > +
> > +Upstream-Status: Submitted
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + ltmain.sh | 5 +++--
> > + 1 file changed, 3 insertions(+), 2 deletions(-)
> > +
> > +diff --git a/ltmain.sh b/ltmain.sh
> > +index 9ebc7e3d1e0..7ea79fa8be6 100644
> > +--- a/ltmain.sh
> > ++++ b/ltmain.sh
> > +@@ -6004,12 +6004,13 @@ func_mode_link ()
> > +             fi
> > +           else
> > +             # We cannot seem to hardcode it, guess we'll fake it.
> > ++            # Default if $libdir is not relative to the prefix:
> > +             add_dir="-L$libdir"
> > +-            # Try looking first in the location we're being installed to.
> > ++
> > +             if test -n "$inst_prefix_dir"; then
> > +               case $libdir in
> > +                 [\\/]*)
> > +-                  add_dir="$add_dir -L$inst_prefix_dir$libdir"
> > ++                  add_dir="-L$inst_prefix_dir$libdir"
> > +                   ;;
> > +               esac
> > +             fi
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
> > new file mode 100644
> > index 0000000..abee486
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
> > @@ -0,0 +1,26 @@
> > +From aba42de763a619355471efd1573561b0cbf51162 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Tue, 28 Apr 2015 23:15:27 -0700
> > +Subject: [PATCH] Use SYSTEMLIBS_DIR replacement instead of hardcoding
> > + base_libdir
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/config/aarch64/aarch64-linux.h | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
> > +index e587e2e9ad6..ddc62895693 100644
> > +--- a/gcc/config/aarch64/aarch64-linux.h
> > ++++ b/gcc/config/aarch64/aarch64-linux.h
> > +@@ -21,7 +21,7 @@
> > + #ifndef GCC_AARCH64_LINUX_H
> > + #define GCC_AARCH64_LINUX_H
> > +
> > +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> > ++#define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> > +
> > + #undef MUSL_DYNAMIC_LINKER
> > + #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
> > new file mode 100644
> > index 0000000..c55b66d
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
> > @@ -0,0 +1,25 @@
> > +From d63820a78d92f302410358293546f01c7ad17bd8 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Tue, 28 Apr 2015 23:18:39 -0700
> > +Subject: [PATCH] aarch64: Add support for musl ldso
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/config/aarch64/aarch64-linux.h | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
> > +index ddc62895693..b301825313a 100644
> > +--- a/gcc/config/aarch64/aarch64-linux.h
> > ++++ b/gcc/config/aarch64/aarch64-linux.h
> > +@@ -24,7 +24,7 @@
> > + #define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> > +
> > + #undef MUSL_DYNAMIC_LINKER
> > +-#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> > ++#define MUSL_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> > +
> > + #undef  ASAN_CC1_SPEC
> > + #define ASAN_CC1_SPEC "%{%:sanitize(address):-funwind-tables}"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
> > new file mode 100644
> > index 0000000..80c4d22
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
> > @@ -0,0 +1,51 @@
> > +From 3474e16ad4ea8cf4e0e330568e3bc9039e723dce Mon Sep 17 00:00:00 2001
> > +From: Robert Yang <liezhi.yang@windriver.com>
> > +Date: Sun, 5 Jul 2015 20:25:18 -0700
> > +Subject: [PATCH] libcc1: fix libcc1's install path and rpath
> > +
> > +* Install libcc1.so and libcc1plugin.so into
> > +  $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version), as what we
> > +  had done to lto-plugin.
> > +* Fix bad RPATH iussue:
> > +  gcc-5.2.0: package gcc-plugins contains bad RPATH /patht/to/tmp/sysroots/qemux86-64/usr/lib64/../lib64 in file
> > + /path/to/gcc/5.2.0-r0/packages-split/gcc-plugins/usr/lib64/gcc/x86_64-poky-linux/5.2.0/plugin/libcc1plugin.so.0.0.0
> > + [rpaths]
> > +
> > +Upstream-Status: Inappropriate [OE configuration]
> > +
> > +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> > +---
> > + libcc1/Makefile.am | 4 ++--
> > + libcc1/Makefile.in | 4 ++--
> > + 2 files changed, 4 insertions(+), 4 deletions(-)
> > +
> > +diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am
> > +index c005b0dad4a..ec31d35b7b9 100644
> > +--- a/libcc1/Makefile.am
> > ++++ b/libcc1/Makefile.am
> > +@@ -37,8 +37,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
> > +           $(Wc)$(libiberty_normal)))
> > + libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
> > +
> > +-plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
> > +-cc1libdir = $(libdir)/$(libsuffix)
> > ++cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
> > ++plugindir = $(cc1libdir)
> > +
> > + if ENABLE_PLUGIN
> > + plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
> > +diff --git a/libcc1/Makefile.in b/libcc1/Makefile.in
> > +index 7104b649026..2103c477468 100644
> > +--- a/libcc1/Makefile.in
> > ++++ b/libcc1/Makefile.in
> > +@@ -393,8 +393,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
> > +           $(Wc)$(libiberty_normal)))
> > +
> > + libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
> > +-plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
> > +-cc1libdir = $(libdir)/$(libsuffix)
> > ++cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
> > ++plugindir = $(cc1libdir)
> > + @ENABLE_PLUGIN_TRUE@plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
> > + @ENABLE_PLUGIN_TRUE@cc1lib_LTLIBRARIES = libcc1.la
> > + shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
> > new file mode 100644
> > index 0000000..dc3e6da
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
> > @@ -0,0 +1,349 @@
> > +From 702daf2e9cb97337e0e594fcd435b1b61a917d14 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Mon, 7 Dec 2015 23:39:54 +0000
> > +Subject: [PATCH] handle sysroot support for nativesdk-gcc
> > +
> > +Being able to build a nativesdk gcc is useful, particularly in cases
> > +where the host compiler may be of an incompatible version (or a 32
> > +bit compiler is needed).
> > +
> > +Sadly, building nativesdk-gcc is not straight forward. We install
> > +nativesdk-gcc into a relocatable location and this means that its
> > +library locations can change. "Normal" sysroot support doesn't help
> > +in this case since the values of paths like "libdir" change, not just
> > +base root directory of the system.
> > +
> > +In order to handle this we do two things:
> > +
> > +a) Add %r into spec file markup which can be used for injected paths
> > +   such as SYSTEMLIBS_DIR (see gcc_multilib_setup()).
> > +b) Add other paths which need relocation into a .gccrelocprefix section
> > +   which the relocation code will notice and adjust automatically.
> > +
> > +Upstream-Status: Inappropriate
> > +RP 2015/7/28
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +
> > +Added PREFIXVAR and EXEC_PREFIXVAR to support runtime relocation.  Without
> > +these as part of the gccrelocprefix the system can't do runtime relocation
> > +if the executable is moved.  (These paths were missed in the original
> > +implementation.)
> > +
> > +Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
> > +---
> > + gcc/c-family/c-opts.c |  4 +--
> > + gcc/cppdefault.c      | 63 ++++++++++++++++++++++++++-----------------
> > + gcc/cppdefault.h      | 13 ++++-----
> > + gcc/gcc.c             | 20 +++++++++-----
> > + gcc/incpath.c         | 12 ++++-----
> > + gcc/prefix.c          |  6 +++--
> > + 6 files changed, 70 insertions(+), 48 deletions(-)
> > +
> > +diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c
> > +index 58ba0948e79..806bbcfb7a5 100644
> > +--- a/gcc/c-family/c-opts.c
> > ++++ b/gcc/c-family/c-opts.c
> > +@@ -1409,8 +1409,8 @@ add_prefixed_path (const char *suffix, incpath_kind chain)
> > +   size_t prefix_len, suffix_len;
> > +
> > +   suffix_len = strlen (suffix);
> > +-  prefix     = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
> > +-  prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
> > ++  prefix     = iprefix ? iprefix : GCC_INCLUDE_DIRVAR;
> > ++  prefix_len = iprefix ? strlen (iprefix) : strlen(GCC_INCLUDE_DIRVAR) - 7;
> > +
> > +   path = (char *) xmalloc (prefix_len + suffix_len + 1);
> > +   memcpy (path, prefix, prefix_len);
> > +diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
> > +index 2f43b88a0c3..6b6be04686c 100644
> > +--- a/gcc/cppdefault.c
> > ++++ b/gcc/cppdefault.c
> > +@@ -35,6 +35,30 @@
> > + # undef CROSS_INCLUDE_DIR
> > + #endif
> > +
> > ++static char GPLUSPLUS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_INCLUDE_DIR;
> > ++char GCC_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GCC_INCLUDE_DIR;
> > ++static char GPLUSPLUS_TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_TOOL_INCLUDE_DIR;
> > ++static char GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_BACKWARD_INCLUDE_DIR;
> > ++static char STANDARD_STARTFILE_PREFIX_2VAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET;
> > ++#ifdef LOCAL_INCLUDE_DIR
> > ++static char LOCAL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = LOCAL_INCLUDE_DIR;
> > ++#endif
> > ++#ifdef PREFIX_INCLUDE_DIR
> > ++static char PREFIX_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX_INCLUDE_DIR;
> > ++#endif
> > ++#ifdef FIXED_INCLUDE_DIR
> > ++static char FIXED_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = FIXED_INCLUDE_DIR;
> > ++#endif
> > ++#ifdef CROSS_INCLUDE_DIR
> > ++static char CROSS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = CROSS_INCLUDE_DIR;
> > ++#endif
> > ++#ifdef TOOL_INCLUDE_DIR
> > ++static char TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = TOOL_INCLUDE_DIR;
> > ++#endif
> > ++#ifdef NATIVE_SYSTEM_HEADER_DIR
> > ++static char NATIVE_SYSTEM_HEADER_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = NATIVE_SYSTEM_HEADER_DIR;
> > ++#endif
> > ++
> > + const struct default_include cpp_include_defaults[]
> > + #ifdef INCLUDE_DEFAULTS
> > + = INCLUDE_DEFAULTS;
> > +@@ -42,38 +66,38 @@ const struct default_include cpp_include_defaults[]
> > + = {
> > + #ifdef GPLUSPLUS_INCLUDE_DIR
> > +     /* Pick up GNU C++ generic include files.  */
> > +-    { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1,
> > ++    { GPLUSPLUS_INCLUDE_DIRVAR, "G++", 1, 1,
> > +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
> > + #endif
> > + #ifdef GPLUSPLUS_TOOL_INCLUDE_DIR
> > +     /* Pick up GNU C++ target-dependent include files.  */
> > +-    { GPLUSPLUS_TOOL_INCLUDE_DIR, "G++", 1, 1,
> > ++    { GPLUSPLUS_TOOL_INCLUDE_DIRVAR, "G++", 1, 1,
> > +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 1 },
> > + #endif
> > + #ifdef GPLUSPLUS_BACKWARD_INCLUDE_DIR
> > +     /* Pick up GNU C++ backward and deprecated include files.  */
> > +-    { GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1,
> > ++    { GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR, "G++", 1, 1,
> > +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
> > + #endif
> > + #ifdef GCC_INCLUDE_DIR
> > +     /* This is the dir for gcc's private headers.  */
> > +-    { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> > ++    { GCC_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
> > + #endif
> > + #ifdef GCC_INCLUDE_SUBDIR_TARGET
> > +     /* This is the dir for gcc's private headers under the specified sysroot.  */
> > +-    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
> > ++    { STANDARD_STARTFILE_PREFIX_2VAR, "GCC", 0, 0, 1, 0 },
> > + #endif
> > + #ifdef LOCAL_INCLUDE_DIR
> > +     /* /usr/local/include comes before the fixincluded header files.  */
> > +-    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
> > +-    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 0 },
> > ++    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 2 },
> > ++    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 0 },
> > + #endif
> > + #ifdef PREFIX_INCLUDE_DIR
> > +-    { PREFIX_INCLUDE_DIR, 0, 0, 1, 0, 0 },
> > ++    { PREFIX_INCLUDE_DIRVAR, 0, 0, 1, 0, 0 },
> > + #endif
> > + #ifdef FIXED_INCLUDE_DIR
> > +     /* This is the dir for fixincludes.  */
> > +-    { FIXED_INCLUDE_DIR, "GCC", 0, 0, 0,
> > ++    { FIXED_INCLUDE_DIRVAR, "GCC", 0, 0, 0,
> > +       /* A multilib suffix needs adding if different multilibs use
> > +        different headers.  */
> > + #ifdef SYSROOT_HEADERS_SUFFIX_SPEC
> > +@@ -85,33 +109,24 @@ const struct default_include cpp_include_defaults[]
> > + #endif
> > + #ifdef CROSS_INCLUDE_DIR
> > +     /* One place the target system's headers might be.  */
> > +-    { CROSS_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> > ++    { CROSS_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
> > + #endif
> > + #ifdef TOOL_INCLUDE_DIR
> > +     /* Another place the target system's headers might be.  */
> > +-    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1, 0, 0 },
> > ++    { TOOL_INCLUDE_DIRVAR, "BINUTILS", 0, 1, 0, 0 },
> > + #endif
> > + #ifdef NATIVE_SYSTEM_HEADER_DIR
> > +     /* /usr/include comes dead last.  */
> > +-    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
> > +-    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
> > ++    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
> > ++    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
> > + #endif
> > +     { 0, 0, 0, 0, 0, 0 }
> > +   };
> > + #endif /* no INCLUDE_DEFAULTS */
> > +
> > +-#ifdef GCC_INCLUDE_DIR
> > +-const char cpp_GCC_INCLUDE_DIR[] = GCC_INCLUDE_DIR;
> > +-const size_t cpp_GCC_INCLUDE_DIR_len = sizeof GCC_INCLUDE_DIR - 8;
> > +-#else
> > +-const char cpp_GCC_INCLUDE_DIR[] = "";
> > +-const size_t cpp_GCC_INCLUDE_DIR_len = 0;
> > +-#endif
> > +-
> > + /* The configured prefix.  */
> > +-const char cpp_PREFIX[] = PREFIX;
> > +-const size_t cpp_PREFIX_len = sizeof PREFIX - 1;
> > +-const char cpp_EXEC_PREFIX[] = STANDARD_EXEC_PREFIX;
> > ++char PREFIXVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX;
> > ++char EXEC_PREFIXVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
> > +
> > + /* This value is set by cpp_relocated at runtime */
> > + const char *gcc_exec_prefix;
> > +diff --git a/gcc/cppdefault.h b/gcc/cppdefault.h
> > +index a681264f75e..5e10a2fa140 100644
> > +--- a/gcc/cppdefault.h
> > ++++ b/gcc/cppdefault.h
> > +@@ -33,7 +33,8 @@
> > +
> > + struct default_include
> > + {
> > +-  const char *const fname;    /* The name of the directory.  */
> > ++  const char *fname;     /* The name of the directory.  */
> > ++
> > +   const char *const component;        /* The component containing the directory
> > +                                  (see update_path in prefix.c) */
> > +   const char cplusplus;               /* Only look here if we're compiling C++.  */
> > +@@ -50,17 +51,13 @@ struct default_include
> > + };
> > +
> > + extern const struct default_include cpp_include_defaults[];
> > +-extern const char cpp_GCC_INCLUDE_DIR[];
> > +-extern const size_t cpp_GCC_INCLUDE_DIR_len;
> > ++extern char GCC_INCLUDE_DIRVAR[] __attribute__ ((section (".gccrelocprefix")));
> > +
> > + /* The configure-time prefix, i.e., the value supplied as the argument
> > +    to --prefix=.  */
> > +-extern const char cpp_PREFIX[];
> > ++extern char PREFIXVAR[] __attribute__ ((section (".gccrelocprefix")));
> > + /* The length of the configure-time prefix.  */
> > +-extern const size_t cpp_PREFIX_len;
> > +-/* The configure-time execution prefix.  This is typically the lib/gcc
> > +-   subdirectory of cpp_PREFIX.  */
> > +-extern const char cpp_EXEC_PREFIX[];
> > ++extern char EXEC_PREFIXVAR[] __attribute__ ((section (".gccrelocprefix")));
> > + /* The run-time execution prefix.  This is typically the lib/gcc
> > +    subdirectory of the actual installation.  */
> > + extern const char *gcc_exec_prefix;
> > +diff --git a/gcc/gcc.c b/gcc/gcc.c
> > +index c87f603955f..535d5c3bb65 100644
> > +--- a/gcc/gcc.c
> > ++++ b/gcc/gcc.c
> > +@@ -252,6 +252,8 @@ FILE *report_times_to_file = NULL;
> > + #endif
> > + static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
> > +
> > ++static char target_relocatable_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = SYSTEMLIBS_DIR;
> > ++
> > + /* Nonzero means pass the updated target_system_root to the compiler.  */
> > +
> > + static int target_system_root_changed;
> > +@@ -526,6 +528,7 @@ or with constant text in a single argument.
> > +  %G     process LIBGCC_SPEC as a spec.
> > +  %R     Output the concatenation of target_system_root and
> > +         target_sysroot_suffix.
> > ++ %r     Output the base path target_relocatable_prefix
> > +  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
> > +  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
> > +  %C     process CPP_SPEC as a spec.
> > +@@ -1499,10 +1502,10 @@ static const char *gcc_libexec_prefix;
> > +    gcc_exec_prefix is set because, in that case, we know where the
> > +    compiler has been installed, and use paths relative to that
> > +    location instead.  */
> > +-static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
> > +-static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
> > +-static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
> > +-static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> > ++static char standard_exec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
> > ++static char standard_libexec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_LIBEXEC_PREFIX;
> > ++static char standard_bindir_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_BINDIR_PREFIX;
> > ++static char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> > +
> > + /* For native compilers, these are well-known paths containing
> > +    components that may be provided by the system.  For cross
> > +@@ -1510,9 +1513,9 @@ static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> > + static const char *md_exec_prefix = MD_EXEC_PREFIX;
> > + static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
> > + static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
> > +-static const char *const standard_startfile_prefix_1
> > ++static char standard_startfile_prefix_1[4096] __attribute__ ((section (".gccrelocprefix")))
> > +   = STANDARD_STARTFILE_PREFIX_1;
> > +-static const char *const standard_startfile_prefix_2
> > ++static char standard_startfile_prefix_2[4096] __attribute__ ((section (".gccrelocprefix")))
> > +   = STANDARD_STARTFILE_PREFIX_2;
> > +
> > + /* A relative path to be used in finding the location of tools
> > +@@ -5952,6 +5955,11 @@ do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
> > +             }
> > +           break;
> > +
> > ++          case 'r':
> > ++              obstack_grow (&obstack, target_relocatable_prefix,
> > ++                    strlen (target_relocatable_prefix));
> > ++            break;
> > ++
> > +         case 'S':
> > +           value = do_spec_1 (startfile_spec, 0, NULL);
> > +           if (value != 0)
> > +diff --git a/gcc/incpath.c b/gcc/incpath.c
> > +index 9098ab044ab..bfad4ebe382 100644
> > +--- a/gcc/incpath.c
> > ++++ b/gcc/incpath.c
> > +@@ -131,7 +131,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> > +   int relocated = cpp_relocated ();
> > +   size_t len;
> > +
> > +-  if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0)
> > ++  if (iprefix && (len = strlen(GCC_INCLUDE_DIRVAR) - 7) != 0)
> > +     {
> > +       /* Look for directories that start with the standard prefix.
> > +        "Translate" them, i.e. replace /usr/local/lib/gcc... with
> > +@@ -145,7 +145,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> > +                now.  */
> > +             if (sysroot && p->add_sysroot)
> > +               continue;
> > +-            if (!filename_ncmp (p->fname, cpp_GCC_INCLUDE_DIR, len))
> > ++            if (!filename_ncmp (p->fname, GCC_INCLUDE_DIRVAR, len))
> > +               {
> > +                 char *str = concat (iprefix, p->fname + len, NULL);
> > +                 if (p->multilib == 1 && imultilib)
> > +@@ -185,7 +185,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> > +             free (sysroot_no_trailing_dir_separator);
> > +           }
> > +         else if (!p->add_sysroot && relocated
> > +-                 && !filename_ncmp (p->fname, cpp_PREFIX, cpp_PREFIX_len))
> > ++                 && !filename_ncmp (p->fname, PREFIXVAR, strlen(PREFIXVAR)))
> > +           {
> > +             static const char *relocated_prefix;
> > +             char *ostr;
> > +@@ -202,12 +202,12 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> > +                 dummy = concat (gcc_exec_prefix, "dummy", NULL);
> > +                 relocated_prefix
> > +                   = make_relative_prefix (dummy,
> > +-                                          cpp_EXEC_PREFIX,
> > +-                                          cpp_PREFIX);
> > ++                                          EXEC_PREFIXVAR,
> > ++                                          PREFIXVAR);
> > +                 free (dummy);
> > +               }
> > +             ostr = concat (relocated_prefix,
> > +-                           p->fname + cpp_PREFIX_len,
> > ++                           p->fname + strlen(PREFIXVAR),
> > +                            NULL);
> > +             str = update_path (ostr, p->component);
> > +             free (ostr);
> > +diff --git a/gcc/prefix.c b/gcc/prefix.c
> > +index 1a403e535bd..c26d07bde12 100644
> > +--- a/gcc/prefix.c
> > ++++ b/gcc/prefix.c
> > +@@ -72,7 +72,9 @@ License along with GCC; see the file COPYING3.  If not see
> > + #include "prefix.h"
> > + #include "common/common-target.h"
> > +
> > +-static const char *std_prefix = PREFIX;
> > ++char PREFIXVAR1[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX;
> > ++
> > ++static const char *std_prefix = PREFIXVAR1;
> > +
> > + static const char *get_key_value (char *);
> > + static char *translate_name (char *);
> > +@@ -212,7 +214,7 @@ translate_name (char *name)
> > +       prefix = getenv (key);
> > +
> > +       if (prefix == 0)
> > +-      prefix = PREFIX;
> > ++      prefix = PREFIXVAR1;
> > +
> > +       /* We used to strip trailing DIR_SEPARATORs here, but that can
> > +        sometimes yield a result with no separator when one was coded
> > +--
> > +2.29.2
> > +
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
> > new file mode 100644
> > index 0000000..abf1f84
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
> > @@ -0,0 +1,99 @@
> > +From 9c0c73ee48dbee2aad57f4dcdad1b7b74e77b944 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Mon, 7 Dec 2015 23:41:45 +0000
> > +Subject: [PATCH] Search target sysroot gcc version specific dirs with
> > + multilib.
> > +
> > +We install the gcc libraries (such as crtbegin.p) into
> > +<sysroot><libdir>/<target-sys>/5.2.0/
> > +which is a default search path for GCC (aka multi_suffix in the
> > +code below). <target-sys> is 'machine' in gcc's terminology. We use
> > +these directories so that multiple gcc versions could in theory
> > +co-exist on target.
> > +
> > +We only want to build one gcc-cross-canadian per arch and have this work
> > +for all multilibs. <target-sys> can be handled by mapping the multilib
> > +<target-sys> to the one used by gcc-cross-canadian, e.g.
> > +mips64-polkmllib32-linux
> > +is symlinked to by mips64-poky-linux.
> > +
> > +The default gcc search path in the target sysroot for a "lib64" mutlilib
> > +is:
> > +
> > +<sysroot>/lib32/mips64-poky-linux/5.2.0/
> > +<sysroot>/lib32/../lib64/
> > +<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
> > +<sysroot>/usr/lib32/../lib64/
> > +<sysroot>/lib32/
> > +<sysroot>/usr/lib32/
> > +
> > +which means that the lib32 crtbegin.o will be found and the lib64 ones
> > +will not which leads to compiler failures.
> > +
> > +This patch injects a multilib version of that path first so the lib64
> > +binaries can be found first. With this change the search path becomes:
> > +
> > +<sysroot>/lib32/../lib64/mips64-poky-linux/5.2.0/
> > +<sysroot>/lib32/mips64-poky-linux/5.2.0/
> > +<sysroot>/lib32/../lib64/
> > +<sysroot>/usr/lib32/../lib64/mips64-poky-linux/5.2.0/
> > +<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
> > +<sysroot>/usr/lib32/../lib64/
> > +<sysroot>/lib32/
> > +<sysroot>/usr/lib32/
> > +
> > +Upstream-Status: Pending
> > +RP 2015/7/31
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/gcc.c | 29 ++++++++++++++++++++++++++++-
> > + 1 file changed, 28 insertions(+), 1 deletion(-)
> > +
> > +diff --git a/gcc/gcc.c b/gcc/gcc.c
> > +index 535d5c3bb65..04647ae812d 100644
> > +--- a/gcc/gcc.c
> > ++++ b/gcc/gcc.c
> > +@@ -2616,7 +2616,7 @@ for_each_path (const struct path_prefix *paths,
> > +       if (path == NULL)
> > +       {
> > +         len = paths->max_len + extra_space + 1;
> > +-        len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
> > ++        len += MAX ((suffix_len + multi_os_dir_len), multiarch_len);
> > +         path = XNEWVEC (char, len);
> > +       }
> > +
> > +@@ -2628,6 +2628,33 @@ for_each_path (const struct path_prefix *paths,
> > +         /* Look first in MACHINE/VERSION subdirectory.  */
> > +         if (!skip_multi_dir)
> > +           {
> > ++            if (!(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
> > ++              {
> > ++                const char *this_multi;
> > ++                size_t this_multi_len;
> > ++
> > ++                if (pl->os_multilib)
> > ++                  {
> > ++                    this_multi = multi_os_dir;
> > ++                    this_multi_len = multi_os_dir_len;
> > ++                  }
> > ++                else
> > ++                  {
> > ++                    this_multi = multi_dir;
> > ++                    this_multi_len = multi_dir_len;
> > ++                  }
> > ++
> > ++                /* Look in multilib MACHINE/VERSION subdirectory first */
> > ++                if (this_multi_len)
> > ++                  {
> > ++                    memcpy (path + len, this_multi, this_multi_len + 1);
> > ++                    memcpy (path + len + this_multi_len, multi_suffix, suffix_len + 1);
> > ++                    ret = callback (path, callback_info);
> > ++                      if (ret)
> > ++                        break;
> > ++                  }
> > ++              }
> > ++
> > +             memcpy (path + len, multi_suffix, suffix_len + 1);
> > +             ret = callback (path, callback_info);
> > +             if (ret)
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
> > new file mode 100644
> > index 0000000..97bf2f3
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
> > @@ -0,0 +1,134 @@
> > +From 3a003af8804dda90fdf4862eca5f66cb12faaf02 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Mon, 7 Dec 2015 23:42:45 +0000
> > +Subject: [PATCH] Fix various _FOR_BUILD and related variables
> > +
> > +When doing a FOR_BUILD thing, you have to override CFLAGS with
> > +CFLAGS_FOR_BUILD. And if you use C++, you also have to override
> > +CXXFLAGS with CXXFLAGS_FOR_BUILD.
> > +Without this, when building for mingw, you end up trying to use
> > +the mingw headers for a host build.
> > +
> > +The same goes for other variables as well, such as CPPFLAGS,
> > +CPP, and GMPINC.
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
> > +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + Makefile.in      | 6 ++++++
> > + Makefile.tpl     | 5 +++++
> > + gcc/Makefile.in  | 2 +-
> > + gcc/configure    | 2 +-
> > + gcc/configure.ac | 2 +-
> > + 5 files changed, 14 insertions(+), 3 deletions(-)
> > +
> > +diff --git a/Makefile.in b/Makefile.in
> > +index c717903bb13..5abc649868d 100644
> > +--- a/Makefile.in
> > ++++ b/Makefile.in
> > +@@ -152,6 +152,7 @@ BUILD_EXPORTS = \
> > +       CPP="$(CC_FOR_BUILD) -E"; export CPP; \
> > +       CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> > +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> > ++      CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
> > +       CXX="$(CXX_FOR_BUILD)"; export CXX; \
> > +       CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
> > +       GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
> > +@@ -171,6 +172,9 @@ BUILD_EXPORTS = \
> > + # built for the build system to override those in BASE_FLAGS_TO_PASS.
> > + EXTRA_BUILD_FLAGS = \
> > +       CFLAGS="$(CFLAGS_FOR_BUILD)" \
> > ++      CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
> > ++      CPP="$(CC_FOR_BUILD) -E" \
> > ++      CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
> > +       LDFLAGS="$(LDFLAGS_FOR_BUILD)"
> > +
> > + # This is the list of directories to built for the host system.
> > +@@ -188,6 +192,7 @@ HOST_SUBDIR = @host_subdir@
> > + HOST_EXPORTS = \
> > +       $(BASE_EXPORTS) \
> > +       CC="$(CC)"; export CC; \
> > ++      CPP="$(CC) -E"; export CPP; \
> > +       ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
> > +       CFLAGS="$(CFLAGS)"; export CFLAGS; \
> > +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> > +@@ -776,6 +781,7 @@ BASE_FLAGS_TO_PASS = \
> > +       "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
> > +       "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
> > +       "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
> > ++      "CXXFLAGS_FOR_BUILD=$(CXXFLAGS_FOR_BUILD)" \
> > +       "EXPECT=$(EXPECT)" \
> > +       "FLEX=$(FLEX)" \
> > +       "INSTALL=$(INSTALL)" \
> > +diff --git a/Makefile.tpl b/Makefile.tpl
> > +index efed1511750..778beb705b4 100644
> > +--- a/Makefile.tpl
> > ++++ b/Makefile.tpl
> > +@@ -154,6 +154,7 @@ BUILD_EXPORTS = \
> > +       CC="$(CC_FOR_BUILD)"; export CC; \
> > +       CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> > +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> > ++      CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
> > +       CXX="$(CXX_FOR_BUILD)"; export CXX; \
> > +       CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
> > +       GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
> > +@@ -173,6 +174,9 @@ BUILD_EXPORTS = \
> > + # built for the build system to override those in BASE_FLAGS_TO_PASS.
> > + EXTRA_BUILD_FLAGS = \
> > +       CFLAGS="$(CFLAGS_FOR_BUILD)" \
> > ++      CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
> > ++      CPP="$(CC_FOR_BUILD) -E" \
> > ++      CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
> > +       LDFLAGS="$(LDFLAGS_FOR_BUILD)"
> > +
> > + # This is the list of directories to built for the host system.
> > +@@ -190,6 +194,7 @@ HOST_SUBDIR = @host_subdir@
> > + HOST_EXPORTS = \
> > +       $(BASE_EXPORTS) \
> > +       CC="$(CC)"; export CC; \
> > ++      CPP="$(CC) -E"; export CPP; \
> > +       ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
> > +       CFLAGS="$(CFLAGS)"; export CFLAGS; \
> > +       CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> > +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> > +index 011c7ac2db6..2f1165f7b5e 100644
> > +--- a/gcc/Makefile.in
> > ++++ b/gcc/Makefile.in
> > +@@ -805,7 +805,7 @@ BUILD_LDFLAGS=@BUILD_LDFLAGS@
> > + BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@
> > + BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG)
> > + BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
> > +-              -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS)
> > ++              -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS_FOR_BUILD)
> > +
> > + # Actual name to use when installing a native compiler.
> > + GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
> > +diff --git a/gcc/configure b/gcc/configure
> > +index 825a9652329..ff46cf58960 100755
> > +--- a/gcc/configure
> > ++++ b/gcc/configure
> > +@@ -12314,7 +12314,7 @@ else
> > +       CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
> > +       CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
> > +       LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
> > +-      GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
> > ++      GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
> > +       ${realsrcdir}/configure \
> > +               --enable-languages=${enable_languages-all} \
> > +               ${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
> > +diff --git a/gcc/configure.ac b/gcc/configure.ac
> > +index 6099eb3251f..b3c345b61dc 100644
> > +--- a/gcc/configure.ac
> > ++++ b/gcc/configure.ac
> > +@@ -1898,7 +1898,7 @@ else
> > +       CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
> > +       CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
> > +       LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
> > +-      GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
> > ++      GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
> > +       ${realsrcdir}/configure \
> > +               --enable-languages=${enable_languages-all} \
> > +               ${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
> > new file mode 100644
> > index 0000000..3cd75b7
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
> > @@ -0,0 +1,25 @@
> > +From 4e53d0ae70af85af0e112a48a3e4dfe4c39f4a8d Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Tue, 2 Feb 2016 10:26:10 -0800
> > +Subject: [PATCH] nios2: Define MUSL_DYNAMIC_LINKER
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Marek Vasut <marex@denx.de>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/config/nios2/linux.h | 1 +
> > + 1 file changed, 1 insertion(+)
> > +
> > +diff --git a/gcc/config/nios2/linux.h b/gcc/config/nios2/linux.h
> > +index 4bdcdcca1f0..e7943a9d640 100644
> > +--- a/gcc/config/nios2/linux.h
> > ++++ b/gcc/config/nios2/linux.h
> > +@@ -30,6 +30,7 @@
> > + #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
> > +
> > + #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-nios2.so.1"
> > ++#define MUSL_DYNAMIC_LINKER  "/lib/ld-musl-nios2.so.1"
> > +
> > + #undef LINK_SPEC
> > + #define LINK_SPEC LINK_SPEC_ENDIAN \
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
> > new file mode 100644
> > index 0000000..2a6769a
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
> > @@ -0,0 +1,84 @@
> > +From 5db0404eb770ac477fd99d444226bcf021067584 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Tue, 27 Jun 2017 18:10:54 -0700
> > +Subject: [PATCH] Add ssp_nonshared to link commandline for musl targets
> > +
> > +when -fstack-protector options are enabled we need to
> > +link with ssp_shared on musl since it does not provide
> > +the __stack_chk_fail_local() so essentially it provides
> > +libssp but not libssp_nonshared something like
> > +TARGET_LIBC_PROVIDES_SSP_BUT_NOT_SSP_NONSHARED
> > + where-as for glibc the needed symbols
> > +are already present in libc_nonshared library therefore
> > +we do not need any library helper on glibc based systems
> > +but musl needs the libssp_noshared from gcc
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/config/linux.h          |  7 +++++++
> > + gcc/config/rs6000/linux.h   | 10 ++++++++++
> > + gcc/config/rs6000/linux64.h | 10 ++++++++++
> > + 3 files changed, 27 insertions(+)
> > +
> > +diff --git a/gcc/config/linux.h b/gcc/config/linux.h
> > +index 0c1a8118a26..bdc2a2d0659 100644
> > +--- a/gcc/config/linux.h
> > ++++ b/gcc/config/linux.h
> > +@@ -195,6 +195,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> > +     { GCC_INCLUDE_DIR, "GCC", 0, 1, 0, 0 },           \
> > +     { 0, 0, 0, 0, 0, 0 }                              \
> > +   }
> > ++#ifdef TARGET_LIBC_PROVIDES_SSP
> > ++#undef LINK_SSP_SPEC
> > ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> > ++                     "|fstack-protector-strong|fstack-protector-explicit" \
> > ++                     ":-lssp_nonshared}"
> > ++#endif
> > ++
> > + #endif
> > +
> > + #if (DEFAULT_LIBC == LIBC_UCLIBC) && defined (SINGLE_LIBC) /* uClinux */
> > +diff --git a/gcc/config/rs6000/linux.h b/gcc/config/rs6000/linux.h
> > +index b7026fcbee7..dd54d6c393e 100644
> > +--- a/gcc/config/rs6000/linux.h
> > ++++ b/gcc/config/rs6000/linux.h
> > +@@ -94,6 +94,16 @@
> > +                                        " -m elf32ppclinux")
> > + #endif
> > +
> > ++/* link libssp_nonshared.a with musl */
> > ++#if DEFAULT_LIBC == LIBC_MUSL
> > ++#ifdef TARGET_LIBC_PROVIDES_SSP
> > ++#undef LINK_SSP_SPEC
> > ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> > ++                     "|fstack-protector-strong|fstack-protector-explicit" \
> > ++                     ":-lssp_nonshared}"
> > ++#endif
> > ++#endif
> > ++
> > + #undef LINK_OS_LINUX_SPEC
> > + #define LINK_OS_LINUX_SPEC LINK_OS_LINUX_EMUL " %{!shared: %{!static: \
> > +   %{!static-pie: \
> > +diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
> > +index 967c1c43c63..dc5e4d97975 100644
> > +--- a/gcc/config/rs6000/linux64.h
> > ++++ b/gcc/config/rs6000/linux64.h
> > +@@ -452,6 +452,16 @@ extern int dot_symbols;
> > +                                          " -m elf64ppc")
> > + #endif
> > +
> > ++/* link libssp_nonshared.a with musl */
> > ++#if DEFAULT_LIBC == LIBC_MUSL
> > ++#ifdef TARGET_LIBC_PROVIDES_SSP
> > ++#undef LINK_SSP_SPEC
> > ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> > ++                     "|fstack-protector-strong|fstack-protector-explicit" \
> > ++                     ":-lssp_nonshared}"
> > ++#endif
> > ++#endif
> > ++
> > + #define LINK_OS_LINUX_SPEC32 LINK_OS_LINUX_EMUL32 " %{!shared: %{!static: \
> > +   %{!static-pie: \
> > +     %{rdynamic:-export-dynamic} \
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
> > new file mode 100644
> > index 0000000..767cba0
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
> > @@ -0,0 +1,26 @@
> > +From fbc926dbf6a47fa623b9c94cd9b09a0e90448fdc Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Wed, 4 May 2016 21:11:34 -0700
> > +Subject: [PATCH] Link libgcc using LDFLAGS, not just SHLIB_LDFLAGS
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + libgcc/config/t-slibgcc | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/libgcc/config/t-slibgcc b/libgcc/config/t-slibgcc
> > +index c997553447c..330352c2c81 100644
> > +--- a/libgcc/config/t-slibgcc
> > ++++ b/libgcc/config/t-slibgcc
> > +@@ -32,7 +32,7 @@ SHLIB_INSTALL_SOLINK = $(LN_S) $(SHLIB_SONAME) \
> > +       $(DESTDIR)$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
> > +
> > + SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
> > +-      $(SHLIB_LDFLAGS) \
> > ++      $(LDFLAGS) $(SHLIB_LDFLAGS) \
> > +       -o $(SHLIB_DIR)/$(SHLIB_SONAME).tmp @multilib_flags@ \
> > +       $(SHLIB_OBJS) $(SHLIB_LC) && \
> > +       rm -f $(SHLIB_DIR)/$(SHLIB_SOLINK) && \
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
> > new file mode 100644
> > index 0000000..4f18907
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
> > @@ -0,0 +1,88 @@
> > +From 24dc04dc8d69e3bf61322615b3ef18e02ccd311e Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Fri, 3 Feb 2017 12:56:00 -0800
> > +Subject: [PATCH] sync gcc stddef.h with musl
> > +
> > +musl defines ptrdiff_t size_t and wchar_t
> > +so dont define them here if musl is definining them
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/ginclude/stddef.h | 9 +++++++++
> > + 1 file changed, 9 insertions(+)
> > +
> > +diff --git a/gcc/ginclude/stddef.h b/gcc/ginclude/stddef.h
> > +index 9d67eac4947..6cb5edbedb4 100644
> > +--- a/gcc/ginclude/stddef.h
> > ++++ b/gcc/ginclude/stddef.h
> > +@@ -128,6 +128,7 @@ _TYPE_wchar_t;
> > + #ifndef ___int_ptrdiff_t_h
> > + #ifndef _GCC_PTRDIFF_T
> > + #ifndef _PTRDIFF_T_DECLARED /* DragonFly */
> > ++#ifndef __DEFINED_ptrdiff_t /* musl */
> > + #define _PTRDIFF_T
> > + #define _T_PTRDIFF_
> > + #define _T_PTRDIFF
> > +@@ -137,10 +138,12 @@ _TYPE_wchar_t;
> > + #define ___int_ptrdiff_t_h
> > + #define _GCC_PTRDIFF_T
> > + #define _PTRDIFF_T_DECLARED
> > ++#define __DEFINED_ptrdiff_t /* musl */
> > + #ifndef __PTRDIFF_TYPE__
> > + #define __PTRDIFF_TYPE__ long int
> > + #endif
> > + typedef __PTRDIFF_TYPE__ ptrdiff_t;
> > ++#endif /* __DEFINED_ptrdiff_t */
> > + #endif /* _PTRDIFF_T_DECLARED */
> > + #endif /* _GCC_PTRDIFF_T */
> > + #endif /* ___int_ptrdiff_t_h */
> > +@@ -178,6 +181,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
> > + #ifndef _GCC_SIZE_T
> > + #ifndef _SIZET_
> > + #ifndef __size_t
> > ++#ifndef __DEFINED_size_t /* musl */
> > + #define __size_t__    /* BeOS */
> > + #define __SIZE_T__    /* Cray Unicos/Mk */
> > + #define _SIZE_T
> > +@@ -194,6 +198,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
> > + #define ___int_size_t_h
> > + #define _GCC_SIZE_T
> > + #define _SIZET_
> > ++#define __DEFINED_size_t /* musl */
> > + #if defined (__FreeBSD__) \
> > +   || defined(__DragonFly__) \
> > +   || defined(__FreeBSD_kernel__) \
> > +@@ -228,6 +233,7 @@ typedef long ssize_t;
> > + #endif /* _SIZE_T */
> > + #endif /* __SIZE_T__ */
> > + #endif /* __size_t__ */
> > ++#endif /* __DEFINED_size_t */
> > + #undef        __need_size_t
> > + #endif /* _STDDEF_H or __need_size_t.  */
> > +
> > +@@ -257,6 +263,7 @@ typedef long ssize_t;
> > + #ifndef ___int_wchar_t_h
> > + #ifndef __INT_WCHAR_T_H
> > + #ifndef _GCC_WCHAR_T
> > ++#ifndef __DEFINED_wchar_t /* musl */
> > + #define __wchar_t__   /* BeOS */
> > + #define __WCHAR_T__   /* Cray Unicos/Mk */
> > + #define _WCHAR_T
> > +@@ -272,6 +279,7 @@ typedef long ssize_t;
> > + #define __INT_WCHAR_T_H
> > + #define _GCC_WCHAR_T
> > + #define _WCHAR_T_DECLARED
> > ++#define __DEFINED_wchar_t /* musl */
> > +
> > + /* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
> > +    instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other
> > +@@ -337,6 +345,7 @@ typedef __WCHAR_TYPE__ wchar_t;
> > + #endif
> > + #endif /* __WCHAR_T__ */
> > + #endif /* __wchar_t__ */
> > ++#endif /* __DEFINED_wchar_t musl */
> > + #undef        __need_wchar_t
> > + #endif /* _STDDEF_H or __need_wchar_t.  */
> > +
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
> > new file mode 100644
> > index 0000000..702279a
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
> > @@ -0,0 +1,57 @@
> > +From 27b8ba5555ada2dab076988529bfb84d00a4b901 Mon Sep 17 00:00:00 2001
> > +From: Juro Bystricky <juro.bystricky@intel.com>
> > +Date: Mon, 19 Mar 2018 22:31:20 -0700
> > +Subject: [PATCH] fix segmentation fault in precompiled header generation
> > +
> > +Prevent a segmentation fault which occurs when using incorrect
> > +structure trying to access name of some named operators, such as
> > +CPP_NOT, CPP_AND etc. "token->val.node.spelling" cannot be used in
> > +those cases, as is may not be initialized at all.
> > +
> > +[YOCTO #11738]
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + libcpp/lex.c | 26 +++++++++++++++++++++-----
> > + 1 file changed, 21 insertions(+), 5 deletions(-)
> > +
> > +diff --git a/libcpp/lex.c b/libcpp/lex.c
> > +index 56ac3a1dd73..73a951148b3 100644
> > +--- a/libcpp/lex.c
> > ++++ b/libcpp/lex.c
> > +@@ -3311,11 +3311,27 @@ cpp_spell_token (cpp_reader *pfile, const cpp_token *token,
> > +     spell_ident:
> > +     case SPELL_IDENT:
> > +       if (forstring)
> > +-      {
> > +-        memcpy (buffer, NODE_NAME (token->val.node.spelling),
> > +-                NODE_LEN (token->val.node.spelling));
> > +-        buffer += NODE_LEN (token->val.node.spelling);
> > +-      }
> > ++        {
> > ++          if (token->type == CPP_NAME)
> > ++            {
> > ++              memcpy (buffer, NODE_NAME (token->val.node.spelling),
> > ++                    NODE_LEN (token->val.node.spelling));
> > ++              buffer += NODE_LEN (token->val.node.spelling);
> > ++              break;
> > ++            }
> > ++          /* NAMED_OP, cannot use node.spelling */
> > ++          if (token->flags & NAMED_OP)
> > ++            {
> > ++              const char *str = cpp_named_operator2name (token->type);
> > ++              if (str)
> > ++                {
> > ++                  size_t len = strlen(str);
> > ++                  memcpy(buffer, str, len);
> > ++                  buffer += len;
> > ++                }
> > ++              break;
> > ++            }
> > ++        }
> > +       else
> > +       buffer = _cpp_spell_ident_ucns (buffer, token->val.node.node);
> > +       break;
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
> > new file mode 100644
> > index 0000000..0a0767b
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
> > @@ -0,0 +1,255 @@
> > +From 2512aacf023c679d86d8f40caff4f6ff412b32ff Mon Sep 17 00:00:00 2001
> > +From: RAGHUNATH LOLUR <raghunath.lolur@kpit.com>
> > +Date: Wed, 6 Dec 2017 22:52:26 -0800
> > +Subject: [PATCH] Fix for testsuite failure
> > +
> > +2017-11-16  Raghunath Lolur  <raghunath.lolur@kpit.com>
> > +
> > +       * gcc.dg/pr56275.c: If SSE is disabled, ensure that
> > +       "-mfpmath" is not set to use SSE. Set "-mfpmath=387".
> > +       * gcc.dg/pr68306.c: Likewise
> > +       * gcc.dg/pr68306-2.c: Likewise
> > +       * gcc.dg/pr68306-3.c: Likewise
> > +       * gcc.dg/pr69634.c: Likewise
> > +       * gcc.target/i386/amd64-abi-1.c: Likewise
> > +       * gcc.target/i386/funcspec-6.c: Likewise
> > +       * gcc.target/i386/interrupt-387-err-1.c: Likewise
> > +       * gcc.target/i386/isa-14.c: Likewise
> > +       * gcc.target/i386/pr44948-2b.c: Likewise
> > +       * gcc.target/i386/pr53425-1.c: Likewise
> > +       * gcc.target/i386/pr53425-2.c: Likewise
> > +       * gcc.target/i386/pr55247.c: Likewise
> > +       * gcc.target/i386/pr59644.c: Likewise
> > +       * gcc.target/i386/pr62120.c: Likewise
> > +       * gcc.target/i386/pr70467-1.c: Likewise
> > +       * gcc.target/i386/warn-vect-op-1.c: Likewise
> > +
> > +If -Wall, -Werror are used during compilation various test cases fail
> > +to compile.
> > +
> > +If SSE is disabled, be sure to -mfpmath=387 to resolve this.
> > +
> > +This patch removes the changes to Changelog from the original patch.
> > +This will help us avoid conflicts.
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> > +---
> > + gcc/testsuite/gcc.dg/pr56275.c                      | 2 +-
> > + gcc/testsuite/gcc.dg/pr68306-2.c                    | 2 +-
> > + gcc/testsuite/gcc.dg/pr68306-3.c                    | 2 +-
> > + gcc/testsuite/gcc.dg/pr68306.c                      | 2 +-
> > + gcc/testsuite/gcc.dg/pr69634.c                      | 2 +-
> > + gcc/testsuite/gcc.target/i386/amd64-abi-1.c         | 2 +-
> > + gcc/testsuite/gcc.target/i386/funcspec-6.c          | 1 +
> > + gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | 2 +-
> > + gcc/testsuite/gcc.target/i386/isa-14.c              | 2 +-
> > + gcc/testsuite/gcc.target/i386/pr44948-2b.c          | 2 +-
> > + gcc/testsuite/gcc.target/i386/pr53425-1.c           | 2 +-
> > + gcc/testsuite/gcc.target/i386/pr53425-2.c           | 2 +-
> > + gcc/testsuite/gcc.target/i386/pr55247.c             | 2 +-
> > + gcc/testsuite/gcc.target/i386/pr59644.c             | 2 +-
> > + gcc/testsuite/gcc.target/i386/pr62120.c             | 2 +-
> > + gcc/testsuite/gcc.target/i386/pr70467-1.c           | 2 +-
> > + gcc/testsuite/gcc.target/i386/warn-vect-op-1.c      | 2 +-
> > + 17 files changed, 17 insertions(+), 16 deletions(-)
> > +
> > +diff --git a/gcc/testsuite/gcc.dg/pr56275.c b/gcc/testsuite/gcc.dg/pr56275.c
> > +index b901bb2b199..a4f6c95e1a1 100644
> > +--- a/gcc/testsuite/gcc.dg/pr56275.c
> > ++++ b/gcc/testsuite/gcc.dg/pr56275.c
> > +@@ -1,6 +1,6 @@
> > + /* { dg-do compile } */
> > + /* { dg-options "-O2" } */
> > +-/* { dg-additional-options "-mno-sse" { target { i?86-*-* x86_64-*-* } } } */
> > ++/* { dg-additional-options "-mno-sse -mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */
> > +
> > + typedef long long v2tw __attribute__ ((vector_size (2 * sizeof (long long))));
> > +
> > +diff --git a/gcc/testsuite/gcc.dg/pr68306-2.c b/gcc/testsuite/gcc.dg/pr68306-2.c
> > +index 4672ebe7987..2a368c484b6 100644
> > +--- a/gcc/testsuite/gcc.dg/pr68306-2.c
> > ++++ b/gcc/testsuite/gcc.dg/pr68306-2.c
> > +@@ -1,6 +1,6 @@
> > + /* { dg-do compile } */
> > + /* { dg-options "-O3" } */
> > +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> > ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> > +
> > + struct {
> > +     int tz_minuteswest;
> > +diff --git a/gcc/testsuite/gcc.dg/pr68306-3.c b/gcc/testsuite/gcc.dg/pr68306-3.c
> > +index f5a8c102cf8..df3390c64c2 100644
> > +--- a/gcc/testsuite/gcc.dg/pr68306-3.c
> > ++++ b/gcc/testsuite/gcc.dg/pr68306-3.c
> > +@@ -1,6 +1,6 @@
> > + /* { dg-do compile } */
> > + /* { dg-options "-O3" } */
> > +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> > ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> > + /* { dg-additional-options "-mno-altivec -mno-vsx" { target powerpc*-*-* } } */
> > +
> > + extern void fn2();
> > +diff --git a/gcc/testsuite/gcc.dg/pr68306.c b/gcc/testsuite/gcc.dg/pr68306.c
> > +index 54e5b40f221..0813389e2c1 100644
> > +--- a/gcc/testsuite/gcc.dg/pr68306.c
> > ++++ b/gcc/testsuite/gcc.dg/pr68306.c
> > +@@ -1,6 +1,6 @@
> > + /* { dg-do compile } */
> > + /* { dg-options "-O3" } */
> > +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> > ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> > +
> > + enum powerpc_pmc_type { PPC_PMC_IBM };
> > + struct {
> > +diff --git a/gcc/testsuite/gcc.dg/pr69634.c b/gcc/testsuite/gcc.dg/pr69634.c
> > +index 60a56149463..bcc23f9ccd6 100644
> > +--- a/gcc/testsuite/gcc.dg/pr69634.c
> > ++++ b/gcc/testsuite/gcc.dg/pr69634.c
> > +@@ -1,6 +1,6 @@
> > + /* { dg-do compile } */
> > + /* { dg-options "-O2 -fno-dce -fschedule-insns -fno-tree-vrp -fcompare-debug -Wno-psabi" } */
> > +-/* { dg-additional-options "-mno-sse" { target i?86-*-* x86_64-*-* } } */
> > ++/* { dg-additional-options "-mno-sse -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> > + /* { dg-require-effective-target scheduling } */
> > +
> > + typedef unsigned short u16;
> > +diff --git a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> > +index 69fde57bf06..7f1f1c03edf 100644
> > +--- a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> > ++++ b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> > +@@ -1,5 +1,5 @@
> > + /* { dg-do compile { target { ! ia32 } } } */
> > +-/* { dg-options "-mno-sse" } */
> > ++/* { dg-options "-mno-sse -mfpmath=387" } */
> > + /* { dg-additional-options "-mabi=sysv" { target *-*-mingw* } } */
> > +
> > + double foo(void) { return 0; }        /* { dg-error "SSE disabled" } */
> > +diff --git a/gcc/testsuite/gcc.target/i386/funcspec-6.c b/gcc/testsuite/gcc.target/i386/funcspec-6.c
> > +index ea896b7ebfd..bf15569b826 100644
> > +--- a/gcc/testsuite/gcc.target/i386/funcspec-6.c
> > ++++ b/gcc/testsuite/gcc.target/i386/funcspec-6.c
> > +@@ -1,6 +1,7 @@
> > + /* Test whether all of the 64-bit function specific options are accepted
> > +    without error.  */
> > + /* { dg-do compile { target { ! ia32 } } } */
> > ++/* { dg-additional-options "-mfpmath=387" } */
> > +
> > + #include "funcspec-56.inc"
> > +
> > +diff --git a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> > +index 8561a3c26d6..6377f814645 100644
> > +--- a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> > ++++ b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> > +@@ -1,5 +1,5 @@
> > + /* { dg-do compile } */
> > +-/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387" } */
> > ++/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387 -mfpmath=387" } */
> > +
> > + typedef unsigned int uword_t __attribute__ ((mode (__word__)));
> > +
> > +diff --git a/gcc/testsuite/gcc.target/i386/isa-14.c b/gcc/testsuite/gcc.target/i386/isa-14.c
> > +index 5d49e6e77fe..1de2db92bdd 100644
> > +--- a/gcc/testsuite/gcc.target/i386/isa-14.c
> > ++++ b/gcc/testsuite/gcc.target/i386/isa-14.c
> > +@@ -1,5 +1,5 @@
> > + /* { dg-do run } */
> > +-/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse" } */
> > ++/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse -mfpmath=387" } */
> > +
> > + extern void abort (void);
> > +
> > +diff --git a/gcc/testsuite/gcc.target/i386/pr44948-2b.c b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> > +index fa1769b62fb..f79fb12726f 100644
> > +--- a/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> > ++++ b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> > +@@ -1,5 +1,5 @@
> > + /* { dg-do compile } */
> > +-/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic" } */
> > ++/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic -mfpmath=387" } */
> > +
> > + struct A
> > + {
> > +diff --git a/gcc/testsuite/gcc.target/i386/pr53425-1.c b/gcc/testsuite/gcc.target/i386/pr53425-1.c
> > +index 2e89ff7d81d..6339bf6b736 100644
> > +--- a/gcc/testsuite/gcc.target/i386/pr53425-1.c
> > ++++ b/gcc/testsuite/gcc.target/i386/pr53425-1.c
> > +@@ -1,6 +1,6 @@
> > + /* PR target/53425 */
> > + /* { dg-do compile { target { ! ia32 } } } */
> > +-/* { dg-options "-O2 -mno-sse" } */
> > ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> > + /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
> > +
> > + typedef double __v2df __attribute__ ((__vector_size__ (16)));
> > +diff --git a/gcc/testsuite/gcc.target/i386/pr53425-2.c b/gcc/testsuite/gcc.target/i386/pr53425-2.c
> > +index 61f6283dbe9..2c5a55f0ac3 100644
> > +--- a/gcc/testsuite/gcc.target/i386/pr53425-2.c
> > ++++ b/gcc/testsuite/gcc.target/i386/pr53425-2.c
> > +@@ -1,6 +1,6 @@
> > + /* PR target/53425 */
> > + /* { dg-do compile { target { ! ia32 } } } */
> > +-/* { dg-options "-O2 -mno-sse" } */
> > ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> > + /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
> > +
> > + typedef float __v2sf __attribute__ ((__vector_size__ (8)));
> > +diff --git a/gcc/testsuite/gcc.target/i386/pr55247.c b/gcc/testsuite/gcc.target/i386/pr55247.c
> > +index 23366d0909d..9810e3abb76 100644
> > +--- a/gcc/testsuite/gcc.target/i386/pr55247.c
> > ++++ b/gcc/testsuite/gcc.target/i386/pr55247.c
> > +@@ -1,6 +1,6 @@
> > + /* { dg-do compile { target { ! ia32 } } } */
> > + /* { dg-require-effective-target maybe_x32 } */
> > +-/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long" } */
> > ++/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long -mfpmath=387" } */
> > +
> > + typedef unsigned int uint32_t;
> > + typedef uint32_t Elf32_Word;
> > +diff --git a/gcc/testsuite/gcc.target/i386/pr59644.c b/gcc/testsuite/gcc.target/i386/pr59644.c
> > +index 96006b3e338..4287e4538bf 100644
> > +--- a/gcc/testsuite/gcc.target/i386/pr59644.c
> > ++++ b/gcc/testsuite/gcc.target/i386/pr59644.c
> > +@@ -1,6 +1,6 @@
> > + /* PR target/59644 */
> > + /* { dg-do run { target lp64 } } */
> > +-/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone" } */
> > ++/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone -mfpmath=387" } */
> > +
> > + /* This test uses __builtin_trap () instead of e.g. abort,
> > +    because due to -mpreferred-stack-boundary=3 it should not call
> > +diff --git a/gcc/testsuite/gcc.target/i386/pr62120.c b/gcc/testsuite/gcc.target/i386/pr62120.c
> > +index 28d85d37712..c93266bd4bc 100644
> > +--- a/gcc/testsuite/gcc.target/i386/pr62120.c
> > ++++ b/gcc/testsuite/gcc.target/i386/pr62120.c
> > +@@ -1,5 +1,5 @@
> > + /* { dg-do compile } */
> > +-/* { dg-options "-mno-sse" } */
> > ++/* { dg-options "-mno-sse -mfpmath=387" } */
> > +
> > + void foo ()
> > + {
> > +diff --git a/gcc/testsuite/gcc.target/i386/pr70467-1.c b/gcc/testsuite/gcc.target/i386/pr70467-1.c
> > +index 4e112c88d07..bcfb396a68d 100644
> > +--- a/gcc/testsuite/gcc.target/i386/pr70467-1.c
> > ++++ b/gcc/testsuite/gcc.target/i386/pr70467-1.c
> > +@@ -1,6 +1,6 @@
> > + /* PR rtl-optimization/70467 */
> > + /* { dg-do compile } */
> > +-/* { dg-options "-O2 -mno-sse" } */
> > ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> > +
> > + void foo (unsigned long long *);
> > +
> > +diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> > +index 6cda1534311..26e37f5b8ba 100644
> > +--- a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> > ++++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> > +@@ -1,5 +1,5 @@
> > + /* { dg-do compile { target { ! ia32 } } }  */
> > +-/* { dg-options "-mno-sse -Wvector-operation-performance" }  */
> > ++/* { dg-options "-mno-sse -Wvector-operation-performance -mfpmath=387" }  */
> > + #define vector(elcount, type)  \
> > + __attribute__((vector_size((elcount)*sizeof(type)))) type
> > +
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
> > new file mode 100644
> > index 0000000..ba7c2b8
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
> > @@ -0,0 +1,38 @@
> > +From 3fc06241ce37e2e4b3ed21ace28d347eb511448d Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Wed, 6 Jun 2018 12:10:22 -0700
> > +Subject: [PATCH] Re-introduce spe commandline options
> > +
> > +This should ensure that we keep accepting
> > +spe options
> > +
> > +Upstream-Status: Inappropriate [SPE port is removed from rs600 port]
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/config/rs6000/rs6000.opt | 12 ++++++++++++
> > + 1 file changed, 12 insertions(+)
> > +
> > +diff --git a/gcc/config/rs6000/rs6000.opt b/gcc/config/rs6000/rs6000.opt
> > +index f95b8279270..0e52d51409d 100644
> > +--- a/gcc/config/rs6000/rs6000.opt
> > ++++ b/gcc/config/rs6000/rs6000.opt
> > +@@ -344,6 +344,18 @@ mdebug=
> > + Target RejectNegative Joined
> > + -mdebug=      Enable debug output.
> > +
> > ++mspe
> > ++Target Var(rs6000_spe) Save
> > ++Generate SPE SIMD instructions on E500.
> > ++
> > ++mabi=spe
> > ++Target RejectNegative Var(rs6000_spe_abi) Save
> > ++Use the SPE ABI extensions.
> > ++
> > ++mabi=no-spe
> > ++Target RejectNegative Var(rs6000_spe_abi, 0)
> > ++Do not use the SPE ABI extensions.
> > ++
> > + mabi=altivec
> > + Target RejectNegative Var(rs6000_altivec_abi) Save
> > + Use the AltiVec ABI extensions.
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
> > new file mode 100644
> > index 0000000..4ce9dc6
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
> > @@ -0,0 +1,83 @@
> > +From b42ff59c3fe2967d37815c8db72a47b9b7f585b4 Mon Sep 17 00:00:00 2001
> > +From: Szabolcs Nagy <nsz@port70.net>
> > +Date: Sat, 24 Oct 2015 20:09:53 +0000
> > +Subject: [PATCH] libgcc_s: Use alias for __cpu_indicator_init instead of
> > + symver
> > +
> > +Adapter from
> > +
> > +https://gcc.gnu.org/ml/gcc-patches/2015-05/msg00899.html
> > +
> > +This fix was debated but hasnt been applied gcc upstream since
> > +they expect musl to support '@' in symbol versioning which is
> > +a sun/gnu versioning extention. This patch however avoids the
> > +need for the '@' symbols at all
> > +
> > +libgcc/Changelog:
> > +
> > +2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
> > +
> > +       * config/i386/cpuinfo.c (__cpu_indicator_init_local): Add.
> > +       (__cpu_indicator_init@GCC_4.8.0, __cpu_model@GCC_4.8.0): Remove.
> > +
> > +       * config/i386/t-linux (HOST_LIBGCC2_CFLAGS): Remove -DUSE_ELF_SYMVER.
> > +
> > +gcc/Changelog:
> > +
> > +2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
> > +
> > +       * config/i386/i386-expand.c (ix86_expand_builtin): Make __builtin_cpu_init
> > +       call __cpu_indicator_init_local instead of __cpu_indicator_init.
> > +
> > +Upstream-Status: Pending
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/config/i386/i386-expand.c | 4 ++--
> > + libgcc/config/i386/cpuinfo.c  | 6 +++---
> > + libgcc/config/i386/t-linux    | 2 +-
> > + 3 files changed, 6 insertions(+), 6 deletions(-)
> > +
> > +diff --git a/gcc/config/i386/i386-expand.c b/gcc/config/i386/i386-expand.c
> > +index 48f00c5fcfc..468f5f71fac 100644
> > +--- a/gcc/config/i386/i386-expand.c
> > ++++ b/gcc/config/i386/i386-expand.c
> > +@@ -10941,10 +10941,10 @@ ix86_expand_builtin (tree exp, rtx target, rtx subtarget,
> > +     {
> > +     case IX86_BUILTIN_CPU_INIT:
> > +       {
> > +-      /* Make it call __cpu_indicator_init in libgcc. */
> > ++      /* Make it call __cpu_indicator_init_local in libgcc.a. */
> > +       tree call_expr, fndecl, type;
> > +         type = build_function_type_list (integer_type_node, NULL_TREE);
> > +-      fndecl = build_fn_decl ("__cpu_indicator_init", type);
> > ++      fndecl = build_fn_decl ("__cpu_indicator_init_local", type);
> > +       call_expr = build_call_expr (fndecl, 0);
> > +       return expand_expr (call_expr, target, mode, EXPAND_NORMAL);
> > +       }
> > +diff --git a/libgcc/config/i386/cpuinfo.c b/libgcc/config/i386/cpuinfo.c
> > +index 00322c58622..f42bbb8af98 100644
> > +--- a/libgcc/config/i386/cpuinfo.c
> > ++++ b/libgcc/config/i386/cpuinfo.c
> > +@@ -508,7 +508,7 @@ __cpu_indicator_init (void)
> > +   return 0;
> > + }
> > +
> > +-#if defined SHARED && defined USE_ELF_SYMVER
> > +-__asm__ (".symver __cpu_indicator_init, __cpu_indicator_init@GCC_4.8.0");
> > +-__asm__ (".symver __cpu_model, __cpu_model@GCC_4.8.0");
> > ++#ifndef SHARED
> > ++int __cpu_indicator_init_local (void)
> > ++  __attribute__ ((weak, alias ("__cpu_indicator_init")));
> > + #endif
> > +diff --git a/libgcc/config/i386/t-linux b/libgcc/config/i386/t-linux
> > +index 8506a635790..564296f788e 100644
> > +--- a/libgcc/config/i386/t-linux
> > ++++ b/libgcc/config/i386/t-linux
> > +@@ -3,5 +3,5 @@
> > + # t-slibgcc-elf-ver and t-linux
> > + SHLIB_MAPFILES = libgcc-std.ver $(srcdir)/config/i386/libgcc-glibc.ver
> > +
> > +-HOST_LIBGCC2_CFLAGS += -mlong-double-80 -DUSE_ELF_SYMVER $(CET_FLAGS)
> > ++HOST_LIBGCC2_CFLAGS += -mlong-double-80 $(CET_FLAGS)
> > + CRTSTUFF_T_CFLAGS += $(CET_FLAGS)
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
> > new file mode 100644
> > index 0000000..dd1bf6d
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
> > @@ -0,0 +1,182 @@
> > +From 0395060a7dcf98c5f5a65103f6aaa71d6b862259 Mon Sep 17 00:00:00 2001
> > +From: Richard Purdie <richard.purdie@linuxfoundation.org>
> > +Date: Tue, 10 Mar 2020 08:26:53 -0700
> > +Subject: [PATCH] gentypes/genmodes: Do not use __LINE__ for maintaining
> > + reproducibility
> > +
> > +Inserting line numbers into generated code means its not always reproducible wth
> > +differing versions of host gcc. Void the issue by not adding these.
> > +
> > +Upstream-Status: Inappropriate [OE Reproducibility specific]
> > +
> > +Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + gcc/gengtype.c |  6 +++---
> > + gcc/genmodes.c | 32 ++++++++++++++++----------------
> > + 2 files changed, 19 insertions(+), 19 deletions(-)
> > +
> > +diff --git a/gcc/gengtype.c b/gcc/gengtype.c
> > +index 981577481af..d5700fff401 100644
> > +--- a/gcc/gengtype.c
> > ++++ b/gcc/gengtype.c
> > +@@ -991,7 +991,7 @@ create_field_at (pair_p next, type_p type, const char *name, options_p opt,
> > + /* Create a fake field with the given type and name.  NEXT is the next
> > +    field in the chain.  */
> > + #define create_field(next,type,name) \
> > +-    create_field_all (next,type,name, 0, this_file, __LINE__)
> > ++    create_field_all (next,type,name, 0, this_file, 0)
> > +
> > + /* Like create_field, but the field is only valid when condition COND
> > +    is true.  */
> > +@@ -1024,7 +1024,7 @@ create_optional_field_ (pair_p next, type_p type, const char *name,
> > + }
> > +
> > + #define create_optional_field(next,type,name,cond)    \
> > +-       create_optional_field_(next,type,name,cond,__LINE__)
> > ++       create_optional_field_(next,type,name,cond,0)
> > +
> > + /* Reverse a linked list of 'struct pair's in place.  */
> > + pair_p
> > +@@ -5187,7 +5187,7 @@ main (int argc, char **argv)
> > +       /* These types are set up with #define or else outside of where
> > +          we can see them.  We should initialize them before calling
> > +          read_input_list.  */
> > +-#define POS_HERE(Call) do { pos.file = this_file; pos.line = __LINE__; \
> > ++#define POS_HERE(Call) do { pos.file = this_file; pos.line = 0; \
> > +       Call;} while (0)
> > +       POS_HERE (do_scalar_typedef ("CUMULATIVE_ARGS", &pos));
> > +       POS_HERE (do_scalar_typedef ("REAL_VALUE_TYPE", &pos));
> > +diff --git a/gcc/genmodes.c b/gcc/genmodes.c
> > +index bd78310ea24..dbd02c51a4c 100644
> > +--- a/gcc/genmodes.c
> > ++++ b/gcc/genmodes.c
> > +@@ -430,7 +430,7 @@ complete_all_modes (void)
> > + }
> > +
> > + /* For each mode in class CLASS, construct a corresponding complex mode.  */
> > +-#define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, __LINE__)
> > ++#define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, 0)
> > + static void
> > + make_complex_modes (enum mode_class cl,
> > +                   const char *file, unsigned int line)
> > +@@ -489,7 +489,7 @@ make_complex_modes (enum mode_class cl,
> > +    having as many components as necessary.  ORDER is the sorting order
> > +    of the mode, with smaller numbers indicating a higher priority.  */
> > + #define VECTOR_MODES_WITH_PREFIX(PREFIX, C, W, ORDER) \
> > +-  make_vector_modes (MODE_##C, #PREFIX, W, ORDER, __FILE__, __LINE__)
> > ++  make_vector_modes (MODE_##C, #PREFIX, W, ORDER, __FILE__, 0)
> > + #define VECTOR_MODES(C, W) VECTOR_MODES_WITH_PREFIX (V, C, W, 0)
> > + static void ATTRIBUTE_UNUSED
> > + make_vector_modes (enum mode_class cl, const char *prefix, unsigned int width,
> > +@@ -541,7 +541,7 @@ make_vector_modes (enum mode_class cl, const char *prefix, unsigned int width,
> > + /* Create a vector of booleans called NAME with COUNT elements and
> > +    BYTESIZE bytes in total.  */
> > + #define VECTOR_BOOL_MODE(NAME, COUNT, BYTESIZE) \
> > +-  make_vector_bool_mode (#NAME, COUNT, BYTESIZE, __FILE__, __LINE__)
> > ++  make_vector_bool_mode (#NAME, COUNT, BYTESIZE, __FILE__, 0)
> > + static void ATTRIBUTE_UNUSED
> > + make_vector_bool_mode (const char *name, unsigned int count,
> > +                      unsigned int bytesize, const char *file,
> > +@@ -563,7 +563,7 @@ make_vector_bool_mode (const char *name, unsigned int count,
> > + /* Input.  */
> > +
> > + #define _SPECIAL_MODE(C, N) \
> > +-  make_special_mode (MODE_##C, #N, __FILE__, __LINE__)
> > ++  make_special_mode (MODE_##C, #N, __FILE__, 0)
> > + #define RANDOM_MODE(N) _SPECIAL_MODE (RANDOM, N)
> > + #define CC_MODE(N) _SPECIAL_MODE (CC, N)
> > +
> > +@@ -576,7 +576,7 @@ make_special_mode (enum mode_class cl, const char *name,
> > +
> > + #define INT_MODE(N, Y) FRACTIONAL_INT_MODE (N, -1U, Y)
> > + #define FRACTIONAL_INT_MODE(N, B, Y) \
> > +-  make_int_mode (#N, B, Y, __FILE__, __LINE__)
> > ++  make_int_mode (#N, B, Y, __FILE__, 0)
> > +
> > + static void
> > + make_int_mode (const char *name,
> > +@@ -589,16 +589,16 @@ make_int_mode (const char *name,
> > + }
> > +
> > + #define FRACT_MODE(N, Y, F) \
> > +-      make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, __LINE__)
> > ++      make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, 0)
> > +
> > + #define UFRACT_MODE(N, Y, F) \
> > +-      make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, __LINE__)
> > ++      make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, 0)
> > +
> > + #define ACCUM_MODE(N, Y, I, F) \
> > +-      make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, __LINE__)
> > ++      make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, 0)
> > +
> > + #define UACCUM_MODE(N, Y, I, F) \
> > +-      make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, __LINE__)
> > ++      make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, 0)
> > +
> > + /* Create a fixed-point mode by setting CL, NAME, BYTESIZE, IBIT, FBIT,
> > +    FILE, and LINE.  */
> > +@@ -619,7 +619,7 @@ make_fixed_point_mode (enum mode_class cl,
> > +
> > + #define FLOAT_MODE(N, Y, F)             FRACTIONAL_FLOAT_MODE (N, -1U, Y, F)
> > + #define FRACTIONAL_FLOAT_MODE(N, B, Y, F) \
> > +-  make_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
> > ++  make_float_mode (#N, B, Y, #F, __FILE__, 0)
> > +
> > + static void
> > + make_float_mode (const char *name,
> > +@@ -636,7 +636,7 @@ make_float_mode (const char *name,
> > + #define DECIMAL_FLOAT_MODE(N, Y, F)   \
> > +       FRACTIONAL_DECIMAL_FLOAT_MODE (N, -1U, Y, F)
> > + #define FRACTIONAL_DECIMAL_FLOAT_MODE(N, B, Y, F)     \
> > +-  make_decimal_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
> > ++  make_decimal_float_mode (#N, B, Y, #F, __FILE__, 0)
> > +
> > + static void
> > + make_decimal_float_mode (const char *name,
> > +@@ -651,7 +651,7 @@ make_decimal_float_mode (const char *name,
> > + }
> > +
> > + #define RESET_FLOAT_FORMAT(N, F) \
> > +-  reset_float_format (#N, #F, __FILE__, __LINE__)
> > ++  reset_float_format (#N, #F, __FILE__, 0)
> > + static void ATTRIBUTE_UNUSED
> > + reset_float_format (const char *name, const char *format,
> > +                   const char *file, unsigned int line)
> > +@@ -672,7 +672,7 @@ reset_float_format (const char *name, const char *format,
> > +
> > + /* __intN support.  */
> > + #define INT_N(M,PREC)                         \
> > +-  make_int_n (#M, PREC, __FILE__, __LINE__)
> > ++  make_int_n (#M, PREC, __FILE__, 0)
> > + static void ATTRIBUTE_UNUSED
> > + make_int_n (const char *m, int bitsize,
> > +             const char *file, unsigned int line)
> > +@@ -701,7 +701,7 @@ make_int_n (const char *m, int bitsize,
> > + /* Partial integer modes are specified by relation to a full integer
> > +    mode.  */
> > + #define PARTIAL_INT_MODE(M,PREC,NAME)                         \
> > +-  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, __LINE__)
> > ++  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, 0)
> > + static void ATTRIBUTE_UNUSED
> > + make_partial_integer_mode (const char *base, const char *name,
> > +                          unsigned int precision,
> > +@@ -728,7 +728,7 @@ make_partial_integer_mode (const char *base, const char *name,
> > + /* A single vector mode can be specified by naming its component
> > +    mode and the number of components.  */
> > + #define VECTOR_MODE(C, M, N) \
> > +-  make_vector_mode (MODE_##C, #M, N, __FILE__, __LINE__);
> > ++  make_vector_mode (MODE_##C, #M, N, __FILE__, 0);
> > + static void ATTRIBUTE_UNUSED
> > + make_vector_mode (enum mode_class bclass,
> > +                 const char *base,
> > +@@ -771,7 +771,7 @@ make_vector_mode (enum mode_class bclass,
> > +
> > + /* Adjustability.  */
> > + #define _ADD_ADJUST(A, M, X, C1, C2) \
> > +-  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, __LINE__)
> > ++  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, 0)
> > +
> > + #define ADJUST_NUNITS(M, X)    _ADD_ADJUST (nunits, M, X, RANDOM, RANDOM)
> > + #define ADJUST_BYTESIZE(M, X)  _ADD_ADJUST (bytesize, M, X, RANDOM, RANDOM)
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
> > new file mode 100644
> > index 0000000..de82a3a
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
> > @@ -0,0 +1,26 @@
> > +From 6f87a095f0e696bec07a50df789c9db8bdbca43d Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Tue, 12 May 2020 10:39:09 -0700
> > +Subject: [PATCH] mingw32: Enable operation_not_supported
> > +
> > +Fixes nativesdk build errors on mingw32 gcc-runtime
> > +
> > +Upstream-Status: Pending
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + libstdc++-v3/config/os/mingw32/error_constants.h | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/libstdc++-v3/config/os/mingw32/error_constants.h b/libstdc++-v3/config/os/mingw32/error_constants.h
> > +index 68ac72a78fb..71cd5815b81 100644
> > +--- a/libstdc++-v3/config/os/mingw32/error_constants.h
> > ++++ b/libstdc++-v3/config/os/mingw32/error_constants.h
> > +@@ -107,7 +107,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
> > + #ifdef _GLIBCXX_HAVE_EPERM
> > +       operation_not_permitted =               EPERM,
> > + #endif
> > +-//    operation_not_supported =               EOPNOTSUPP,
> > ++      operation_not_supported =               EOPNOTSUPP,
> > + #ifdef _GLIBCXX_HAVE_EWOULDBLOCK
> > +       operation_would_block =                         EWOULDBLOCK,
> > + #endif
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
> > new file mode 100644
> > index 0000000..3946ace
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
> > @@ -0,0 +1,42 @@
> > +From 38d262bfe7c0c894c364dc6e4dc7971e78a73974 Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Wed, 13 May 2020 15:10:38 -0700
> > +Subject: [PATCH] libatomic: Do not enforce march on aarch64
> > +
> > +OE passes the right options via gcc compiler cmdline via TUNE_CCARGS
> > +this can conflict between -mcpu settings and -march setting here, since
> > +-mcpu will translate into an appropriate -march, lets depend on that
> > +instead of setting it explicitly
> > +
> > +Upstream-Status: Inappropriate [OE-Specific]
> > +
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + libatomic/Makefile.am | 1 -
> > + libatomic/Makefile.in | 1 -
> > + 2 files changed, 2 deletions(-)
> > +
> > +diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
> > +index 133fbbca77e..ac1ca645876 100644
> > +--- a/libatomic/Makefile.am
> > ++++ b/libatomic/Makefile.am
> > +@@ -125,7 +125,6 @@ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix _$(s)_.lo,$(SIZEOBJS)))
> > + ## On a target-specific basis, include alternates to be selected by IFUNC.
> > + if HAVE_IFUNC
> > + if ARCH_AARCH64_LINUX
> > +-IFUNC_OPTIONS      = -march=armv8-a+lse
> > + libatomic_la_LIBADD += $(foreach s,$(SIZES),$(addsuffix _$(s)_1_.lo,$(SIZEOBJS)))
> > + endif
> > + if ARCH_ARM_LINUX
> > +diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
> > +index a51807e95c9..97df2d7ff03 100644
> > +--- a/libatomic/Makefile.in
> > ++++ b/libatomic/Makefile.in
> > +@@ -431,7 +431,6 @@ M_SRC = $(firstword $(filter %/$(M_FILE), $(all_c_files)))
> > + libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix \
> > +       _$(s)_.lo,$(SIZEOBJS))) $(am__append_1) $(am__append_2) \
> > +       $(am__append_3) $(am__append_4)
> > +-@ARCH_AARCH64_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv8-a+lse
> > + @ARCH_ARM_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv7-a+fp -DHAVE_KERNEL64
> > + @ARCH_I386_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=i586
> > + @ARCH_X86_64_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -mcx16
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
> > new file mode 100644
> > index 0000000..8987a4c
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
> > @@ -0,0 +1,5 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/gcc-cross-canadian.inc
> > +
> > +
> > +
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
> > new file mode 100644
> > index 0000000..0a8aa75
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
> > @@ -0,0 +1,3 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/gcc-cross.inc
> > +
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
> > new file mode 100644
> > index 0000000..0a9f98a
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
> > @@ -0,0 +1,2 @@
> > +require recipes-devtools/gcc/gcc-cross_${PV}.bb
> > +require recipes-devtools/gcc/gcc-crosssdk.inc
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
> > new file mode 100644
> > index 0000000..b755f55
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
> > @@ -0,0 +1,2 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/gcc-runtime.inc
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
> > new file mode 100644
> > index 0000000..9c41e92
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
> > @@ -0,0 +1,7 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/gcc-sanitizers.inc
> > +
> > +# Building with thumb enabled on armv4t armv5t fails with
> > +# sanitizer_linux.s:5749: Error: lo register required -- `ldr ip,[sp],#8'
> > +ARM_INSTRUCTION_SET_armv4 = "arm"
> > +ARM_INSTRUCTION_SET_armv5 = "arm"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
> > new file mode 100644
> > index 0000000..b890fa3
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
> > @@ -0,0 +1,4 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/gcc-source.inc
> > +
> > +EXCLUDE_FROM_WORLD = "1"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
> > new file mode 100644
> > index 0000000..51a0877
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
> > @@ -0,0 +1,15 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/gcc-target.inc
> > +require recipes-devtools/gcc/gcc-arm-common.inc
> > +
> > +# Building with thumb enabled on armv4t armv5t fails with
> > +# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7438:(.text.unlikely+0x2fa): relocation truncated to fit: R_ARM_THM_CALL against symbol `fancy_abort(char const*, int, char const*)' defined in .glue_7 section in linker stubs
> > +# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7442:(.text.unlikely+0x318): additional relocation overflows omitted from the output
> > +ARM_INSTRUCTION_SET_armv4 = "arm"
> > +ARM_INSTRUCTION_SET_armv5 = "arm"
> > +
> > +ARMFPARCHEXT_armv6 = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> > +ARMFPARCHEXT_armv7a = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> > +ARMFPARCHEXT_armv7ve = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> > +
> > +BBCLASSEXTEND = "nativesdk"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
> > new file mode 100644
> > index 0000000..32f3dc0
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
> > @@ -0,0 +1,5 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/libgcc-initial.inc
> > +
> > +# Building with thumb enabled on armv6t fails
> > +ARM_INSTRUCTION_SET_armv6 = "arm"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
> > new file mode 100644
> > index 0000000..572bab1
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
> > @@ -0,0 +1,5 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/libgcc.inc
> > +
> > +# Building with thumb enabled on armv6t fails
> > +ARM_INSTRUCTION_SET_armv6 = "arm"
> > diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
> > new file mode 100644
> > index 0000000..4e5688e
> > --- /dev/null
> > +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
> > @@ -0,0 +1,3 @@
> > +require recipes-devtools/gcc/gcc-${PV}.inc
> > +require recipes-devtools/gcc/libgfortran.inc
> > +
> > --
> > 2.17.1
> >
> >
> > 
> >

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11
  2021-01-06 12:22 [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11 Sumit Garg
  2021-01-06 12:22 ` [meta-arm][PATCH 2/2] arm-toolchain: Drop support for GCC 8.x toolchain Sumit Garg
  2021-01-06 23:19 ` [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11 Ross Burton
@ 2021-01-08 14:47 ` Jon Mason
  2 siblings, 0 replies; 5+ messages in thread
From: Jon Mason @ 2021-01-08 14:47 UTC (permalink / raw)
  To: Sumit Garg
  Cc: meta-arm, jon.mason, ross.burton, denys, nicolas.dechesne,
	daniel.thompson

On Wed, Jan 06, 2021 at 05:52:43PM +0530, Sumit Garg wrote:
> Add support for GNU-A toolchain version: 10.2-2020.11.
> 
> Signed-off-by: Sumit Garg <sumit.garg@linaro.org>

Series pulled into master.

Thanks,
Jon

> ---
>  .../recipes-devtools/gcc/gcc-arm-10.2.inc     | 121 ++++++
>  ...0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch |  39 ++
>  ...0001-lib-Remove-i-86-march-overrides.patch | 113 ++++++
>  .../0002-gcc-poison-system-directories.patch  | 200 ++++++++++
>  ...-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch |  70 ++++
>  .../0004-64-bit-multilib-hack.patch           | 116 ++++++
>  .../gcc-arm-10.2/0005-optional-libstdc.patch  | 122 ++++++
>  .../0006-COLLECT_GCC_OPTIONS.patch            |  35 ++
>  ...ts.h-in-B-instead-of-S-and-t-oe-in-B.patch |  92 +++++
>  .../0008-fortran-cross-compile-hack.patch     |  43 +++
>  .../gcc-arm-10.2/0009-cpp-honor-sysroot.patch |  51 +++
>  .../0010-MIPS64-Default-to-N64-ABI.patch      |  54 +++
>  ...AMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch | 243 ++++++++++++
>  ...gcc-Fix-argument-list-too-long-error.patch |  41 ++
>  .../gcc/gcc-arm-10.2/0013-Disable-sdt.patch   | 110 ++++++
>  .../gcc/gcc-arm-10.2/0014-libtool.patch       |  39 ++
>  ...s-fix-v4bx-to-linker-to-support-EABI.patch |  40 ++
>  ...-config-files-from-B-instead-of-usin.patch |  99 +++++
>  ...ir-from-.la-which-usually-points-to-.patch |  28 ++
>  .../gcc/gcc-arm-10.2/0018-export-CPP.patch    |  50 +++
>  ...e-target-gcc-headers-can-be-included.patch |  57 +++
>  ...t-directory-during-relink-if-inst_pr.patch |  35 ++
>  ...IR-replacement-instead-of-hardcoding.patch |  26 ++
>  ...22-aarch64-Add-support-for-musl-ldso.patch |  25 ++
>  ...-fix-libcc1-s-install-path-and-rpath.patch |  51 +++
>  ...le-sysroot-support-for-nativesdk-gcc.patch | 349 ++++++++++++++++++
>  ...sroot-gcc-version-specific-dirs-with.patch |  99 +++++
>  ...ous-_FOR_BUILD-and-related-variables.patch | 134 +++++++
>  ...027-nios2-Define-MUSL_DYNAMIC_LINKER.patch |  25 ++
>  ...d-to-link-commandline-for-musl-targe.patch |  84 +++++
>  ...using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch |  26 ++
>  .../0030-sync-gcc-stddef.h-with-musl.patch    |  88 +++++
>  ...-fault-in-precompiled-header-generat.patch |  57 +++
>  .../0032-Fix-for-testsuite-failure.patch      | 255 +++++++++++++
>  ...Re-introduce-spe-commandline-options.patch |  38 ++
>  ...as-for-__cpu_indicator_init-instead-.patch |  83 +++++
>  ...s-Do-not-use-__LINE__-for-maintainin.patch | 182 +++++++++
>  ...ngw32-Enable-operation_not_supported.patch |  26 ++
>  ...omic-Do-not-enforce-march-on-aarch64.patch |  42 +++
>  .../gcc/gcc-cross-canadian_arm-10.2.bb        |   5 +
>  .../gcc/gcc-cross_arm-10.2.bb                 |   3 +
>  .../gcc/gcc-crosssdk_arm-10.2.bb              |   2 +
>  .../gcc/gcc-runtime_arm-10.2.bb               |   2 +
>  .../gcc/gcc-sanitizers_arm-10.2.bb            |   7 +
>  .../gcc/gcc-source_arm-10.2.bb                |   4 +
>  .../recipes-devtools/gcc/gcc_arm-10.2.bb      |  15 +
>  .../gcc/libgcc-initial_arm-10.2.bb            |   5 +
>  .../recipes-devtools/gcc/libgcc_arm-10.2.bb   |   5 +
>  .../gcc/libgfortran_arm-10.2.bb               |   3 +
>  49 files changed, 3439 insertions(+)
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
>  create mode 100644 meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
> 
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
> new file mode 100644
> index 0000000..2a82293
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2.inc
> @@ -0,0 +1,121 @@
> +require recipes-devtools/gcc/gcc-common.inc
> +
> +# Third digit in PV should be incremented after a minor release
> +
> +PV = "arm-10.2"
> +CVE_VERSION = "10.2"
> +
> +# BINV should be incremented to a revision after a minor gcc release
> +
> +BINV = "10.2.1"
> +
> +MMYY = "20.11"
> +RELEASE = "20${MMYY}"
> +PR = "r${RELEASE}"
> +
> +FILESEXTRAPATHS =. "${FILE_DIRNAME}/gcc-arm-10.2:${FILE_DIRNAME}/gcc-arm-10.2/backport:"
> +
> +DEPENDS =+ "mpfr gmp libmpc zlib flex-native"
> +NATIVEDEPS = "mpfr-native gmp-native libmpc-native zlib-native flex-native"
> +
> +LICENSE = "GPL-3.0-with-GCC-exception & GPLv3"
> +
> +LIC_FILES_CHKSUM = "\
> +    file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
> +    file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
> +    file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
> +    file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
> +    file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8 \
> +"
> +
> +BASEURI ?= "https://developer.arm.com/-/media/Files/downloads/gnu-a/10.2-2020.11/srcrel/gcc-arm-src-snapshot-10.2-2020.11.tar.xz"
> +SRC_URI = "\
> +           ${BASEURI} \
> +           file://0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch \
> +           file://0002-gcc-poison-system-directories.patch \
> +           file://0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch \
> +           file://0004-64-bit-multilib-hack.patch \
> +           file://0005-optional-libstdc.patch \
> +           file://0006-COLLECT_GCC_OPTIONS.patch \
> +           file://0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch \
> +           file://0008-fortran-cross-compile-hack.patch \
> +           file://0009-cpp-honor-sysroot.patch \
> +           file://0010-MIPS64-Default-to-N64-ABI.patch \
> +           file://0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch \
> +           file://0012-gcc-Fix-argument-list-too-long-error.patch \
> +           file://0013-Disable-sdt.patch \
> +           file://0014-libtool.patch \
> +           file://0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch \
> +           file://0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch \
> +           file://0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch \
> +           file://0018-export-CPP.patch \
> +           file://0019-Ensure-target-gcc-headers-can-be-included.patch \
> +           file://0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch \
> +           file://0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch \
> +           file://0022-aarch64-Add-support-for-musl-ldso.patch \
> +           file://0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch \
> +           file://0024-handle-sysroot-support-for-nativesdk-gcc.patch \
> +           file://0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch \
> +           file://0026-Fix-various-_FOR_BUILD-and-related-variables.patch \
> +           file://0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch \
> +           file://0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch \
> +           file://0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch \
> +           file://0030-sync-gcc-stddef.h-with-musl.patch \
> +           file://0031-fix-segmentation-fault-in-precompiled-header-generat.patch \
> +           file://0032-Fix-for-testsuite-failure.patch \
> +           file://0033-Re-introduce-spe-commandline-options.patch \
> +           file://0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch \
> +           file://0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch \
> +           file://0036-mingw32-Enable-operation_not_supported.patch \
> +           file://0037-libatomic-Do-not-enforce-march-on-aarch64.patch \
> +           file://0001-lib-Remove-i-86-march-overrides.patch \
> +"
> +SRC_URI[md5sum] = "ce6ebec573e3e52cdb770c8f822aad17"
> +
> +S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-arm-src-snapshot-10.2-2020.11"
> +# For dev release snapshotting
> +#S = "${TMPDIR}/work-shared/gcc-${PV}-${PR}/gcc-${RELEASE}"
> +#B = "${WORKDIR}/gcc-${PV}/build.${HOST_SYS}.${TARGET_SYS}"
> +
> +# Language Overrides
> +FORTRAN = ""
> +JAVA = ""
> +
> +SSP ?= "--disable-libssp"
> +SSP_mingw32 = "--enable-libssp"
> +
> +EXTRA_OECONF_BASE = "\
> +    ${SSP} \
> +    --enable-libitm \
> +    --enable-lto \
> +    --disable-bootstrap \
> +    --with-system-zlib \
> +    ${@'--with-linker-hash-style=${LINKER_HASH_STYLE}' if '${LINKER_HASH_STYLE}' else ''} \
> +    --enable-linker-build-id \
> +    --with-ppl=no \
> +    --with-cloog=no \
> +    --enable-checking=release \
> +    --enable-cheaders=c_global \
> +    --without-isl \
> +"
> +
> +EXTRA_OECONF_INITIAL = "\
> +    --disable-libgomp \
> +    --disable-libitm \
> +    --disable-libquadmath \
> +    --with-system-zlib \
> +    --disable-lto \
> +    --disable-plugin \
> +    --enable-linker-build-id \
> +    --enable-decimal-float=no \
> +    --without-isl \
> +    --disable-libssp \
> +"
> +
> +EXTRA_OECONF_append_aarchilp32 = " --with-abi=ilp32"
> +
> +EXTRA_OECONF_PATHS = "\
> +    --with-gxx-include-dir=/not/exist{target_includedir}/c++/${BINV} \
> +    --with-sysroot=/not/exist \
> +    --with-build-sysroot=${STAGING_DIR_TARGET} \
> +"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
> new file mode 100644
> index 0000000..82ae9f8
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch
> @@ -0,0 +1,39 @@
> +From f2a5dc3bc7e5727d6bf77e1c6e8a31a6f000883d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 08:37:11 +0400
> +Subject: [PATCH] gcc-4.3.1: ARCH_FLAGS_FOR_TARGET
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [embedded specific]
> +---
> + configure    | 2 +-
> + configure.ac | 2 +-
> + 2 files changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/configure b/configure
> +index 4cc938ebb7d..226a64939d1 100755
> +--- a/configure
> ++++ b/configure
> +@@ -7722,7 +7722,7 @@ fi
> + # for target_alias and gcc doesn't manage it consistently.
> + target_configargs="--cache-file=./config.cache ${target_configargs}"
> + 
> +-FLAGS_FOR_TARGET=
> ++FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
> + case " $target_configdirs " in
> +  *" newlib "*)
> +   case " $target_configargs " in
> +diff --git a/configure.ac b/configure.ac
> +index c78d9cbea62..f024f4bac9b 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -3227,7 +3227,7 @@ fi
> + # for target_alias and gcc doesn't manage it consistently.
> + target_configargs="--cache-file=./config.cache ${target_configargs}"
> + 
> +-FLAGS_FOR_TARGET=
> ++FLAGS_FOR_TARGET="$ARCH_FLAGS_FOR_TARGET"
> + case " $target_configdirs " in
> +  *" newlib "*)
> +   case " $target_configargs " in
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
> new file mode 100644
> index 0000000..3f04e12
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0001-lib-Remove-i-86-march-overrides.patch
> @@ -0,0 +1,113 @@
> +From 3776789cde95916f95deef48acf9532b0ebf91ae Mon Sep 17 00:00:00 2001
> +From: Nathan Rossi <nathan@nathanrossi.com>
> +Date: Tue, 15 Dec 2020 11:43:36 +1000
> +Subject: [PATCH] lib*: Remove i*86 march overrides
> +
> +OE does not pass the '--with-arch' option to gccs configure, as such
> +some gcc-runtime libraries try to override the value of '-march' and
> +'-mtune' which OE already provides. This causes conflicts with other
> +i*86 instruction/architecture flags (e.g. -msse* and -mfpmath=*).
> +Additionally this caused the following libraries to be built with less
> +optimized tune configurations.
> +
> +Upstream suggests that this should be detecting or otherwise checking if
> +the target supports the desired functionality before overriding.
> +
> +    https://gcc.gnu.org/legacy-ml/gcc-patches/2016-04/msg01344.html
> +
> +libatomic also overrides the '-march' specifically for IFUNC objects.
> +OE already supplies the correct march flag, so remove setting.
> +
> +Upstream-Status: Inappropriate [OE Specific]
> +Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
> +---
> + libatomic/Makefile.am   | 1 -
> + libatomic/Makefile.in   | 1 -
> + libatomic/configure.tgt | 9 ---------
> + libgomp/configure.tgt   | 8 --------
> + libitm/configure.tgt    | 9 ---------
> + 5 files changed, 28 deletions(-)
> +
> +diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
> +index ac1ca64587..5aa16e0699 100644
> +--- a/libatomic/Makefile.am
> ++++ b/libatomic/Makefile.am
> +@@ -133,7 +133,6 @@ libatomic_la_LIBADD += $(foreach s,$(SIZES),$(addsuffix _$(s)_1_.lo,$(SIZEOBJS))
> + libatomic_la_LIBADD += $(addsuffix _8_2_.lo,$(SIZEOBJS))
> + endif
> + if ARCH_I386
> +-IFUNC_OPTIONS	     = -march=i586
> + libatomic_la_LIBADD += $(addsuffix _8_1_.lo,$(SIZEOBJS))
> + endif
> + if ARCH_X86_64
> +diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
> +index 97df2d7ff0..82c511d420 100644
> +--- a/libatomic/Makefile.in
> ++++ b/libatomic/Makefile.in
> +@@ -432,7 +432,6 @@ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix \
> + 	_$(s)_.lo,$(SIZEOBJS))) $(am__append_1) $(am__append_2) \
> + 	$(am__append_3) $(am__append_4)
> + @ARCH_ARM_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv7-a+fp -DHAVE_KERNEL64
> +-@ARCH_I386_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=i586
> + @ARCH_X86_64_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -mcx16
> + libatomic_convenience_la_SOURCES = $(libatomic_la_SOURCES)
> + libatomic_convenience_la_LIBADD = $(libatomic_la_LIBADD)
> +diff --git a/libatomic/configure.tgt b/libatomic/configure.tgt
> +index 5dd0926d20..3cc41773c3 100644
> +--- a/libatomic/configure.tgt
> ++++ b/libatomic/configure.tgt
> +@@ -82,15 +82,6 @@ case "${target_cpu}" in
> + 	;;
> + 
> +   i[3456]86)
> +-	case " ${CC} ${CFLAGS} " in
> +-	  *" -m64 "*|*" -mx32 "*)
> +-	    ;;
> +-	  *)
> +-	    if test -z "$with_arch"; then
> +-	      XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> +-	      XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
> +-	    fi
> +-	esac
> + 	ARCH=x86
> + 	# ??? Detect when -march=i686 is already enabled.
> + 	try_ifunc=yes
> +diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt
> +index 4790a31e39..46c4c958e6 100644
> +--- a/libgomp/configure.tgt
> ++++ b/libgomp/configure.tgt
> +@@ -72,14 +72,6 @@ if test x$enable_linux_futex = xyes; then
> +     # Note that bare i386 is not included here.  We need cmpxchg.
> +     i[456]86-*-linux*)
> + 	config_path="linux/x86 linux posix"
> +-	case " ${CC} ${CFLAGS} " in
> +-	  *" -m64 "*|*" -mx32 "*)
> +-	    ;;
> +-	  *)
> +-	    if test -z "$with_arch"; then
> +-	      XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> +-	    fi
> +-	esac
> + 	;;
> + 
> +     # Similar jiggery-pokery for x86_64 multilibs, except here we
> +diff --git a/libitm/configure.tgt b/libitm/configure.tgt
> +index 04109160e9..3d78ea609d 100644
> +--- a/libitm/configure.tgt
> ++++ b/libitm/configure.tgt
> +@@ -59,15 +59,6 @@ case "${target_cpu}" in
> +   arm*)		ARCH=arm ;;
> + 
> +   i[3456]86)
> +-	case " ${CC} ${CFLAGS} " in
> +-	  *" -m64 "*|*" -mx32 "*)
> +-	    ;;
> +-	  *)
> +-	    if test -z "$with_arch"; then
> +-	      XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
> +-	      XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
> +-	    fi
> +-	esac
> + 	XCFLAGS="${XCFLAGS} -mrtm"
> + 	ARCH=x86
> + 	;;
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
> new file mode 100644
> index 0000000..30a8486
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0002-gcc-poison-system-directories.patch
> @@ -0,0 +1,200 @@
> +From 74cc21f474402cf3578e37e1d7a1a22bbd070f6a Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 08:59:00 +0400
> +Subject: [PATCH] gcc: poison-system-directories
> +
> +Add /sw/include and /opt/include based on the original
> +zecke-no-host-includes.patch patch.  The original patch checked for
> +/usr/include, /sw/include and /opt/include and then triggered a failure and
> +aborted.
> +
> +Instead, we add the two missing items to the current scan.  If the user
> +wants this to be a failure, they can add "-Werror=poison-system-directories".
> +
> +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/common.opt      |  4 ++++
> + gcc/config.in       |  6 ++++++
> + gcc/configure       | 16 ++++++++++++++++
> + gcc/configure.ac    | 10 ++++++++++
> + gcc/doc/invoke.texi |  9 +++++++++
> + gcc/gcc.c           |  2 ++
> + gcc/incpath.c       | 21 +++++++++++++++++++++
> + 7 files changed, 68 insertions(+)
> +
> +diff --git a/gcc/common.opt b/gcc/common.opt
> +index 65a82410abc..415f38fa1f4 100644
> +--- a/gcc/common.opt
> ++++ b/gcc/common.opt
> +@@ -682,6 +682,10 @@ Wreturn-local-addr
> + Common Var(warn_return_local_addr) Init(1) Warning
> + Warn about returning a pointer/reference to a local or temporary variable.
> + 
> ++Wpoison-system-directories
> ++Common Var(flag_poison_system_directories) Init(1) Warning
> ++Warn for -I and -L options using system directories if cross compiling
> ++
> + Wshadow
> + Common Var(warn_shadow) Warning
> + Warn when one variable shadows another.  Same as -Wshadow=global.
> +diff --git a/gcc/config.in b/gcc/config.in
> +index 809e7b26823..5adeaeed36b 100644
> +--- a/gcc/config.in
> ++++ b/gcc/config.in
> +@@ -224,6 +224,12 @@
> + #endif
> + 
> + 
> ++/* Define to warn for use of native system header directories */
> ++#ifndef USED_FOR_TARGET
> ++#undef ENABLE_POISON_SYSTEM_DIRECTORIES
> ++#endif
> ++
> ++
> + /* Define if you want all operations on RTL (the basic data structure of the
> +    optimizer and back end) to be checked for dynamic type safety at runtime.
> +    This is quite expensive. */
> +diff --git a/gcc/configure b/gcc/configure
> +index cd3d9516fce..8de766a942c 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -1010,6 +1010,7 @@ with_system_zlib
> + enable_maintainer_mode
> + enable_link_mutex
> + enable_version_specific_runtime_libs
> ++enable_poison_system_directories
> + enable_plugin
> + enable_host_shared
> + enable_libquadmath_support
> +@@ -1766,6 +1767,8 @@ Optional Features:
> +   --enable-version-specific-runtime-libs
> +                           specify that runtime libraries should be installed
> +                           in a compiler-specific directory
> ++  --enable-poison-system-directories
> ++                          warn for use of native system header directories
> +   --enable-plugin         enable plugin support
> +   --enable-host-shared    build host code as shared libraries
> +   --disable-libquadmath-support
> +@@ -30235,6 +30238,19 @@ if test "${enable_version_specific_runtime_libs+set}" = set; then :
> + fi
> + 
> + 
> ++# Check whether --enable-poison-system-directories was given.
> ++if test "${enable_poison_system_directories+set}" = set; then :
> ++  enableval=$enable_poison_system_directories;
> ++else
> ++  enable_poison_system_directories=no
> ++fi
> ++
> ++if test "x${enable_poison_system_directories}" = "xyes"; then
> ++
> ++$as_echo "#define ENABLE_POISON_SYSTEM_DIRECTORIES 1" >>confdefs.h
> ++
> ++fi
> ++
> + # Substitute configuration variables
> + 
> + 
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 0de3b4bf97b..8bfd6feb780 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -6595,6 +6595,16 @@ AC_ARG_ENABLE(version-specific-runtime-libs,
> +                 [specify that runtime libraries should be
> +                  installed in a compiler-specific directory])])
> + 
> ++AC_ARG_ENABLE([poison-system-directories],
> ++             AS_HELP_STRING([--enable-poison-system-directories],
> ++                            [warn for use of native system header directories]),,
> ++             [enable_poison_system_directories=no])
> ++if test "x${enable_poison_system_directories}" = "xyes"; then
> ++  AC_DEFINE([ENABLE_POISON_SYSTEM_DIRECTORIES],
> ++           [1],
> ++           [Define to warn for use of native system header directories])
> ++fi
> ++
> + # Substitute configuration variables
> + AC_SUBST(subdirs)
> + AC_SUBST(srcdir)
> +diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
> +index f98161391a0..f12d8d12150 100644
> +--- a/gcc/doc/invoke.texi
> ++++ b/gcc/doc/invoke.texi
> +@@ -348,6 +348,7 @@ Objective-C and Objective-C++ Dialects}.
> + -Wpacked  -Wno-packed-bitfield-compat  -Wpacked-not-aligned  -Wpadded @gol
> + -Wparentheses  -Wno-pedantic-ms-format @gol
> + -Wpointer-arith  -Wno-pointer-compare  -Wno-pointer-to-int-cast @gol
> ++-Wno-poison-system-directories @gol
> + -Wno-pragmas  -Wno-prio-ctor-dtor  -Wredundant-decls @gol
> + -Wrestrict  -Wno-return-local-addr  -Wreturn-type @gol
> + -Wno-scalar-storage-order  -Wsequence-point @gol
> +@@ -6924,6 +6925,14 @@ made up of data only and thus requires no special treatment.  But, for
> + most targets, it is made up of code and thus requires the stack to be
> + made executable in order for the program to work properly.
> + 
> ++@item -Wno-poison-system-directories
> ++@opindex Wno-poison-system-directories
> ++Do not warn for @option{-I} or @option{-L} options using system
> ++directories such as @file{/usr/include} when cross compiling.  This
> ++option is intended for use in chroot environments when such
> ++directories contain the correct headers and libraries for the target
> ++system rather than the host.
> ++
> + @item -Wfloat-equal
> + @opindex Wfloat-equal
> + @opindex Wno-float-equal
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index 9f790db0daf..b2200c5185a 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -1041,6 +1041,8 @@ proper position among the other output files.  */
> +    "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \
> +    "%X %{o*} %{e*} %{N} %{n} %{r}\
> +     %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!r:%{!nostartfiles:%S}}} \
> ++    %{Wno-poison-system-directories:--no-poison-system-directories} \
> ++    %{Werror=poison-system-directories:--error-poison-system-directories} \
> +     %{static|no-pie|static-pie:} %@{L*} %(mfwrap) %(link_libgcc) " \
> +     VTABLE_VERIFICATION_SPEC " " SANITIZER_EARLY_SPEC " %o "" \
> +     %{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1):\
> +diff --git a/gcc/incpath.c b/gcc/incpath.c
> +index 8a2bda00f80..9098ab044ab 100644
> +--- a/gcc/incpath.c
> ++++ b/gcc/incpath.c
> +@@ -26,6 +26,7 @@
> + #include "intl.h"
> + #include "incpath.h"
> + #include "cppdefault.h"
> ++#include "diagnostic-core.h"
> + 
> + /* Microsoft Windows does not natively support inodes.
> +    VMS has non-numeric inodes.  */
> +@@ -393,6 +394,26 @@ merge_include_chains (const char *sysroot, cpp_reader *pfile, int verbose)
> + 	}
> +       fprintf (stderr, _("End of search list.\n"));
> +     }
> ++
> ++#ifdef ENABLE_POISON_SYSTEM_DIRECTORIES
> ++  if (flag_poison_system_directories)
> ++    {
> ++       struct cpp_dir *p;
> ++
> ++       for (p = heads[INC_QUOTE]; p; p = p->next)
> ++         {
> ++          if ((!strncmp (p->name, "/usr/include", 12))
> ++              || (!strncmp (p->name, "/usr/local/include", 18))
> ++              || (!strncmp (p->name, "/usr/X11R6/include", 18))
> ++              || (!strncmp (p->name, "/sw/include", 11))
> ++              || (!strncmp (p->name, "/opt/include", 12)))
> ++            warning (OPT_Wpoison_system_directories,
> ++                     "include location \"%s\" is unsafe for "
> ++                     "cross-compilation",
> ++                     p->name);
> ++         }
> ++    }
> ++#endif
> + }
> + 
> + /* Use given -I paths for #include "..." but not #include <...>, and
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
> new file mode 100644
> index 0000000..27237fe
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0003-gcc-4.3.3-SYSROOT_CFLAGS_FOR_TARGET.patch
> @@ -0,0 +1,70 @@
> +From 6e3395c0bc933bdc3242d1dead4896d0aa4e11a8 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:08:31 +0400
> +Subject: [PATCH] gcc-4.3.3: SYSROOT_CFLAGS_FOR_TARGET
> +
> +Before committing, I noticed that PR/32161 was marked as a dup of PR/32009, but my previous patch did not fix it.
> +
> +This alternative patch is better because it lets you just use CFLAGS_FOR_TARGET to set the compilation flags for libgcc. Since bootstrapped target libraries are never compiled with the native compiler, it makes little sense to use different flags for stage1 and later stages. And it also makes little sense to use a different variable than CFLAGS_FOR_TARGET.
> +
> +Other changes I had to do include:
> +
> +- moving the creation of default CFLAGS_FOR_TARGET from Makefile.am to configure.ac, because otherwise the BOOT_CFLAGS are substituted into CFLAGS_FOR_TARGET (which is "-O2 -g $(CFLAGS)") via $(CFLAGS). It is also cleaner this way though.
> +
> +- passing the right CFLAGS to configure scripts as exported environment variables
> +
> +I also stopped passing LIBCFLAGS to configure scripts since they are unused in the whole src tree. And I updated the documentation as H-P reminded me to do.
> +
> +Bootstrapped/regtested i686-pc-linux-gnu, will commit to 4.4 shortly. Ok for 4.3?
> +
> +Signed-off-by: Paolo Bonzini  <bonzini@gnu.org>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + configure | 32 ++++++++++++++++++++++++++++++++
> + 1 file changed, 32 insertions(+)
> +
> +diff --git a/configure b/configure
> +index 226a64939d1..b31dc137fc9 100755
> +--- a/configure
> ++++ b/configure
> +@@ -6971,6 +6971,38 @@ fi
> + 
> + 
> + 
> ++# During gcc bootstrap, if we use some random cc for stage1 then CFLAGS
> ++# might be empty or "-g".  We don't require a C++ compiler, so CXXFLAGS
> ++# might also be empty (or "-g", if a non-GCC C++ compiler is in the path).
> ++# We want to ensure that TARGET libraries (which we know are built with
> ++# gcc) are built with "-O2 -g", so include those options when setting
> ++# CFLAGS_FOR_TARGET and CXXFLAGS_FOR_TARGET.
> ++if test "x$CFLAGS_FOR_TARGET" = x; then
> ++  CFLAGS_FOR_TARGET=$CFLAGS
> ++  case " $CFLAGS " in
> ++    *" -O2 "*) ;;
> ++    *) CFLAGS_FOR_TARGET="-O2 $CFLAGS" ;;
> ++  esac
> ++  case " $CFLAGS " in
> ++    *" -g "* | *" -g3 "*) ;;
> ++    *) CFLAGS_FOR_TARGET="-g $CFLAGS" ;;
> ++  esac
> ++fi
> ++
> ++
> ++if test "x$CXXFLAGS_FOR_TARGET" = x; then
> ++  CXXFLAGS_FOR_TARGET=$CXXFLAGS
> ++  case " $CXXFLAGS " in
> ++    *" -O2 "*) ;;
> ++    *) CXXFLAGS_FOR_TARGET="-O2 $CXXFLAGS" ;;
> ++  esac
> ++  case " $CXXFLAGS " in
> ++    *" -g "* | *" -g3 "*) ;;
> ++    *) CXXFLAGS_FOR_TARGET="-g $CXXFLAGS" ;;
> ++  esac
> ++fi
> ++
> ++
> + # Handle --with-headers=XXX.  If the value is not "yes", the contents of
> + # the named directory are copied to $(tooldir)/sys-include.
> + if test x"${with_headers}" != x && test x"${with_headers}" != xno ; then
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
> new file mode 100644
> index 0000000..7c751be
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0004-64-bit-multilib-hack.patch
> @@ -0,0 +1,116 @@
> +From 85a7c5aeb82ed61e6ef6d8e061b9da9e6a4a652c Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:10:06 +0400
> +Subject: [PATCH] 64-bit multilib hack.
> +
> +GCC has internal multilib handling code but it assumes a very specific rigid directory
> +layout. The build system implementation of multilib layout is very generic and allows
> +complete customisation of the library directories.
> +
> +This patch is a partial solution to allow any custom directories to be passed into gcc
> +and handled correctly. It forces gcc to use the base_libdir (which is the current
> +directory, "."). We need to do this for each multilib that is configured as we don't
> +know which compiler options may be being passed into the compiler. Since we have a compiler
> +per mulitlib at this point that isn't an issue.
> +
> +The one problem is the target compiler is only going to work for the default multlilib at
> +this point. Ideally we'd figure out which multilibs were being enabled with which paths
> +and be able to patch these entries with a complete set of correct paths but this we
> +don't have such code at this point. This is something the target gcc recipe should do
> +and override these platform defaults in its build config.
> +
> +Do same for riscv64 and aarch64
> +
> +RP 15/8/11
> +
> +Upstream-Status: Inappropriate[OE-Specific]
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
> +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> +---
> + gcc/config/aarch64/t-aarch64-linux |  8 ++++----
> + gcc/config/i386/t-linux64          |  6 ++----
> + gcc/config/mips/t-linux64          | 10 +++-------
> + gcc/config/riscv/t-linux           |  6 ++++--
> + gcc/config/rs6000/t-linux64        |  5 ++---
> + 5 files changed, 15 insertions(+), 20 deletions(-)
> +
> +diff --git a/gcc/config/aarch64/t-aarch64-linux b/gcc/config/aarch64/t-aarch64-linux
> +index 83e59e33b85..b1356be1fb4 100644
> +--- a/gcc/config/aarch64/t-aarch64-linux
> ++++ b/gcc/config/aarch64/t-aarch64-linux
> +@@ -21,8 +21,8 @@
> + LIB1ASMSRC   = aarch64/lib1funcs.asm
> + LIB1ASMFUNCS = _aarch64_sync_cache_range
> + 
> +-AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
> +-MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
> +-MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
> ++#AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),_be)
> ++#MULTILIB_OSDIRNAMES = mabi.lp64=../lib64$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu)
> ++#MULTIARCH_DIRNAME = $(call if_multiarch,aarch64$(AARCH_BE)-linux-gnu)
> + 
> +-MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
> ++#MULTILIB_OSDIRNAMES += mabi.ilp32=../libilp32$(call if_multiarch,:aarch64$(AARCH_BE)-linux-gnu_ilp32)
> +diff --git a/gcc/config/i386/t-linux64 b/gcc/config/i386/t-linux64
> +index 1171e218578..5e057b7e5db 100644
> +--- a/gcc/config/i386/t-linux64
> ++++ b/gcc/config/i386/t-linux64
> +@@ -32,7 +32,5 @@
> + #
> + comma=,
> + MULTILIB_OPTIONS    = $(subst $(comma),/,$(TM_MULTILIB_CONFIG))
> +-MULTILIB_DIRNAMES   = $(patsubst m%, %, $(subst /, ,$(MULTILIB_OPTIONS)))
> +-MULTILIB_OSDIRNAMES = m64=../lib64$(call if_multiarch,:x86_64-linux-gnu)
> +-MULTILIB_OSDIRNAMES+= m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:i386-linux-gnu)
> +-MULTILIB_OSDIRNAMES+= mx32=../libx32$(call if_multiarch,:x86_64-linux-gnux32)
> ++MULTILIB_DIRNAMES = . .
> ++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> +diff --git a/gcc/config/mips/t-linux64 b/gcc/config/mips/t-linux64
> +index ceb58d3b5f3..43fe2bf28ab 100644
> +--- a/gcc/config/mips/t-linux64
> ++++ b/gcc/config/mips/t-linux64
> +@@ -17,10 +17,6 @@
> + # <http://www.gnu.org/licenses/>.
> + 
> + MULTILIB_OPTIONS = mabi=n32/mabi=32/mabi=64
> +-MULTILIB_DIRNAMES = n32 32 64
> +-MIPS_EL = $(if $(filter %el, $(firstword $(subst -, ,$(target)))),el)
> +-MIPS_SOFT = $(if $(strip $(filter MASK_SOFT_FLOAT_ABI, $(target_cpu_default)) $(filter soft, $(with_float))),soft)
> +-MULTILIB_OSDIRNAMES = \
> +-	../lib32$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabin32$(MIPS_SOFT)) \
> +-	../lib$(call if_multiarch,:mips$(MIPS_EL)-linux-gnu$(MIPS_SOFT)) \
> +-	../lib64$(call if_multiarch,:mips64$(MIPS_EL)-linux-gnuabi64$(MIPS_SOFT))
> ++MULTILIB_DIRNAMES = . . .
> ++MULTILIB_OSDIRNAMES = ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> ++
> +diff --git a/gcc/config/riscv/t-linux b/gcc/config/riscv/t-linux
> +index 216d2776a18..e4d817621fc 100644
> +--- a/gcc/config/riscv/t-linux
> ++++ b/gcc/config/riscv/t-linux
> +@@ -1,3 +1,5 @@
> + # Only XLEN and ABI affect Linux multilib dir names, e.g. /lib32/ilp32d/
> +-MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
> +-MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
> ++#MULTILIB_DIRNAMES := $(patsubst rv32%,lib32,$(patsubst rv64%,lib64,$(MULTILIB_DIRNAMES)))
> ++MULTILIB_DIRNAMES := . .
> ++#MULTILIB_OSDIRNAMES := $(patsubst lib%,../lib%,$(MULTILIB_DIRNAMES))
> ++MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> +diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64
> +index 264a7e27524..dc9d440f66b 100644
> +--- a/gcc/config/rs6000/t-linux64
> ++++ b/gcc/config/rs6000/t-linux64
> +@@ -26,10 +26,9 @@
> + # MULTILIB_OSDIRNAMES according to what is found on the target.
> + 
> + MULTILIB_OPTIONS    := m64/m32
> +-MULTILIB_DIRNAMES   := 64 32
> ++MULTILIB_DIRNAMES   := . .
> + MULTILIB_EXTRA_OPTS := 
> +-MULTILIB_OSDIRNAMES := m64=../lib64$(call if_multiarch,:powerpc64-linux-gnu)
> +-MULTILIB_OSDIRNAMES += m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)$(call if_multiarch,:powerpc-linux-gnu)
> ++MULTILIB_OSDIRNAMES := ../$(shell basename $(base_libdir)) ../$(shell basename $(base_libdir))
> + 
> + rs6000-linux.o: $(srcdir)/config/rs6000/rs6000-linux.c
> + 	$(COMPILE) $<
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
> new file mode 100644
> index 0000000..4020c9e
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0005-optional-libstdc.patch
> @@ -0,0 +1,122 @@
> +From 6ddfb0bfcd1eea71acd37ab06f7a4510b9f1d12b Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:12:56 +0400
> +Subject: [PATCH] optional libstdc
> +
> +gcc-runtime builds libstdc++ separately from gcc-cross-*. Its configure tests using g++
> +will not run correctly since by default the linker will try to link against libstdc++
> +which shouldn't exist yet. We need an option to disable -lstdc++
> +option whilst leaving -lc, -lgcc and other automatic library dependencies added by gcc
> +driver. This patch adds such an option which only disables the -lstdc++.
> +
> +A "standard" gcc build uses xgcc and hence avoids this. We should ask upstream how to
> +do this officially, the likely answer is don't build libstdc++ separately.
> +
> +RP 29/6/10
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [embedded specific]
> +---
> + gcc/c-family/c.opt  |  4 ++++
> + gcc/cp/g++spec.c    |  1 +
> + gcc/doc/invoke.texi | 32 +++++++++++++++++++++++++++++++-
> + gcc/gcc.c           |  1 +
> + 4 files changed, 37 insertions(+), 1 deletion(-)
> +
> +diff --git a/gcc/c-family/c.opt b/gcc/c-family/c.opt
> +index c49da99d395..35f712e2c84 100644
> +--- a/gcc/c-family/c.opt
> ++++ b/gcc/c-family/c.opt
> +@@ -2025,6 +2025,10 @@ nostdinc++
> + C++ ObjC++
> + Do not search standard system include directories for C++.
> + 
> ++nostdlib++
> ++Driver
> ++Do not link standard C++ runtime library
> ++
> + o
> + C ObjC C++ ObjC++ Joined Separate
> + ; Documented in common.opt
> +diff --git a/gcc/cp/g++spec.c b/gcc/cp/g++spec.c
> +index 0ab63bcd211..7b081e9e4f0 100644
> +--- a/gcc/cp/g++spec.c
> ++++ b/gcc/cp/g++spec.c
> +@@ -137,6 +137,7 @@ lang_specific_driver (struct cl_decoded_option **in_decoded_options,
> +       switch (decoded_options[i].opt_index)
> + 	{
> + 	case OPT_nostdlib:
> ++	case OPT_nostdlib__:
> + 	case OPT_nodefaultlibs:
> + 	  library = -1;
> + 	  break;
> +diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
> +index f12d8d12150..cf6cb428e7d 100644
> +--- a/gcc/doc/invoke.texi
> ++++ b/gcc/doc/invoke.texi
> +@@ -230,6 +230,9 @@ in the following sections.
> + -fno-weak  -nostdinc++ @gol
> + -fvisibility-inlines-hidden @gol
> + -fvisibility-ms-compat @gol
> ++-fvtable-verify=@r{[}std@r{|}preinit@r{|}none@r{]} @gol
> ++-fvtv-counts -fvtv-debug @gol
> ++-nostdlib++ @gol
> + -fext-numeric-literals @gol
> + -Wabi-tag  -Wcatch-value  -Wcatch-value=@var{n} @gol
> + -Wno-class-conversion  -Wclass-memaccess @gol
> +@@ -599,7 +602,7 @@ Objective-C and Objective-C++ Dialects}.
> + -pie  -pthread  -r  -rdynamic @gol
> + -s  -static  -static-pie  -static-libgcc  -static-libstdc++ @gol
> + -static-libasan  -static-libtsan  -static-liblsan  -static-libubsan @gol
> +--shared  -shared-libgcc  -symbolic @gol
> ++-shared  -shared-libgcc  -symbolic -nostdlib++ @gol
> + -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
> + -u @var{symbol}  -z @var{keyword}}
> + 
> +@@ -14407,6 +14410,33 @@ Specify that the program entry point is @var{entry}.  The argument is
> + interpreted by the linker; the GNU linker accepts either a symbol name
> + or an address.
> + 
> ++@item -nostdlib++
> ++@opindex nostdlib++
> ++Do not use the standard system C++ runtime libraries when linking.
> ++Only the libraries you specify will be passed to the linker.
> ++
> ++@cindex @option{-lgcc}, use with @option{-nostdlib}
> ++@cindex @option{-nostdlib} and unresolved references
> ++@cindex unresolved references and @option{-nostdlib}
> ++@cindex @option{-lgcc}, use with @option{-nodefaultlibs}
> ++@cindex @option{-nodefaultlibs} and unresolved references
> ++@cindex unresolved references and @option{-nodefaultlibs}
> ++One of the standard libraries bypassed by @option{-nostdlib} and
> ++@option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
> ++which GCC uses to overcome shortcomings of particular machines, or special
> ++needs for some languages.
> ++(@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
> ++Collection (GCC) Internals},
> ++for more discussion of @file{libgcc.a}.)
> ++In most cases, you need @file{libgcc.a} even when you want to avoid
> ++other standard libraries.  In other words, when you specify @option{-nostdlib}
> ++or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
> ++This ensures that you have no unresolved references to internal GCC
> ++library subroutines.
> ++(An example of such an internal subroutine is @code{__main}, used to ensure C++
> ++constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
> ++GNU Compiler Collection (GCC) Internals}.)
> ++
> + @item -pie
> + @opindex pie
> + Produce a dynamically linked position independent executable on targets
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index b2200c5185a..f8be58ce0a6 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -1051,6 +1051,7 @@ proper position among the other output files.  */
> +     %(mflib) " STACK_SPLIT_SPEC "\
> +     %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} " SANITIZER_SPEC " \
> +     %{!nostdlib:%{!r:%{!nodefaultlibs:%(link_ssp) %(link_gcc_c_sequence)}}}\
> ++    %{!nostdlib++:}\
> +     %{!nostdlib:%{!r:%{!nostartfiles:%E}}} %{T*}  \n%(post_link) }}}}}}"
> + #endif
> + 
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
> new file mode 100644
> index 0000000..9fbbe80
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0006-COLLECT_GCC_OPTIONS.patch
> @@ -0,0 +1,35 @@
> +From a6c90d3a9c5010b4aa7cc30467cf81ca7e0f430e Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:16:28 +0400
> +Subject: [PATCH] COLLECT_GCC_OPTIONS
> +
> +This patch adds --sysroot into COLLECT_GCC_OPTIONS which is used to
> +invoke collect2.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/gcc.c | 9 +++++++++
> + 1 file changed, 9 insertions(+)
> +
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index f8be58ce0a6..48b0f9dde81 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -4806,6 +4806,15 @@ set_collect_gcc_options (void)
> + 		sizeof ("COLLECT_GCC_OPTIONS=") - 1);
> + 
> +   first_time = TRUE;
> ++#ifdef HAVE_LD_SYSROOT
> ++  if (target_system_root_changed && target_system_root)
> ++    {
> ++      obstack_grow (&collect_obstack, "'--sysroot=", sizeof("'--sysroot=")-1);
> ++      obstack_grow (&collect_obstack, target_system_root,strlen(target_system_root));
> ++      obstack_grow (&collect_obstack, "'", 1);
> ++      first_time = FALSE;
> ++    }
> ++#endif
> +   for (i = 0; (int) i < n_switches; i++)
> +     {
> +       const char *const *args;
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
> new file mode 100644
> index 0000000..a764bdd
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0007-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch
> @@ -0,0 +1,92 @@
> +From 5670d4489f119d2da661734895ac0be99b606d1b Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:17:25 +0400
> +Subject: [PATCH] Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}
> +
> +Use the defaults.h in ${B} instead of ${S}, and t-oe in ${B}, so that
> +the source can be shared between gcc-cross-initial,
> +gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +
> +While compiling gcc-crosssdk-initial-x86_64 on some host, there is
> +occasionally failure that test the existance of default.h doesn't
> +work, the reason is tm_include_list='** defaults.h' rather than
> +tm_include_list='** ./defaults.h'
> +
> +So we add the test condition for this situation.
> +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
> +---
> + gcc/Makefile.in  | 2 +-
> + gcc/configure    | 4 ++--
> + gcc/configure.ac | 4 ++--
> + gcc/mkconfig.sh  | 4 ++--
> + 4 files changed, 7 insertions(+), 7 deletions(-)
> +
> +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> +index 543b477ff18..a67d2cc18d6 100644
> +--- a/gcc/Makefile.in
> ++++ b/gcc/Makefile.in
> +@@ -540,7 +540,7 @@ TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
> + TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
> + 
> + xmake_file=@xmake_file@
> +-tmake_file=@tmake_file@
> ++tmake_file=@tmake_file@ ./t-oe
> + TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
> + TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
> + TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
> +diff --git a/gcc/configure b/gcc/configure
> +index 8de766a942c..b26e8fc7fee 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -12705,8 +12705,8 @@ for f in $tm_file; do
> +        tm_include_list="${tm_include_list} $f"
> +        ;;
> +     defaults.h )
> +-       tm_file_list="${tm_file_list} \$(srcdir)/$f"
> +-       tm_include_list="${tm_include_list} $f"
> ++       tm_file_list="${tm_file_list} ./$f"
> ++       tm_include_list="${tm_include_list} ./$f"
> +        ;;
> +     * )
> +        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 8bfd6feb780..26fa46802c7 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -2138,8 +2138,8 @@ for f in $tm_file; do
> +        tm_include_list="${tm_include_list} $f"
> +        ;;
> +     defaults.h )
> +-       tm_file_list="${tm_file_list} \$(srcdir)/$f"
> +-       tm_include_list="${tm_include_list} $f"
> ++       tm_file_list="${tm_file_list} ./$f"
> ++       tm_include_list="${tm_include_list} ./$f"
> +        ;;
> +     * )
> +        tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
> +diff --git a/gcc/mkconfig.sh b/gcc/mkconfig.sh
> +index d2c677a4a42..d03852481cb 100644
> +--- a/gcc/mkconfig.sh
> ++++ b/gcc/mkconfig.sh
> +@@ -77,7 +77,7 @@ if [ -n "$HEADERS" ]; then
> +     if [ $# -ge 1 ]; then
> + 	echo '#ifdef IN_GCC' >> ${output}T
> + 	for file in "$@"; do
> +-	    if test x"$file" = x"defaults.h"; then
> ++	    if test x"$file" = x"./defaults.h" -o x"$file" = x"defaults.h"; then
> + 		postpone_defaults_h="yes"
> + 	    else
> + 		echo "# include \"$file\"" >> ${output}T
> +@@ -106,7 +106,7 @@ esac
> + 
> + # If we postponed including defaults.h, add the #include now.
> + if test x"$postpone_defaults_h" = x"yes"; then
> +-    echo "# include \"defaults.h\"" >> ${output}T
> ++    echo "# include \"./defaults.h\"" >> ${output}T
> + fi
> + 
> + # Add multiple inclusion protection guard, part two.
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
> new file mode 100644
> index 0000000..714db3b
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0008-fortran-cross-compile-hack.patch
> @@ -0,0 +1,43 @@
> +From f05062625e7a4751be723595a2f7a4b7fbeff311 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:20:01 +0400
> +Subject: [PATCH] fortran cross-compile hack.
> +
> +* Fortran would have searched for arm-angstrom-gnueabi-gfortran but would have used
> +used gfortan. For gcc_4.2.2.bb we want to use the gfortran compiler from our cross
> +directory.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [embedded specific]
> +---
> + libgfortran/configure    | 2 +-
> + libgfortran/configure.ac | 2 +-
> + 2 files changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/libgfortran/configure b/libgfortran/configure
> +index b4cf854ddb3..e8e0ac3b1cf 100755
> +--- a/libgfortran/configure
> ++++ b/libgfortran/configure
> +@@ -13090,7 +13090,7 @@ esac
> + 
> + # We need gfortran to compile parts of the library
> + #AC_PROG_FC(gfortran)
> +-FC="$GFORTRAN"
> ++#FC="$GFORTRAN"
> + ac_ext=${ac_fc_srcext-f}
> + ac_compile='$FC -c $FCFLAGS $ac_fcflags_srcext conftest.$ac_ext >&5'
> + ac_link='$FC -o conftest$ac_exeext $FCFLAGS $LDFLAGS $ac_fcflags_srcext conftest.$ac_ext $LIBS >&5'
> +diff --git a/libgfortran/configure.ac b/libgfortran/configure.ac
> +index 711dc60ff78..3c9bbfbf47d 100644
> +--- a/libgfortran/configure.ac
> ++++ b/libgfortran/configure.ac
> +@@ -258,7 +258,7 @@ AC_SUBST(enable_static)
> + 
> + # We need gfortran to compile parts of the library
> + #AC_PROG_FC(gfortran)
> +-FC="$GFORTRAN"
> ++#FC="$GFORTRAN"
> + AC_PROG_FC(gfortran)
> + 
> + # extra LD Flags which are required for targets
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
> new file mode 100644
> index 0000000..8ad6853
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0009-cpp-honor-sysroot.patch
> @@ -0,0 +1,51 @@
> +From 1d76de7f1f5c99f1fa1a4b14aedad3d702e4e136 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:22:00 +0400
> +Subject: [PATCH] cpp: honor sysroot.
> +
> +Currently, if the gcc toolchain is relocated and installed from sstate, then you try and compile
> +preprocessed source (.i or .ii files), the compiler will try and access the builtin sysroot location
> +rather than the --sysroot option specified on the commandline. If access to that directory is
> +permission denied (unreadable), gcc will error.
> +
> +This happens when ccache is in use due to the fact it uses preprocessed source files.
> +
> +The fix below adds %I to the cpp-output spec macro so the default substitutions for -iprefix,
> +-isystem, -isysroot happen and the correct sysroot is used.
> +
> +[YOCTO #2074]
> +
> +RP 2012/04/13
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/cp/lang-specs.h | 2 +-
> + gcc/gcc.c           | 2 +-
> + 2 files changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/gcc/cp/lang-specs.h b/gcc/cp/lang-specs.h
> +index 0ad4a33b93e..16c744f4f90 100644
> +--- a/gcc/cp/lang-specs.h
> ++++ b/gcc/cp/lang-specs.h
> +@@ -66,5 +66,5 @@ along with GCC; see the file COPYING3.  If not see
> +   {".ii", "@c++-cpp-output", 0, 0, 0},
> +   {"@c++-cpp-output",
> +       "%{!E:%{!M:%{!MM:"
> +-      "  cc1plus -fpreprocessed %i %(cc1_options) %2"
> ++      "  cc1plus -fpreprocessed %i %I %(cc1_options) %2"
> +       "  %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index 48b0f9dde81..c87f603955f 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -1348,7 +1348,7 @@ static const struct compiler default_compilers[] =
> + 					   %W{o*:--output-pch=%*}}%V}}}}}}}", 0, 0, 0},
> +   {".i", "@cpp-output", 0, 0, 0},
> +   {"@cpp-output",
> +-   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> ++   "%{!M:%{!MM:%{!E:cc1 -fpreprocessed %i %I %(cc1_options) %{!fsyntax-only:%(invoke_as)}}}}", 0, 0, 0},
> +   {".s", "@assembler", 0, 0, 0},
> +   {"@assembler",
> +    "%{!M:%{!MM:%{!E:%{!S:as %(asm_debug) %(asm_options) %i %A }}}}", 0, 0, 0},
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
> new file mode 100644
> index 0000000..625e2d8
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0010-MIPS64-Default-to-N64-ABI.patch
> @@ -0,0 +1,54 @@
> +From 4fad4433c96bc9d0d9d124f9674fb3389f6f426e Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:23:08 +0400
> +Subject: [PATCH] MIPS64: Default to N64 ABI
> +
> +MIPS64 defaults to n32 ABI, this patch makes it
> +so that it defaults to N64 ABI
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [OE config specific]
> +---
> + gcc/config.gcc | 10 +++++-----
> + 1 file changed, 5 insertions(+), 5 deletions(-)
> +
> +diff --git a/gcc/config.gcc b/gcc/config.gcc
> +index cf1a87e2efd..37c4221a39f 100644
> +--- a/gcc/config.gcc
> ++++ b/gcc/config.gcc
> +@@ -2511,29 +2511,29 @@ mips*-*-linux*)				# Linux MIPS, either endian.
> + 			default_mips_arch=mips32
> + 			;;
> + 		mips64el-st-linux-gnu)
> +-			default_mips_abi=n32
> ++			default_mips_abi=64
> + 			tm_file="${tm_file} mips/st.h"
> + 			tmake_file="${tmake_file} mips/t-st"
> + 			enable_mips_multilibs="yes"
> + 			;;
> + 		mips64octeon*-*-linux*)
> +-			default_mips_abi=n32
> ++			default_mips_abi=64
> + 			tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
> + 			target_cpu_default=MASK_SOFT_FLOAT_ABI
> + 			enable_mips_multilibs="yes"
> + 			;;
> + 		mipsisa64r6*-*-linux*)
> +-			default_mips_abi=n32
> ++			default_mips_abi=64
> + 			default_mips_arch=mips64r6
> + 			enable_mips_multilibs="yes"
> + 			;;
> + 		mipsisa64r2*-*-linux*)
> +-			default_mips_abi=n32
> ++			default_mips_abi=64
> + 			default_mips_arch=mips64r2
> + 			enable_mips_multilibs="yes"
> + 			;;
> + 		mips64*-*-linux* | mipsisa64*-*-linux*)
> +-			default_mips_abi=n32
> ++			default_mips_abi=64
> + 			enable_mips_multilibs="yes"
> + 			;;
> + 	esac
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
> new file mode 100644
> index 0000000..e357976
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0011-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch
> @@ -0,0 +1,243 @@
> +From 8fc016a53c22c19feccbfa13ebdf19090dc67058 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:24:50 +0400
> +Subject: [PATCH] Define GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
> + relative to SYSTEMLIBS_DIR
> +
> +This patch defines GLIBC_DYNAMIC_LINKER and UCLIBC_DYNAMIC_LINKER
> +relative to SYSTEMLIBS_DIR which can be set in generated headers
> +This breaks the assumption of hardcoded multilib in gcc
> +Change is only for the supported architectures in OE including
> +SH, sparc, alpha for possible future support (if any)
> +
> +Removes the do_headerfix task in metadata
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Inappropriate [OE configuration]
> +---
> + gcc/config/alpha/linux-elf.h |  4 ++--
> + gcc/config/arm/linux-eabi.h  |  4 ++--
> + gcc/config/arm/linux-elf.h   |  2 +-
> + gcc/config/i386/linux.h      |  2 +-
> + gcc/config/i386/linux64.h    |  6 +++---
> + gcc/config/linux.h           |  8 ++++----
> + gcc/config/mips/linux.h      | 12 ++++++------
> + gcc/config/riscv/linux.h     |  2 +-
> + gcc/config/rs6000/linux64.h  | 15 +++++----------
> + gcc/config/sh/linux.h        |  2 +-
> + gcc/config/sparc/linux.h     |  2 +-
> + gcc/config/sparc/linux64.h   |  4 ++--
> + 12 files changed, 29 insertions(+), 34 deletions(-)
> +
> +diff --git a/gcc/config/alpha/linux-elf.h b/gcc/config/alpha/linux-elf.h
> +index e25fcac3c59..01aca0c6542 100644
> +--- a/gcc/config/alpha/linux-elf.h
> ++++ b/gcc/config/alpha/linux-elf.h
> +@@ -23,8 +23,8 @@ along with GCC; see the file COPYING3.  If not see
> + #define EXTRA_SPECS \
> + { "elf_dynamic_linker", ELF_DYNAMIC_LINKER },
> + 
> +-#define GLIBC_DYNAMIC_LINKER	"/lib/ld-linux.so.2"
> +-#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
> ++#define GLIBC_DYNAMIC_LINKER	SYSTEMLIBS_DIR "ld-linux.so.2"
> ++#define UCLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-uClibc.so.0"
> + #if DEFAULT_LIBC == LIBC_UCLIBC
> + #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
> + #elif DEFAULT_LIBC == LIBC_GLIBC
> +diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
> +index 5bdcfa0c5d3..0c0332f317f 100644
> +--- a/gcc/config/arm/linux-eabi.h
> ++++ b/gcc/config/arm/linux-eabi.h
> +@@ -65,8 +65,8 @@
> +    GLIBC_DYNAMIC_LINKER_DEFAULT and TARGET_DEFAULT_FLOAT_ABI.  */
> + 
> + #undef  GLIBC_DYNAMIC_LINKER
> +-#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT "/lib/ld-linux.so.3"
> +-#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT "/lib/ld-linux-armhf.so.3"
> ++#define GLIBC_DYNAMIC_LINKER_SOFT_FLOAT SYSTEMLIBS_DIR "ld-linux.so.3"
> ++#define GLIBC_DYNAMIC_LINKER_HARD_FLOAT SYSTEMLIBS_DIR "ld-linux-armhf.so.3"
> + #define GLIBC_DYNAMIC_LINKER_DEFAULT GLIBC_DYNAMIC_LINKER_SOFT_FLOAT
> + 
> + #define GLIBC_DYNAMIC_LINKER \
> +diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h
> +index 0ec3aa53189..abfa9566d74 100644
> +--- a/gcc/config/arm/linux-elf.h
> ++++ b/gcc/config/arm/linux-elf.h
> +@@ -60,7 +60,7 @@
> + 
> + #define LIBGCC_SPEC "%{mfloat-abi=soft*:-lfloat} -lgcc"
> + 
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> + 
> + #define LINUX_TARGET_LINK_SPEC  "%{h*} \
> +    %{static:-Bstatic} \
> +diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h
> +index 9f823f125ed..e0390b7d5e3 100644
> +--- a/gcc/config/i386/linux.h
> ++++ b/gcc/config/i386/linux.h
> +@@ -20,7 +20,7 @@ along with GCC; see the file COPYING3.  If not see
> + <http://www.gnu.org/licenses/>.  */
> + 
> + #define GNU_USER_LINK_EMULATION "elf_i386"
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> + 
> + #undef MUSL_DYNAMIC_LINKER
> + #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-i386.so.1"
> +diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h
> +index 6cb68d1ccfa..7de09ec857c 100644
> +--- a/gcc/config/i386/linux64.h
> ++++ b/gcc/config/i386/linux64.h
> +@@ -27,9 +27,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> + #define GNU_USER_LINK_EMULATION64 "elf_x86_64"
> + #define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64"
> + 
> +-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
> +-#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
> +-#define GLIBC_DYNAMIC_LINKERX32 "/libx32/ld-linux-x32.so.2"
> ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux-x86-64.so.2"
> ++#define GLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ld-linux-x32.so.2"
> + 
> + #undef MUSL_DYNAMIC_LINKER32
> + #define MUSL_DYNAMIC_LINKER32 "/lib/ld-musl-i386.so.1"
> +diff --git a/gcc/config/linux.h b/gcc/config/linux.h
> +index 95654bcdb5a..0c1a8118a26 100644
> +--- a/gcc/config/linux.h
> ++++ b/gcc/config/linux.h
> +@@ -94,10 +94,10 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> +    GLIBC_DYNAMIC_LINKER must be defined for each target using them, or
> +    GLIBC_DYNAMIC_LINKER32 and GLIBC_DYNAMIC_LINKER64 for targets
> +    supporting both 32-bit and 64-bit compilation.  */
> +-#define UCLIBC_DYNAMIC_LINKER "/lib/ld-uClibc.so.0"
> +-#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
> +-#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
> +-#define UCLIBC_DYNAMIC_LINKERX32 "/lib/ldx32-uClibc.so.0"
> ++#define UCLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-uClibc.so.0"
> ++#define UCLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-uClibc.so.0"
> ++#define UCLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld64-uClibc.so.0"
> ++#define UCLIBC_DYNAMIC_LINKERX32 SYSTEMLIBS_DIR "ldx32-uClibc.so.0"
> + #define BIONIC_DYNAMIC_LINKER "/system/bin/linker"
> + #define BIONIC_DYNAMIC_LINKER32 "/system/bin/linker"
> + #define BIONIC_DYNAMIC_LINKER64 "/system/bin/linker64"
> +diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h
> +index 54446e58e5f..4786ee304c1 100644
> +--- a/gcc/config/mips/linux.h
> ++++ b/gcc/config/mips/linux.h
> +@@ -22,20 +22,20 @@ along with GCC; see the file COPYING3.  If not see
> + #define GNU_USER_LINK_EMULATIONN32 "elf32%{EB:b}%{EL:l}tsmipn32"
> + 
> + #define GLIBC_DYNAMIC_LINKER32 \
> +-  "%{mnan=2008:/lib/ld-linux-mipsn8.so.1;:/lib/ld.so.1}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> + #define GLIBC_DYNAMIC_LINKER64 \
> +-  "%{mnan=2008:/lib64/ld-linux-mipsn8.so.1;:/lib64/ld.so.1}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> + #define GLIBC_DYNAMIC_LINKERN32 \
> +-  "%{mnan=2008:/lib32/ld-linux-mipsn8.so.1;:/lib32/ld.so.1}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-linux-mipsn8.so.1;:" SYSTEMLIBS_DIR "ld.so.1}"
> + 
> + #undef UCLIBC_DYNAMIC_LINKER32
> + #define UCLIBC_DYNAMIC_LINKER32 \
> +-  "%{mnan=2008:/lib/ld-uClibc-mipsn8.so.0;:/lib/ld-uClibc.so.0}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
> + #undef UCLIBC_DYNAMIC_LINKER64
> + #define UCLIBC_DYNAMIC_LINKER64 \
> +-  "%{mnan=2008:/lib/ld64-uClibc-mipsn8.so.0;:/lib/ld64-uClibc.so.0}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld64-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld64-uClibc.so.0}"
> + #define UCLIBC_DYNAMIC_LINKERN32 \
> +-  "%{mnan=2008:/lib32/ld-uClibc-mipsn8.so.0;:/lib32/ld-uClibc.so.0}"
> ++  "%{mnan=2008:" SYSTEMLIBS_DIR "ld-uClibc-mipsn8.so.0;:" SYSTEMLIBS_DIR "ld-uClibc.so.0}"
> + 
> + #undef MUSL_DYNAMIC_LINKER32
> + #define MUSL_DYNAMIC_LINKER32 \
> +diff --git a/gcc/config/riscv/linux.h b/gcc/config/riscv/linux.h
> +index 4afef7c228c..01997330741 100644
> +--- a/gcc/config/riscv/linux.h
> ++++ b/gcc/config/riscv/linux.h
> +@@ -22,7 +22,7 @@ along with GCC; see the file COPYING3.  If not see
> +     GNU_USER_TARGET_OS_CPP_BUILTINS();				\
> +   } while (0)
> + 
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux-riscv" XLEN_SPEC "-" ABI_SPEC ".so.1"
> + 
> + #define MUSL_ABI_SUFFIX \
> +   "%{mabi=ilp32:-sf}" \
> +diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
> +index 34776c8421e..967c1c43c63 100644
> +--- a/gcc/config/rs6000/linux64.h
> ++++ b/gcc/config/rs6000/linux64.h
> +@@ -419,24 +419,19 @@ extern int dot_symbols;
> + #undef	LINK_OS_DEFAULT_SPEC
> + #define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
> + 
> +-#define GLIBC_DYNAMIC_LINKER32 "%(dynamic_linker_prefix)/lib/ld.so.1"
> +-
> ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld.so.1"
> + #ifdef LINUX64_DEFAULT_ABI_ELFv2
> +-#define GLIBC_DYNAMIC_LINKER64 \
> +-"%{mabi=elfv1:%(dynamic_linker_prefix)/lib64/ld64.so.1;" \
> +-":%(dynamic_linker_prefix)/lib64/ld64.so.2}"
> ++#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv1:" SYSTEMLIBS_DIR "ld64.so.1;:" SYSTEMLIBS_DIR "ld64.so.2}"
> + #else
> +-#define GLIBC_DYNAMIC_LINKER64 \
> +-"%{mabi=elfv2:%(dynamic_linker_prefix)/lib64/ld64.so.2;" \
> +-":%(dynamic_linker_prefix)/lib64/ld64.so.1}"
> ++#define GLIBC_DYNAMIC_LINKER64 "%{mabi=elfv2:" SYSTEMLIBS_DIR "ld64.so.2;:" SYSTEMLIBS_DIR "ld64.so.1}"
> + #endif
> + 
> + #undef MUSL_DYNAMIC_LINKER32
> + #define MUSL_DYNAMIC_LINKER32 \
> +-  "/lib/ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> ++  SYSTEMLIBS_DIR "ld-musl-powerpc" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> + #undef MUSL_DYNAMIC_LINKER64
> + #define MUSL_DYNAMIC_LINKER64 \
> +-  "/lib/ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> ++  SYSTEMLIBS_DIR "ld-musl-powerpc64" MUSL_DYNAMIC_LINKER_E "%{msoft-float:-sf}.so.1"
> + 
> + #undef  DEFAULT_ASM_ENDIAN
> + #if (TARGET_DEFAULT & MASK_LITTLE_ENDIAN)
> +diff --git a/gcc/config/sh/linux.h b/gcc/config/sh/linux.h
> +index c1d0441d488..81373eb8336 100644
> +--- a/gcc/config/sh/linux.h
> ++++ b/gcc/config/sh/linux.h
> +@@ -64,7 +64,7 @@ along with GCC; see the file COPYING3.  If not see
> +   "/lib/ld-musl-sh" MUSL_DYNAMIC_LINKER_E MUSL_DYNAMIC_LINKER_FP \
> +   "%{mfdpic:-fdpic}.so.1"
> + 
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> + 
> + #undef SUBTARGET_LINK_EMUL_SUFFIX
> + #define SUBTARGET_LINK_EMUL_SUFFIX "%{mfdpic:_fd;:_linux}"
> +diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h
> +index 81201e67a2f..8b6fc577594 100644
> +--- a/gcc/config/sparc/linux.h
> ++++ b/gcc/config/sparc/linux.h
> +@@ -84,7 +84,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv);
> +    When the -shared link option is used a final link is not being
> +    done.  */
> + 
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER SYSTEMLIBS_DIR "ld-linux.so.2"
> + 
> + #undef  LINK_SPEC
> + #define LINK_SPEC "-m elf32_sparc %{shared:-shared} \
> +diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h
> +index a1a0efd8f28..85d1084afc2 100644
> +--- a/gcc/config/sparc/linux64.h
> ++++ b/gcc/config/sparc/linux64.h
> +@@ -84,8 +84,8 @@ along with GCC; see the file COPYING3.  If not see
> +    When the -shared link option is used a final link is not being
> +    done.  */
> + 
> +-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
> +-#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER32 SYSTEMLIBS_DIR "ld-linux.so.2"
> ++#define GLIBC_DYNAMIC_LINKER64 SYSTEMLIBS_DIR "ld-linux.so.2"
> + 
> + #ifdef SPARC_BI_ARCH
> + 
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
> new file mode 100644
> index 0000000..88e1715
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0012-gcc-Fix-argument-list-too-long-error.patch
> @@ -0,0 +1,41 @@
> +From a22d1264049d29b90663cf5667049ae6f9b7a5ce Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:26:37 +0400
> +Subject: [PATCH] gcc: Fix argument list too long error.
> +
> +There would be an "Argument list too long" error when the
> +build directory is longer than 200, this is caused by:
> +
> +headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\012' | sort -u`
> +
> +The PLUGIN_HEADERS is too long before sort, so the "echo" can't handle
> +it, use the $(sort list) of GNU make which can handle the too long list
> +would fix the problem, the header would be short enough after sorted.
> +The "tr ' ' '\012'" was used for translating the space to "\n", the
> +$(sort list) doesn't need this.
> +
> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +RP: gcc then added *.h and *.def additions to this list, breaking the original
> +fix. Add the sort to the original gcc code, leaving the tr+sort to fix the original
> +issue but include the new files too as reported by Zhuang <qiuguang.zqg@alibaba-inc.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/Makefile.in | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> +index a67d2cc18d6..480c9366418 100644
> +--- a/gcc/Makefile.in
> ++++ b/gcc/Makefile.in
> +@@ -3606,7 +3606,7 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
> + # We keep the directory structure for files in config or c-family and .def
> + # files. All other files are flattened to a single directory.
> + 	$(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
> +-	headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
> ++	headers=`echo $(sort $(PLUGIN_HEADERS)) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
> + 	srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
> + 	for file in $$headers; do \
> + 	  if [ -f $$file ] ; then \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
> new file mode 100644
> index 0000000..207cdb5
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0013-Disable-sdt.patch
> @@ -0,0 +1,110 @@
> +From fa47586935a18ecfc2ad5586802e326e21741b7b Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:28:10 +0400
> +Subject: [PATCH] Disable sdt.
> +
> +We don't list dtrace in DEPENDS so we shouldn't be depending on this header.
> +It may or may not exist from preivous builds though. To be determinstic, disable
> +sdt.h usage always. This avoids build failures if the header is removed after configure
> +but before libgcc is compiled for example.
> +
> +RP 2012/8/7
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Disable sdt for libstdc++-v3.
> +
> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> +
> +Upstream-Status: Inappropriate [hack]
> +---
> + gcc/configure             | 12 ++++++------
> + gcc/configure.ac          | 18 +++++++++---------
> + libstdc++-v3/configure    |  6 +++---
> + libstdc++-v3/configure.ac |  2 +-
> + 4 files changed, 19 insertions(+), 19 deletions(-)
> +
> +diff --git a/gcc/configure b/gcc/configure
> +index b26e8fc7fee..6080f86145e 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -29789,12 +29789,12 @@ fi
> + { $as_echo "$as_me:${as_lineno-$LINENO}: checking sys/sdt.h in the target C library" >&5
> + $as_echo_n "checking sys/sdt.h in the target C library... " >&6; }
> + have_sys_sdt_h=no
> +-if test -f $target_header_dir/sys/sdt.h; then
> +-  have_sys_sdt_h=yes
> +-
> +-$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> +-
> +-fi
> ++#if test -f $target_header_dir/sys/sdt.h; then
> ++#  have_sys_sdt_h=yes
> ++#
> ++#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> ++#
> ++#fi
> + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_sys_sdt_h" >&5
> + $as_echo "$have_sys_sdt_h" >&6; }
> + 
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 26fa46802c7..42be5252778 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -6190,15 +6190,15 @@ fi
> + AC_SUBST([enable_default_ssp])
> + 
> + # Test for <sys/sdt.h> on the target.
> +-GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
> +-AC_MSG_CHECKING(sys/sdt.h in the target C library)
> +-have_sys_sdt_h=no
> +-if test -f $target_header_dir/sys/sdt.h; then
> +-  have_sys_sdt_h=yes
> +-  AC_DEFINE(HAVE_SYS_SDT_H, 1,
> +-            [Define if your target C library provides sys/sdt.h])
> +-fi
> +-AC_MSG_RESULT($have_sys_sdt_h)
> ++#GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
> ++#AC_MSG_CHECKING(sys/sdt.h in the target C library)
> ++#have_sys_sdt_h=no
> ++#if test -f $target_header_dir/sys/sdt.h; then
> ++#  have_sys_sdt_h=yes
> ++#  AC_DEFINE(HAVE_SYS_SDT_H, 1,
> ++#            [Define if your target C library provides sys/sdt.h])
> ++#fi
> ++#AC_MSG_RESULT($have_sys_sdt_h)
> + 
> + # Check if TFmode long double should be used by default or not.
> + # Some glibc targets used DFmode long double, but with glibc 2.4
> +diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
> +index 9f9c5a2419a..71ed13b815b 100755
> +--- a/libstdc++-v3/configure
> ++++ b/libstdc++-v3/configure
> +@@ -22615,11 +22615,11 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
> + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
> + ac_compiler_gnu=$ac_cv_c_compiler_gnu
> + 
> +-  if test $glibcxx_cv_sys_sdt_h = yes; then
> ++#  if test $glibcxx_cv_sys_sdt_h = yes; then
> + 
> +-$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> ++#$as_echo "#define HAVE_SYS_SDT_H 1" >>confdefs.h
> + 
> +-  fi
> ++#  fi
> +   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_cv_sys_sdt_h" >&5
> + $as_echo "$glibcxx_cv_sys_sdt_h" >&6; }
> + 
> +diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac
> +index 699e55fd829..5c7a7bda439 100644
> +--- a/libstdc++-v3/configure.ac
> ++++ b/libstdc++-v3/configure.ac
> +@@ -241,7 +241,7 @@ GLIBCXX_CHECK_SC_NPROCESSORS_ONLN
> + GLIBCXX_CHECK_SC_NPROC_ONLN
> + GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP
> + GLIBCXX_CHECK_SYSCTL_HW_NCPU
> +-GLIBCXX_CHECK_SDT_H
> ++#GLIBCXX_CHECK_SDT_H
> + 
> + # Check for available headers.
> + AC_CHECK_HEADERS([endian.h execinfo.h float.h fp.h ieeefp.h inttypes.h \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
> new file mode 100644
> index 0000000..f4e70c3
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0014-libtool.patch
> @@ -0,0 +1,39 @@
> +From 6ecd478881468934444ff85611fd43f7033b1e81 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:29:11 +0400
> +Subject: [PATCH] libtool
> +
> +libstdc++ from gcc-runtime gets created with -rpath=/usr/lib/../lib for qemux86-64
> +when running on am x86_64 build host.
> +
> +This patch stops this speading to libdir in the libstdc++.la file within libtool.
> +Arguably, it shouldn't be passing this into libtool in the first place but
> +for now this resolves the nastiest problems this causes.
> +
> +func_normal_abspath would resolve an empty path to `pwd` so we need
> +to filter the zero case.
> +
> +RP 2012/8/24
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + ltmain.sh | 4 ++++
> + 1 file changed, 4 insertions(+)
> +
> +diff --git a/ltmain.sh b/ltmain.sh
> +index 70990740b6c..ee938056bef 100644
> +--- a/ltmain.sh
> ++++ b/ltmain.sh
> +@@ -6359,6 +6359,10 @@ func_mode_link ()
> + 	func_warning "ignoring multiple \`-rpath's for a libtool library"
> + 
> +       install_libdir="$1"
> ++      if test -n "$install_libdir"; then
> ++	func_normal_abspath "$install_libdir"
> ++	install_libdir=$func_normal_abspath_result
> ++      fi
> + 
> +       oldlibs=
> +       if test -z "$rpath"; then
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
> new file mode 100644
> index 0000000..bc2674a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0015-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch
> @@ -0,0 +1,40 @@
> +From de4427fa49c07dc651ee6ceaf5c5078700ca3b08 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:30:32 +0400
> +Subject: [PATCH] gcc: armv4: pass fix-v4bx to linker to support EABI.
> +
> +The LINK_SPEC for linux gets overwritten by linux-eabi.h which
> +means the value of TARGET_FIX_V4BX_SPEC gets lost and as a result
> +the option is not passed to linker when chosing march=armv4
> +This patch redefines this in linux-eabi.h and reinserts it
> +for eabi defaulting toolchains.
> +
> +We might want to send it upstream.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Upstream-Status: Pending
> +---
> + gcc/config/arm/linux-eabi.h | 6 +++++-
> + 1 file changed, 5 insertions(+), 1 deletion(-)
> +
> +diff --git a/gcc/config/arm/linux-eabi.h b/gcc/config/arm/linux-eabi.h
> +index 0c0332f317f..7b3769e8459 100644
> +--- a/gcc/config/arm/linux-eabi.h
> ++++ b/gcc/config/arm/linux-eabi.h
> +@@ -91,10 +91,14 @@
> + #define MUSL_DYNAMIC_LINKER \
> +   "/lib/ld-musl-arm" MUSL_DYNAMIC_LINKER_E "%{mfloat-abi=hard:hf}%{mfdpic:-fdpic}.so.1"
> + 
> ++/* For armv4 we pass --fix-v4bx to linker to support EABI */
> ++#undef TARGET_FIX_V4BX_SPEC
> ++#define TARGET_FIX_V4BX_SPEC "%{mcpu=arm8|mcpu=arm810|mcpu=strongarm*|march=armv4: --fix-v4bx}"
> ++
> + /* At this point, bpabi.h will have clobbered LINK_SPEC.  We want to
> +    use the GNU/Linux version, not the generic BPABI version.  */
> + #undef  LINK_SPEC
> +-#define LINK_SPEC EABI_LINK_SPEC					\
> ++#define LINK_SPEC TARGET_FIX_V4BX_SPEC EABI_LINK_SPEC			\
> +   LINUX_OR_ANDROID_LD (LINUX_TARGET_LINK_SPEC,				\
> + 		       LINUX_TARGET_LINK_SPEC " " ANDROID_LINK_SPEC)
> + 
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
> new file mode 100644
> index 0000000..1dc4bb8
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
> @@ -0,0 +1,99 @@
> +From 6b363c2c1c089ee900efa6013aefba1003840a37 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 29 Mar 2013 09:33:04 +0400
> +Subject: [PATCH] Use the multilib config files from ${B} instead of using the
> + ones from ${S}
> +
> +Use the multilib config files from ${B} instead of using the ones from ${S}
> +so that the source can be shared between gcc-cross-initial,
> +gcc-cross-intermediate, gcc-cross, gcc-runtime, and also the sdk build.
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
> +
> +Upstream-Status: Inappropriate [configuration]
> +---
> + gcc/configure    | 22 ++++++++++++++++++----
> + gcc/configure.ac | 22 ++++++++++++++++++----
> + 2 files changed, 36 insertions(+), 8 deletions(-)
> +
> +diff --git a/gcc/configure b/gcc/configure
> +index 6080f86145e..825a9652329 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -12685,10 +12685,20 @@ done
> + tmake_file_=
> + for f in ${tmake_file}
> + do
> +-	if test -f ${srcdir}/config/$f
> +-	then
> +-		tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> +-	fi
> ++  case $f in
> ++    */t-linux64 )
> ++       if test -f ./config/$f
> ++       then
> ++         tmake_file_="${tmake_file_} ./config/$f"
> ++       fi
> ++       ;;
> ++    * )
> ++       if test -f ${srcdir}/config/$f
> ++       then
> ++         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> ++       fi
> ++       ;;
> ++  esac
> + done
> + tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
> + 
> +@@ -12699,6 +12709,10 @@ tm_file_list="options.h"
> + tm_include_list="options.h insn-constants.h"
> + for f in $tm_file; do
> +   case $f in
> ++    */linux64.h )
> ++       tm_file_list="${tm_file_list} ./config/$f"
> ++       tm_include_list="${tm_include_list} ./config/$f"
> ++       ;;
> +     ./* )
> +        f=`echo $f | sed 's/^..//'`
> +        tm_file_list="${tm_file_list} $f"
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 42be5252778..6099eb3251f 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -2118,10 +2118,20 @@ done
> + tmake_file_=
> + for f in ${tmake_file}
> + do
> +-	if test -f ${srcdir}/config/$f
> +-	then
> +-		tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> +-	fi
> ++  case $f in
> ++    */t-linux64 )
> ++       if test -f ./config/$f
> ++       then
> ++         tmake_file_="${tmake_file_} ./config/$f"
> ++       fi
> ++       ;;
> ++    * )
> ++       if test -f ${srcdir}/config/$f
> ++       then
> ++         tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
> ++       fi
> ++       ;;
> ++  esac
> + done
> + tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
> + 
> +@@ -2132,6 +2142,10 @@ tm_file_list="options.h"
> + tm_include_list="options.h insn-constants.h"
> + for f in $tm_file; do
> +   case $f in
> ++    */linux64.h )
> ++       tm_file_list="${tm_file_list} ./config/$f"
> ++       tm_include_list="${tm_include_list} ./config/$f"
> ++       ;;
> +     ./* )
> +        f=`echo $f | sed 's/^..//'`
> +        tm_file_list="${tm_file_list} $f"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
> new file mode 100644
> index 0000000..05f1284
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0017-Avoid-using-libdir-from-.la-which-usually-points-to-.patch
> @@ -0,0 +1,28 @@
> +From 08752c2f1d21553301bee5757c453c6a36cbe03c Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 20 Feb 2015 09:39:38 +0000
> +Subject: [PATCH] Avoid using libdir from .la which usually points to a host
> + path
> +
> +Upstream-Status: Inappropriate [embedded specific]
> +
> +Signed-off-by: Jonathan Liu <net147@gmail.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + ltmain.sh | 3 +++
> + 1 file changed, 3 insertions(+)
> +
> +diff --git a/ltmain.sh b/ltmain.sh
> +index ee938056bef..9ebc7e3d1e0 100644
> +--- a/ltmain.sh
> ++++ b/ltmain.sh
> +@@ -5628,6 +5628,9 @@ func_mode_link ()
> + 	    absdir="$abs_ladir"
> + 	    libdir="$abs_ladir"
> + 	  else
> ++	    # Instead of using libdir from .la which usually points to a host path,
> ++	    # use the path the .la is contained in.
> ++	    libdir="$abs_ladir"
> + 	    dir="$libdir"
> + 	    absdir="$libdir"
> + 	  fi
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
> new file mode 100644
> index 0000000..886a122
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0018-export-CPP.patch
> @@ -0,0 +1,50 @@
> +From 5c3d66378c7ff60ca11a875aa4aa6f8a8529d43a Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 20 Feb 2015 09:40:59 +0000
> +Subject: [PATCH] export CPP
> +
> +The OE environment sets and exports CPP as being the target gcc. When
> +building gcc-cross-canadian for a mingw targetted sdk, the following can be found
> +in build.x86_64-pokysdk-mingw32.i586-poky-linux/build-x86_64-linux/libiberty/config.log:
> +
> +configure:3641: checking for _FILE_OFFSET_BITS value needed for large files
> +configure:3666: gcc  -c -isystem/media/build1/poky/build/tmp/sysroots/x86_64-linux/usr/include -O2 -pipe  conftest.c >&5
> +configure:3666: $? = 0
> +configure:3698: result: no
> +configure:3786: checking how to run the C preprocessor
> +configure:3856: result: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32
> +configure:3876: x86_64-pokysdk-mingw32-gcc -E --sysroot=/media/build1/poky/build/tmp/sysroots/x86_64-nativesdk-mingw32-pokysdk-mingw32 conftest.c
> +configure:3876: $? = 0
> +
> +Note this is a *build* target (in build-x86_64-linux) so it should be
> +using the host "gcc", not x86_64-pokysdk-mingw32-gcc. Since the mingw32
> +headers are very different, using the wrong cpp is a real problem. It is leaking
> +into configure through the CPP variable. Ultimately this leads to build
> +failures related to not being able to include a process.h file for pem-unix.c.
> +
> +The fix is to ensure we export a sane CPP value into the build
> +environment when using build targets. We could define a CPP_FOR_BUILD value which may be
> +the version which needs to be upstreamed but for now, this fix is good enough to
> +avoid the problem.
> +
> +RP 22/08/2013
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + Makefile.in | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/Makefile.in b/Makefile.in
> +index 36e369df6e7..c717903bb13 100644
> +--- a/Makefile.in
> ++++ b/Makefile.in
> +@@ -149,6 +149,7 @@ BUILD_EXPORTS = \
> + 	AR="$(AR_FOR_BUILD)"; export AR; \
> + 	AS="$(AS_FOR_BUILD)"; export AS; \
> + 	CC="$(CC_FOR_BUILD)"; export CC; \
> ++	CPP="$(CC_FOR_BUILD) -E"; export CPP; \
> + 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> + 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> + 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
> new file mode 100644
> index 0000000..2797b2c
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0019-Ensure-target-gcc-headers-can-be-included.patch
> @@ -0,0 +1,57 @@
> +From 378b752c5d9a3dba4e58cdadf8b4b4f34ea99a76 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 20 Feb 2015 10:25:11 +0000
> +Subject: [PATCH] Ensure target gcc headers can be included
> +
> +There are a few headers installed as part of the OpenEmbedded
> +gcc-runtime target (omp.h, ssp/*.h). Being installed from a recipe
> +built for the target architecture, these are within the target
> +sysroot and not cross/nativesdk; thus they weren't able to be
> +found by gcc with the existing search paths. Add support for
> +picking up these headers under the sysroot supplied on the gcc
> +command line in order to resolve this.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/Makefile.in  | 2 ++
> + gcc/cppdefault.c | 4 ++++
> + 2 files changed, 6 insertions(+)
> +
> +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> +index 480c9366418..011c7ac2db6 100644
> +--- a/gcc/Makefile.in
> ++++ b/gcc/Makefile.in
> +@@ -618,6 +618,7 @@ libexecdir = @libexecdir@
> + 
> + # Directory in which the compiler finds libraries etc.
> + libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
> ++libsubdir_target = $(target_noncanonical)/$(version)
> + # Directory in which the compiler finds executables
> + libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
> + # Directory in which all plugin resources are installed
> +@@ -2946,6 +2947,7 @@ CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\"
> + 
> + PREPROCESSOR_DEFINES = \
> +   -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
> ++  -DGCC_INCLUDE_SUBDIR_TARGET=\"$(libsubdir_target)/include\" \
> +   -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
> +   -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
> +   -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \
> +diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
> +index af38cc494ea..2f43b88a0c3 100644
> +--- a/gcc/cppdefault.c
> ++++ b/gcc/cppdefault.c
> +@@ -59,6 +59,10 @@ const struct default_include cpp_include_defaults[]
> +     /* This is the dir for gcc's private headers.  */
> +     { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> + #endif
> ++#ifdef GCC_INCLUDE_SUBDIR_TARGET
> ++    /* This is the dir for gcc's private headers under the specified sysroot.  */
> ++    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
> ++#endif
> + #ifdef LOCAL_INCLUDE_DIR
> +     /* /usr/local/include comes before the fixincluded header files.  */
> +     { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
> new file mode 100644
> index 0000000..c3baf8b
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0020-Don-t-search-host-directory-during-relink-if-inst_pr.patch
> @@ -0,0 +1,35 @@
> +From 870e805d705d99d9b9d7dbd09727f9c1d2ad9c1d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 3 Mar 2015 08:21:19 +0000
> +Subject: [PATCH] Don't search host directory during "relink" if $inst_prefix
> + is provided
> +
> +http://lists.gnu.org/archive/html/libtool-patches/2011-01/msg00026.html
> +
> +Upstream-Status: Submitted
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + ltmain.sh | 5 +++--
> + 1 file changed, 3 insertions(+), 2 deletions(-)
> +
> +diff --git a/ltmain.sh b/ltmain.sh
> +index 9ebc7e3d1e0..7ea79fa8be6 100644
> +--- a/ltmain.sh
> ++++ b/ltmain.sh
> +@@ -6004,12 +6004,13 @@ func_mode_link ()
> + 	      fi
> + 	    else
> + 	      # We cannot seem to hardcode it, guess we'll fake it.
> ++	      # Default if $libdir is not relative to the prefix:
> + 	      add_dir="-L$libdir"
> +-	      # Try looking first in the location we're being installed to.
> ++
> + 	      if test -n "$inst_prefix_dir"; then
> + 		case $libdir in
> + 		  [\\/]*)
> +-		    add_dir="$add_dir -L$inst_prefix_dir$libdir"
> ++		    add_dir="-L$inst_prefix_dir$libdir"
> + 		    ;;
> + 		esac
> + 	      fi
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
> new file mode 100644
> index 0000000..abee486
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0021-Use-SYSTEMLIBS_DIR-replacement-instead-of-hardcoding.patch
> @@ -0,0 +1,26 @@
> +From aba42de763a619355471efd1573561b0cbf51162 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 28 Apr 2015 23:15:27 -0700
> +Subject: [PATCH] Use SYSTEMLIBS_DIR replacement instead of hardcoding
> + base_libdir
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/aarch64/aarch64-linux.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
> +index e587e2e9ad6..ddc62895693 100644
> +--- a/gcc/config/aarch64/aarch64-linux.h
> ++++ b/gcc/config/aarch64/aarch64-linux.h
> +@@ -21,7 +21,7 @@
> + #ifndef GCC_AARCH64_LINUX_H
> + #define GCC_AARCH64_LINUX_H
> + 
> +-#define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> ++#define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> + 
> + #undef MUSL_DYNAMIC_LINKER
> + #define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
> new file mode 100644
> index 0000000..c55b66d
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0022-aarch64-Add-support-for-musl-ldso.patch
> @@ -0,0 +1,25 @@
> +From d63820a78d92f302410358293546f01c7ad17bd8 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 28 Apr 2015 23:18:39 -0700
> +Subject: [PATCH] aarch64: Add support for musl ldso
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/aarch64/aarch64-linux.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/gcc/config/aarch64/aarch64-linux.h b/gcc/config/aarch64/aarch64-linux.h
> +index ddc62895693..b301825313a 100644
> +--- a/gcc/config/aarch64/aarch64-linux.h
> ++++ b/gcc/config/aarch64/aarch64-linux.h
> +@@ -24,7 +24,7 @@
> + #define GLIBC_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-linux-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> + 
> + #undef MUSL_DYNAMIC_LINKER
> +-#define MUSL_DYNAMIC_LINKER "/lib/ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> ++#define MUSL_DYNAMIC_LINKER  SYSTEMLIBS_DIR "ld-musl-aarch64%{mbig-endian:_be}%{mabi=ilp32:_ilp32}.so.1"
> + 
> + #undef  ASAN_CC1_SPEC
> + #define ASAN_CC1_SPEC "%{%:sanitize(address):-funwind-tables}"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
> new file mode 100644
> index 0000000..80c4d22
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0023-libcc1-fix-libcc1-s-install-path-and-rpath.patch
> @@ -0,0 +1,51 @@
> +From 3474e16ad4ea8cf4e0e330568e3bc9039e723dce Mon Sep 17 00:00:00 2001
> +From: Robert Yang <liezhi.yang@windriver.com>
> +Date: Sun, 5 Jul 2015 20:25:18 -0700
> +Subject: [PATCH] libcc1: fix libcc1's install path and rpath
> +
> +* Install libcc1.so and libcc1plugin.so into
> +  $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version), as what we
> +  had done to lto-plugin.
> +* Fix bad RPATH iussue:
> +  gcc-5.2.0: package gcc-plugins contains bad RPATH /patht/to/tmp/sysroots/qemux86-64/usr/lib64/../lib64 in file
> + /path/to/gcc/5.2.0-r0/packages-split/gcc-plugins/usr/lib64/gcc/x86_64-poky-linux/5.2.0/plugin/libcc1plugin.so.0.0.0
> + [rpaths]
> +
> +Upstream-Status: Inappropriate [OE configuration]
> +
> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> +---
> + libcc1/Makefile.am | 4 ++--
> + libcc1/Makefile.in | 4 ++--
> + 2 files changed, 4 insertions(+), 4 deletions(-)
> +
> +diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am
> +index c005b0dad4a..ec31d35b7b9 100644
> +--- a/libcc1/Makefile.am
> ++++ b/libcc1/Makefile.am
> +@@ -37,8 +37,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
> + 	    $(Wc)$(libiberty_normal)))
> + libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
> + 
> +-plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
> +-cc1libdir = $(libdir)/$(libsuffix)
> ++cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
> ++plugindir = $(cc1libdir)
> + 
> + if ENABLE_PLUGIN
> + plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
> +diff --git a/libcc1/Makefile.in b/libcc1/Makefile.in
> +index 7104b649026..2103c477468 100644
> +--- a/libcc1/Makefile.in
> ++++ b/libcc1/Makefile.in
> +@@ -393,8 +393,8 @@ libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
> + 	    $(Wc)$(libiberty_normal)))
> + 
> + libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
> +-plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
> +-cc1libdir = $(libdir)/$(libsuffix)
> ++cc1libdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
> ++plugindir = $(cc1libdir)
> + @ENABLE_PLUGIN_TRUE@plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
> + @ENABLE_PLUGIN_TRUE@cc1lib_LTLIBRARIES = libcc1.la
> + shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
> new file mode 100644
> index 0000000..dc3e6da
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0024-handle-sysroot-support-for-nativesdk-gcc.patch
> @@ -0,0 +1,349 @@
> +From 702daf2e9cb97337e0e594fcd435b1b61a917d14 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Mon, 7 Dec 2015 23:39:54 +0000
> +Subject: [PATCH] handle sysroot support for nativesdk-gcc
> +
> +Being able to build a nativesdk gcc is useful, particularly in cases
> +where the host compiler may be of an incompatible version (or a 32
> +bit compiler is needed).
> +
> +Sadly, building nativesdk-gcc is not straight forward. We install
> +nativesdk-gcc into a relocatable location and this means that its
> +library locations can change. "Normal" sysroot support doesn't help
> +in this case since the values of paths like "libdir" change, not just
> +base root directory of the system.
> +
> +In order to handle this we do two things:
> +
> +a) Add %r into spec file markup which can be used for injected paths
> +   such as SYSTEMLIBS_DIR (see gcc_multilib_setup()).
> +b) Add other paths which need relocation into a .gccrelocprefix section
> +   which the relocation code will notice and adjust automatically.
> +
> +Upstream-Status: Inappropriate
> +RP 2015/7/28
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +
> +Added PREFIXVAR and EXEC_PREFIXVAR to support runtime relocation.  Without
> +these as part of the gccrelocprefix the system can't do runtime relocation
> +if the executable is moved.  (These paths were missed in the original
> +implementation.)
> +
> +Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
> +---
> + gcc/c-family/c-opts.c |  4 +--
> + gcc/cppdefault.c      | 63 ++++++++++++++++++++++++++-----------------
> + gcc/cppdefault.h      | 13 ++++-----
> + gcc/gcc.c             | 20 +++++++++-----
> + gcc/incpath.c         | 12 ++++-----
> + gcc/prefix.c          |  6 +++--
> + 6 files changed, 70 insertions(+), 48 deletions(-)
> +
> +diff --git a/gcc/c-family/c-opts.c b/gcc/c-family/c-opts.c
> +index 58ba0948e79..806bbcfb7a5 100644
> +--- a/gcc/c-family/c-opts.c
> ++++ b/gcc/c-family/c-opts.c
> +@@ -1409,8 +1409,8 @@ add_prefixed_path (const char *suffix, incpath_kind chain)
> +   size_t prefix_len, suffix_len;
> + 
> +   suffix_len = strlen (suffix);
> +-  prefix     = iprefix ? iprefix : cpp_GCC_INCLUDE_DIR;
> +-  prefix_len = iprefix ? strlen (iprefix) : cpp_GCC_INCLUDE_DIR_len;
> ++  prefix     = iprefix ? iprefix : GCC_INCLUDE_DIRVAR;
> ++  prefix_len = iprefix ? strlen (iprefix) : strlen(GCC_INCLUDE_DIRVAR) - 7;
> + 
> +   path = (char *) xmalloc (prefix_len + suffix_len + 1);
> +   memcpy (path, prefix, prefix_len);
> +diff --git a/gcc/cppdefault.c b/gcc/cppdefault.c
> +index 2f43b88a0c3..6b6be04686c 100644
> +--- a/gcc/cppdefault.c
> ++++ b/gcc/cppdefault.c
> +@@ -35,6 +35,30 @@
> + # undef CROSS_INCLUDE_DIR
> + #endif
> + 
> ++static char GPLUSPLUS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_INCLUDE_DIR;
> ++char GCC_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GCC_INCLUDE_DIR;
> ++static char GPLUSPLUS_TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_TOOL_INCLUDE_DIR;
> ++static char GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = GPLUSPLUS_BACKWARD_INCLUDE_DIR;
> ++static char STANDARD_STARTFILE_PREFIX_2VAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET;
> ++#ifdef LOCAL_INCLUDE_DIR
> ++static char LOCAL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = LOCAL_INCLUDE_DIR;
> ++#endif
> ++#ifdef PREFIX_INCLUDE_DIR
> ++static char PREFIX_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX_INCLUDE_DIR;
> ++#endif
> ++#ifdef FIXED_INCLUDE_DIR
> ++static char FIXED_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = FIXED_INCLUDE_DIR;
> ++#endif
> ++#ifdef CROSS_INCLUDE_DIR
> ++static char CROSS_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = CROSS_INCLUDE_DIR;
> ++#endif
> ++#ifdef TOOL_INCLUDE_DIR
> ++static char TOOL_INCLUDE_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = TOOL_INCLUDE_DIR;
> ++#endif
> ++#ifdef NATIVE_SYSTEM_HEADER_DIR
> ++static char NATIVE_SYSTEM_HEADER_DIRVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = NATIVE_SYSTEM_HEADER_DIR;
> ++#endif
> ++
> + const struct default_include cpp_include_defaults[]
> + #ifdef INCLUDE_DEFAULTS
> + = INCLUDE_DEFAULTS;
> +@@ -42,38 +66,38 @@ const struct default_include cpp_include_defaults[]
> + = {
> + #ifdef GPLUSPLUS_INCLUDE_DIR
> +     /* Pick up GNU C++ generic include files.  */
> +-    { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1,
> ++    { GPLUSPLUS_INCLUDE_DIRVAR, "G++", 1, 1,
> +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
> + #endif
> + #ifdef GPLUSPLUS_TOOL_INCLUDE_DIR
> +     /* Pick up GNU C++ target-dependent include files.  */
> +-    { GPLUSPLUS_TOOL_INCLUDE_DIR, "G++", 1, 1,
> ++    { GPLUSPLUS_TOOL_INCLUDE_DIRVAR, "G++", 1, 1,
> +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 1 },
> + #endif
> + #ifdef GPLUSPLUS_BACKWARD_INCLUDE_DIR
> +     /* Pick up GNU C++ backward and deprecated include files.  */
> +-    { GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1,
> ++    { GPLUSPLUS_BACKWARD_INCLUDE_DIRVAR, "G++", 1, 1,
> +       GPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT, 0 },
> + #endif
> + #ifdef GCC_INCLUDE_DIR
> +     /* This is the dir for gcc's private headers.  */
> +-    { GCC_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> ++    { GCC_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
> + #endif
> + #ifdef GCC_INCLUDE_SUBDIR_TARGET
> +     /* This is the dir for gcc's private headers under the specified sysroot.  */
> +-    { STANDARD_STARTFILE_PREFIX_2 GCC_INCLUDE_SUBDIR_TARGET, "GCC", 0, 0, 1, 0 },
> ++    { STANDARD_STARTFILE_PREFIX_2VAR, "GCC", 0, 0, 1, 0 },
> + #endif
> + #ifdef LOCAL_INCLUDE_DIR
> +     /* /usr/local/include comes before the fixincluded header files.  */
> +-    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 2 },
> +-    { LOCAL_INCLUDE_DIR, 0, 0, 1, 1, 0 },
> ++    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 2 },
> ++    { LOCAL_INCLUDE_DIRVAR, 0, 0, 1, 1, 0 },
> + #endif
> + #ifdef PREFIX_INCLUDE_DIR
> +-    { PREFIX_INCLUDE_DIR, 0, 0, 1, 0, 0 },
> ++    { PREFIX_INCLUDE_DIRVAR, 0, 0, 1, 0, 0 },
> + #endif
> + #ifdef FIXED_INCLUDE_DIR
> +     /* This is the dir for fixincludes.  */
> +-    { FIXED_INCLUDE_DIR, "GCC", 0, 0, 0,
> ++    { FIXED_INCLUDE_DIRVAR, "GCC", 0, 0, 0,
> +       /* A multilib suffix needs adding if different multilibs use
> + 	 different headers.  */
> + #ifdef SYSROOT_HEADERS_SUFFIX_SPEC
> +@@ -85,33 +109,24 @@ const struct default_include cpp_include_defaults[]
> + #endif
> + #ifdef CROSS_INCLUDE_DIR
> +     /* One place the target system's headers might be.  */
> +-    { CROSS_INCLUDE_DIR, "GCC", 0, 0, 0, 0 },
> ++    { CROSS_INCLUDE_DIRVAR, "GCC", 0, 0, 0, 0 },
> + #endif
> + #ifdef TOOL_INCLUDE_DIR
> +     /* Another place the target system's headers might be.  */
> +-    { TOOL_INCLUDE_DIR, "BINUTILS", 0, 1, 0, 0 },
> ++    { TOOL_INCLUDE_DIRVAR, "BINUTILS", 0, 1, 0, 0 },
> + #endif
> + #ifdef NATIVE_SYSTEM_HEADER_DIR
> +     /* /usr/include comes dead last.  */
> +-    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
> +-    { NATIVE_SYSTEM_HEADER_DIR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
> ++    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 2 },
> ++    { NATIVE_SYSTEM_HEADER_DIRVAR, NATIVE_SYSTEM_HEADER_COMPONENT, 0, 0, 1, 0 },
> + #endif
> +     { 0, 0, 0, 0, 0, 0 }
> +   };
> + #endif /* no INCLUDE_DEFAULTS */
> + 
> +-#ifdef GCC_INCLUDE_DIR
> +-const char cpp_GCC_INCLUDE_DIR[] = GCC_INCLUDE_DIR;
> +-const size_t cpp_GCC_INCLUDE_DIR_len = sizeof GCC_INCLUDE_DIR - 8;
> +-#else
> +-const char cpp_GCC_INCLUDE_DIR[] = "";
> +-const size_t cpp_GCC_INCLUDE_DIR_len = 0;
> +-#endif
> +-
> + /* The configured prefix.  */
> +-const char cpp_PREFIX[] = PREFIX;
> +-const size_t cpp_PREFIX_len = sizeof PREFIX - 1;
> +-const char cpp_EXEC_PREFIX[] = STANDARD_EXEC_PREFIX;
> ++char PREFIXVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX;
> ++char EXEC_PREFIXVAR[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
> + 
> + /* This value is set by cpp_relocated at runtime */
> + const char *gcc_exec_prefix;
> +diff --git a/gcc/cppdefault.h b/gcc/cppdefault.h
> +index a681264f75e..5e10a2fa140 100644
> +--- a/gcc/cppdefault.h
> ++++ b/gcc/cppdefault.h
> +@@ -33,7 +33,8 @@
> + 
> + struct default_include
> + {
> +-  const char *const fname;	/* The name of the directory.  */
> ++  const char *fname;     /* The name of the directory.  */
> ++
> +   const char *const component;	/* The component containing the directory
> + 				   (see update_path in prefix.c) */
> +   const char cplusplus;		/* Only look here if we're compiling C++.  */
> +@@ -50,17 +51,13 @@ struct default_include
> + };
> + 
> + extern const struct default_include cpp_include_defaults[];
> +-extern const char cpp_GCC_INCLUDE_DIR[];
> +-extern const size_t cpp_GCC_INCLUDE_DIR_len;
> ++extern char GCC_INCLUDE_DIRVAR[] __attribute__ ((section (".gccrelocprefix")));
> + 
> + /* The configure-time prefix, i.e., the value supplied as the argument
> +    to --prefix=.  */
> +-extern const char cpp_PREFIX[];
> ++extern char PREFIXVAR[] __attribute__ ((section (".gccrelocprefix")));
> + /* The length of the configure-time prefix.  */
> +-extern const size_t cpp_PREFIX_len;
> +-/* The configure-time execution prefix.  This is typically the lib/gcc
> +-   subdirectory of cpp_PREFIX.  */
> +-extern const char cpp_EXEC_PREFIX[];
> ++extern char EXEC_PREFIXVAR[] __attribute__ ((section (".gccrelocprefix")));
> + /* The run-time execution prefix.  This is typically the lib/gcc
> +    subdirectory of the actual installation.  */
> + extern const char *gcc_exec_prefix;
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index c87f603955f..535d5c3bb65 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -252,6 +252,8 @@ FILE *report_times_to_file = NULL;
> + #endif
> + static const char *target_system_root = DEFAULT_TARGET_SYSTEM_ROOT;
> + 
> ++static char target_relocatable_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = SYSTEMLIBS_DIR;
> ++
> + /* Nonzero means pass the updated target_system_root to the compiler.  */
> + 
> + static int target_system_root_changed;
> +@@ -526,6 +528,7 @@ or with constant text in a single argument.
> +  %G     process LIBGCC_SPEC as a spec.
> +  %R     Output the concatenation of target_system_root and
> +         target_sysroot_suffix.
> ++ %r     Output the base path target_relocatable_prefix
> +  %S     process STARTFILE_SPEC as a spec.  A capital S is actually used here.
> +  %E     process ENDFILE_SPEC as a spec.  A capital E is actually used here.
> +  %C     process CPP_SPEC as a spec.
> +@@ -1499,10 +1502,10 @@ static const char *gcc_libexec_prefix;
> +    gcc_exec_prefix is set because, in that case, we know where the
> +    compiler has been installed, and use paths relative to that
> +    location instead.  */
> +-static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
> +-static const char *const standard_libexec_prefix = STANDARD_LIBEXEC_PREFIX;
> +-static const char *const standard_bindir_prefix = STANDARD_BINDIR_PREFIX;
> +-static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> ++static char standard_exec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_EXEC_PREFIX;
> ++static char standard_libexec_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_LIBEXEC_PREFIX;
> ++static char standard_bindir_prefix[4096] __attribute__ ((section (".gccrelocprefix"))) = STANDARD_BINDIR_PREFIX;
> ++static char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> + 
> + /* For native compilers, these are well-known paths containing
> +    components that may be provided by the system.  For cross
> +@@ -1510,9 +1513,9 @@ static const char *const standard_startfile_prefix = STANDARD_STARTFILE_PREFIX;
> + static const char *md_exec_prefix = MD_EXEC_PREFIX;
> + static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
> + static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
> +-static const char *const standard_startfile_prefix_1
> ++static char standard_startfile_prefix_1[4096] __attribute__ ((section (".gccrelocprefix")))
> +   = STANDARD_STARTFILE_PREFIX_1;
> +-static const char *const standard_startfile_prefix_2
> ++static char standard_startfile_prefix_2[4096] __attribute__ ((section (".gccrelocprefix")))
> +   = STANDARD_STARTFILE_PREFIX_2;
> + 
> + /* A relative path to be used in finding the location of tools
> +@@ -5952,6 +5955,11 @@ do_spec_1 (const char *spec, int inswitch, const char *soft_matched_part)
> + 	      }
> + 	    break;
> + 
> ++          case 'r':
> ++              obstack_grow (&obstack, target_relocatable_prefix,
> ++		      strlen (target_relocatable_prefix));
> ++            break;
> ++
> + 	  case 'S':
> + 	    value = do_spec_1 (startfile_spec, 0, NULL);
> + 	    if (value != 0)
> +diff --git a/gcc/incpath.c b/gcc/incpath.c
> +index 9098ab044ab..bfad4ebe382 100644
> +--- a/gcc/incpath.c
> ++++ b/gcc/incpath.c
> +@@ -131,7 +131,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> +   int relocated = cpp_relocated ();
> +   size_t len;
> + 
> +-  if (iprefix && (len = cpp_GCC_INCLUDE_DIR_len) != 0)
> ++  if (iprefix && (len = strlen(GCC_INCLUDE_DIRVAR) - 7) != 0)
> +     {
> +       /* Look for directories that start with the standard prefix.
> + 	 "Translate" them, i.e. replace /usr/local/lib/gcc... with
> +@@ -145,7 +145,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> + 		 now.  */
> + 	      if (sysroot && p->add_sysroot)
> + 		continue;
> +-	      if (!filename_ncmp (p->fname, cpp_GCC_INCLUDE_DIR, len))
> ++	      if (!filename_ncmp (p->fname, GCC_INCLUDE_DIRVAR, len))
> + 		{
> + 		  char *str = concat (iprefix, p->fname + len, NULL);
> + 		  if (p->multilib == 1 && imultilib)
> +@@ -185,7 +185,7 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> + 	      free (sysroot_no_trailing_dir_separator);
> + 	    }
> + 	  else if (!p->add_sysroot && relocated
> +-		   && !filename_ncmp (p->fname, cpp_PREFIX, cpp_PREFIX_len))
> ++		   && !filename_ncmp (p->fname, PREFIXVAR, strlen(PREFIXVAR)))
> + 	    {
> +  	      static const char *relocated_prefix;
> + 	      char *ostr;
> +@@ -202,12 +202,12 @@ add_standard_paths (const char *sysroot, const char *iprefix,
> + 		  dummy = concat (gcc_exec_prefix, "dummy", NULL);
> + 		  relocated_prefix
> + 		    = make_relative_prefix (dummy,
> +-					    cpp_EXEC_PREFIX,
> +-					    cpp_PREFIX);
> ++					    EXEC_PREFIXVAR,
> ++					    PREFIXVAR);
> + 		  free (dummy);
> + 		}
> + 	      ostr = concat (relocated_prefix,
> +-			     p->fname + cpp_PREFIX_len,
> ++			     p->fname + strlen(PREFIXVAR),
> + 			     NULL);
> + 	      str = update_path (ostr, p->component);
> + 	      free (ostr);
> +diff --git a/gcc/prefix.c b/gcc/prefix.c
> +index 1a403e535bd..c26d07bde12 100644
> +--- a/gcc/prefix.c
> ++++ b/gcc/prefix.c
> +@@ -72,7 +72,9 @@ License along with GCC; see the file COPYING3.  If not see
> + #include "prefix.h"
> + #include "common/common-target.h"
> + 
> +-static const char *std_prefix = PREFIX;
> ++char PREFIXVAR1[4096] __attribute__ ((section (".gccrelocprefix"))) = PREFIX;
> ++
> ++static const char *std_prefix = PREFIXVAR1;
> + 
> + static const char *get_key_value (char *);
> + static char *translate_name (char *);
> +@@ -212,7 +214,7 @@ translate_name (char *name)
> + 	prefix = getenv (key);
> + 
> +       if (prefix == 0)
> +-	prefix = PREFIX;
> ++	prefix = PREFIXVAR1;
> + 
> +       /* We used to strip trailing DIR_SEPARATORs here, but that can
> + 	 sometimes yield a result with no separator when one was coded
> +-- 
> +2.29.2
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
> new file mode 100644
> index 0000000..abf1f84
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0025-Search-target-sysroot-gcc-version-specific-dirs-with.patch
> @@ -0,0 +1,99 @@
> +From 9c0c73ee48dbee2aad57f4dcdad1b7b74e77b944 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Mon, 7 Dec 2015 23:41:45 +0000
> +Subject: [PATCH] Search target sysroot gcc version specific dirs with
> + multilib.
> +
> +We install the gcc libraries (such as crtbegin.p) into
> +<sysroot><libdir>/<target-sys>/5.2.0/
> +which is a default search path for GCC (aka multi_suffix in the
> +code below). <target-sys> is 'machine' in gcc's terminology. We use
> +these directories so that multiple gcc versions could in theory
> +co-exist on target.
> +
> +We only want to build one gcc-cross-canadian per arch and have this work
> +for all multilibs. <target-sys> can be handled by mapping the multilib
> +<target-sys> to the one used by gcc-cross-canadian, e.g.
> +mips64-polkmllib32-linux
> +is symlinked to by mips64-poky-linux.
> +
> +The default gcc search path in the target sysroot for a "lib64" mutlilib
> +is:
> +
> +<sysroot>/lib32/mips64-poky-linux/5.2.0/
> +<sysroot>/lib32/../lib64/
> +<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
> +<sysroot>/usr/lib32/../lib64/
> +<sysroot>/lib32/
> +<sysroot>/usr/lib32/
> +
> +which means that the lib32 crtbegin.o will be found and the lib64 ones
> +will not which leads to compiler failures.
> +
> +This patch injects a multilib version of that path first so the lib64
> +binaries can be found first. With this change the search path becomes:
> +
> +<sysroot>/lib32/../lib64/mips64-poky-linux/5.2.0/
> +<sysroot>/lib32/mips64-poky-linux/5.2.0/
> +<sysroot>/lib32/../lib64/
> +<sysroot>/usr/lib32/../lib64/mips64-poky-linux/5.2.0/
> +<sysroot>/usr/lib32/mips64-poky-linux/5.2.0/
> +<sysroot>/usr/lib32/../lib64/
> +<sysroot>/lib32/
> +<sysroot>/usr/lib32/
> +
> +Upstream-Status: Pending
> +RP 2015/7/31
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/gcc.c | 29 ++++++++++++++++++++++++++++-
> + 1 file changed, 28 insertions(+), 1 deletion(-)
> +
> +diff --git a/gcc/gcc.c b/gcc/gcc.c
> +index 535d5c3bb65..04647ae812d 100644
> +--- a/gcc/gcc.c
> ++++ b/gcc/gcc.c
> +@@ -2616,7 +2616,7 @@ for_each_path (const struct path_prefix *paths,
> +       if (path == NULL)
> + 	{
> + 	  len = paths->max_len + extra_space + 1;
> +-	  len += MAX (MAX (suffix_len, multi_os_dir_len), multiarch_len);
> ++	  len += MAX ((suffix_len + multi_os_dir_len), multiarch_len);
> + 	  path = XNEWVEC (char, len);
> + 	}
> + 
> +@@ -2628,6 +2628,33 @@ for_each_path (const struct path_prefix *paths,
> + 	  /* Look first in MACHINE/VERSION subdirectory.  */
> + 	  if (!skip_multi_dir)
> + 	    {
> ++	      if (!(pl->os_multilib ? skip_multi_os_dir : skip_multi_dir))
> ++	        {
> ++	          const char *this_multi;
> ++	          size_t this_multi_len;
> ++
> ++	          if (pl->os_multilib)
> ++		    {
> ++		      this_multi = multi_os_dir;
> ++		      this_multi_len = multi_os_dir_len;
> ++		    }
> ++	          else
> ++		    {
> ++		      this_multi = multi_dir;
> ++		      this_multi_len = multi_dir_len;
> ++		    }
> ++
> ++	          /* Look in multilib MACHINE/VERSION subdirectory first */
> ++	          if (this_multi_len)
> ++	            {
> ++		      memcpy (path + len, this_multi, this_multi_len + 1);
> ++	              memcpy (path + len + this_multi_len, multi_suffix, suffix_len + 1);
> ++	              ret = callback (path, callback_info);
> ++	                if (ret)
> ++		          break;
> ++	            }
> ++	        }
> ++
> + 	      memcpy (path + len, multi_suffix, suffix_len + 1);
> + 	      ret = callback (path, callback_info);
> + 	      if (ret)
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
> new file mode 100644
> index 0000000..97bf2f3
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0026-Fix-various-_FOR_BUILD-and-related-variables.patch
> @@ -0,0 +1,134 @@
> +From 3a003af8804dda90fdf4862eca5f66cb12faaf02 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Mon, 7 Dec 2015 23:42:45 +0000
> +Subject: [PATCH] Fix various _FOR_BUILD and related variables
> +
> +When doing a FOR_BUILD thing, you have to override CFLAGS with
> +CFLAGS_FOR_BUILD. And if you use C++, you also have to override
> +CXXFLAGS with CXXFLAGS_FOR_BUILD.
> +Without this, when building for mingw, you end up trying to use
> +the mingw headers for a host build.
> +
> +The same goes for other variables as well, such as CPPFLAGS,
> +CPP, and GMPINC.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
> +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + Makefile.in      | 6 ++++++
> + Makefile.tpl     | 5 +++++
> + gcc/Makefile.in  | 2 +-
> + gcc/configure    | 2 +-
> + gcc/configure.ac | 2 +-
> + 5 files changed, 14 insertions(+), 3 deletions(-)
> +
> +diff --git a/Makefile.in b/Makefile.in
> +index c717903bb13..5abc649868d 100644
> +--- a/Makefile.in
> ++++ b/Makefile.in
> +@@ -152,6 +152,7 @@ BUILD_EXPORTS = \
> + 	CPP="$(CC_FOR_BUILD) -E"; export CPP; \
> + 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> + 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> ++	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
> + 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
> + 	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
> + 	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
> +@@ -171,6 +172,9 @@ BUILD_EXPORTS = \
> + # built for the build system to override those in BASE_FLAGS_TO_PASS.
> + EXTRA_BUILD_FLAGS = \
> + 	CFLAGS="$(CFLAGS_FOR_BUILD)" \
> ++	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
> ++	CPP="$(CC_FOR_BUILD) -E" \
> ++	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
> + 	LDFLAGS="$(LDFLAGS_FOR_BUILD)"
> + 
> + # This is the list of directories to built for the host system.
> +@@ -188,6 +192,7 @@ HOST_SUBDIR = @host_subdir@
> + HOST_EXPORTS = \
> + 	$(BASE_EXPORTS) \
> + 	CC="$(CC)"; export CC; \
> ++	CPP="$(CC) -E"; export CPP; \
> + 	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
> + 	CFLAGS="$(CFLAGS)"; export CFLAGS; \
> + 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> +@@ -776,6 +781,7 @@ BASE_FLAGS_TO_PASS = \
> + 	"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
> + 	"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
> + 	"CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
> ++	"CXXFLAGS_FOR_BUILD=$(CXXFLAGS_FOR_BUILD)" \
> + 	"EXPECT=$(EXPECT)" \
> + 	"FLEX=$(FLEX)" \
> + 	"INSTALL=$(INSTALL)" \
> +diff --git a/Makefile.tpl b/Makefile.tpl
> +index efed1511750..778beb705b4 100644
> +--- a/Makefile.tpl
> ++++ b/Makefile.tpl
> +@@ -154,6 +154,7 @@ BUILD_EXPORTS = \
> + 	CC="$(CC_FOR_BUILD)"; export CC; \
> + 	CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
> + 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> ++	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)"; export CPPFLAGS; \
> + 	CXX="$(CXX_FOR_BUILD)"; export CXX; \
> + 	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
> + 	GFORTRAN="$(GFORTRAN_FOR_BUILD)"; export GFORTRAN; \
> +@@ -173,6 +174,9 @@ BUILD_EXPORTS = \
> + # built for the build system to override those in BASE_FLAGS_TO_PASS.
> + EXTRA_BUILD_FLAGS = \
> + 	CFLAGS="$(CFLAGS_FOR_BUILD)" \
> ++	CXXFLAGS="$(CXXFLAGS_FOR_BUILD)" \
> ++	CPP="$(CC_FOR_BUILD) -E" \
> ++	CPPFLAGS="$(CPPFLAGS_FOR_BUILD)" \
> + 	LDFLAGS="$(LDFLAGS_FOR_BUILD)"
> + 
> + # This is the list of directories to built for the host system.
> +@@ -190,6 +194,7 @@ HOST_SUBDIR = @host_subdir@
> + HOST_EXPORTS = \
> + 	$(BASE_EXPORTS) \
> + 	CC="$(CC)"; export CC; \
> ++	CPP="$(CC) -E"; export CPP; \
> + 	ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \
> + 	CFLAGS="$(CFLAGS)"; export CFLAGS; \
> + 	CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \
> +diff --git a/gcc/Makefile.in b/gcc/Makefile.in
> +index 011c7ac2db6..2f1165f7b5e 100644
> +--- a/gcc/Makefile.in
> ++++ b/gcc/Makefile.in
> +@@ -805,7 +805,7 @@ BUILD_LDFLAGS=@BUILD_LDFLAGS@
> + BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@
> + BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG)
> + BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
> +-		-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS)
> ++		-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS_FOR_BUILD)
> + 
> + # Actual name to use when installing a native compiler.
> + GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
> +diff --git a/gcc/configure b/gcc/configure
> +index 825a9652329..ff46cf58960 100755
> +--- a/gcc/configure
> ++++ b/gcc/configure
> +@@ -12314,7 +12314,7 @@ else
> + 	CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
> + 	CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
> + 	LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
> +-	GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
> ++	GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
> + 	${realsrcdir}/configure \
> + 		--enable-languages=${enable_languages-all} \
> + 		${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
> +diff --git a/gcc/configure.ac b/gcc/configure.ac
> +index 6099eb3251f..b3c345b61dc 100644
> +--- a/gcc/configure.ac
> ++++ b/gcc/configure.ac
> +@@ -1898,7 +1898,7 @@ else
> + 	CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
> + 	CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
> + 	LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
> +-	GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
> ++	GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
> + 	${realsrcdir}/configure \
> + 		--enable-languages=${enable_languages-all} \
> + 		${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
> new file mode 100644
> index 0000000..3cd75b7
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0027-nios2-Define-MUSL_DYNAMIC_LINKER.patch
> @@ -0,0 +1,25 @@
> +From 4e53d0ae70af85af0e112a48a3e4dfe4c39f4a8d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 2 Feb 2016 10:26:10 -0800
> +Subject: [PATCH] nios2: Define MUSL_DYNAMIC_LINKER
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Marek Vasut <marex@denx.de>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/nios2/linux.h | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/gcc/config/nios2/linux.h b/gcc/config/nios2/linux.h
> +index 4bdcdcca1f0..e7943a9d640 100644
> +--- a/gcc/config/nios2/linux.h
> ++++ b/gcc/config/nios2/linux.h
> +@@ -30,6 +30,7 @@
> + #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
> + 
> + #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux-nios2.so.1"
> ++#define MUSL_DYNAMIC_LINKER  "/lib/ld-musl-nios2.so.1"
> + 
> + #undef LINK_SPEC
> + #define LINK_SPEC LINK_SPEC_ENDIAN \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
> new file mode 100644
> index 0000000..2a6769a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0028-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch
> @@ -0,0 +1,84 @@
> +From 5db0404eb770ac477fd99d444226bcf021067584 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 27 Jun 2017 18:10:54 -0700
> +Subject: [PATCH] Add ssp_nonshared to link commandline for musl targets
> +
> +when -fstack-protector options are enabled we need to
> +link with ssp_shared on musl since it does not provide
> +the __stack_chk_fail_local() so essentially it provides
> +libssp but not libssp_nonshared something like
> +TARGET_LIBC_PROVIDES_SSP_BUT_NOT_SSP_NONSHARED
> + where-as for glibc the needed symbols
> +are already present in libc_nonshared library therefore
> +we do not need any library helper on glibc based systems
> +but musl needs the libssp_noshared from gcc
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/linux.h          |  7 +++++++
> + gcc/config/rs6000/linux.h   | 10 ++++++++++
> + gcc/config/rs6000/linux64.h | 10 ++++++++++
> + 3 files changed, 27 insertions(+)
> +
> +diff --git a/gcc/config/linux.h b/gcc/config/linux.h
> +index 0c1a8118a26..bdc2a2d0659 100644
> +--- a/gcc/config/linux.h
> ++++ b/gcc/config/linux.h
> +@@ -195,6 +195,13 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
> +     { GCC_INCLUDE_DIR, "GCC", 0, 1, 0, 0 },		\
> +     { 0, 0, 0, 0, 0, 0 }				\
> +   }
> ++#ifdef TARGET_LIBC_PROVIDES_SSP
> ++#undef LINK_SSP_SPEC
> ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> ++		       "|fstack-protector-strong|fstack-protector-explicit" \
> ++		       ":-lssp_nonshared}"
> ++#endif
> ++
> + #endif
> + 
> + #if (DEFAULT_LIBC == LIBC_UCLIBC) && defined (SINGLE_LIBC) /* uClinux */
> +diff --git a/gcc/config/rs6000/linux.h b/gcc/config/rs6000/linux.h
> +index b7026fcbee7..dd54d6c393e 100644
> +--- a/gcc/config/rs6000/linux.h
> ++++ b/gcc/config/rs6000/linux.h
> +@@ -94,6 +94,16 @@
> + 					 " -m elf32ppclinux")
> + #endif
> + 
> ++/* link libssp_nonshared.a with musl */
> ++#if DEFAULT_LIBC == LIBC_MUSL
> ++#ifdef TARGET_LIBC_PROVIDES_SSP
> ++#undef LINK_SSP_SPEC
> ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> ++		       "|fstack-protector-strong|fstack-protector-explicit" \
> ++		       ":-lssp_nonshared}"
> ++#endif
> ++#endif
> ++
> + #undef LINK_OS_LINUX_SPEC
> + #define LINK_OS_LINUX_SPEC LINK_OS_LINUX_EMUL " %{!shared: %{!static: \
> +   %{!static-pie: \
> +diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
> +index 967c1c43c63..dc5e4d97975 100644
> +--- a/gcc/config/rs6000/linux64.h
> ++++ b/gcc/config/rs6000/linux64.h
> +@@ -452,6 +452,16 @@ extern int dot_symbols;
> + 					   " -m elf64ppc")
> + #endif
> + 
> ++/* link libssp_nonshared.a with musl */
> ++#if DEFAULT_LIBC == LIBC_MUSL
> ++#ifdef TARGET_LIBC_PROVIDES_SSP
> ++#undef LINK_SSP_SPEC
> ++#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all" \
> ++		       "|fstack-protector-strong|fstack-protector-explicit" \
> ++		       ":-lssp_nonshared}"
> ++#endif
> ++#endif
> ++
> + #define LINK_OS_LINUX_SPEC32 LINK_OS_LINUX_EMUL32 " %{!shared: %{!static: \
> +   %{!static-pie: \
> +     %{rdynamic:-export-dynamic} \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
> new file mode 100644
> index 0000000..767cba0
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0029-Link-libgcc-using-LDFLAGS-not-just-SHLIB_LDFLAGS.patch
> @@ -0,0 +1,26 @@
> +From fbc926dbf6a47fa623b9c94cd9b09a0e90448fdc Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Wed, 4 May 2016 21:11:34 -0700
> +Subject: [PATCH] Link libgcc using LDFLAGS, not just SHLIB_LDFLAGS
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Christopher Larson <chris_larson@mentor.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + libgcc/config/t-slibgcc | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/libgcc/config/t-slibgcc b/libgcc/config/t-slibgcc
> +index c997553447c..330352c2c81 100644
> +--- a/libgcc/config/t-slibgcc
> ++++ b/libgcc/config/t-slibgcc
> +@@ -32,7 +32,7 @@ SHLIB_INSTALL_SOLINK = $(LN_S) $(SHLIB_SONAME) \
> + 	$(DESTDIR)$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
> + 
> + SHLIB_LINK = $(CC) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
> +-	$(SHLIB_LDFLAGS) \
> ++	$(LDFLAGS) $(SHLIB_LDFLAGS) \
> + 	-o $(SHLIB_DIR)/$(SHLIB_SONAME).tmp @multilib_flags@ \
> + 	$(SHLIB_OBJS) $(SHLIB_LC) && \
> + 	rm -f $(SHLIB_DIR)/$(SHLIB_SOLINK) && \
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
> new file mode 100644
> index 0000000..4f18907
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0030-sync-gcc-stddef.h-with-musl.patch
> @@ -0,0 +1,88 @@
> +From 24dc04dc8d69e3bf61322615b3ef18e02ccd311e Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Fri, 3 Feb 2017 12:56:00 -0800
> +Subject: [PATCH] sync gcc stddef.h with musl
> +
> +musl defines ptrdiff_t size_t and wchar_t
> +so dont define them here if musl is definining them
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/ginclude/stddef.h | 9 +++++++++
> + 1 file changed, 9 insertions(+)
> +
> +diff --git a/gcc/ginclude/stddef.h b/gcc/ginclude/stddef.h
> +index 9d67eac4947..6cb5edbedb4 100644
> +--- a/gcc/ginclude/stddef.h
> ++++ b/gcc/ginclude/stddef.h
> +@@ -128,6 +128,7 @@ _TYPE_wchar_t;
> + #ifndef ___int_ptrdiff_t_h
> + #ifndef _GCC_PTRDIFF_T
> + #ifndef _PTRDIFF_T_DECLARED /* DragonFly */
> ++#ifndef __DEFINED_ptrdiff_t /* musl */
> + #define _PTRDIFF_T
> + #define _T_PTRDIFF_
> + #define _T_PTRDIFF
> +@@ -137,10 +138,12 @@ _TYPE_wchar_t;
> + #define ___int_ptrdiff_t_h
> + #define _GCC_PTRDIFF_T
> + #define _PTRDIFF_T_DECLARED
> ++#define __DEFINED_ptrdiff_t /* musl */
> + #ifndef __PTRDIFF_TYPE__
> + #define __PTRDIFF_TYPE__ long int
> + #endif
> + typedef __PTRDIFF_TYPE__ ptrdiff_t;
> ++#endif /* __DEFINED_ptrdiff_t */
> + #endif /* _PTRDIFF_T_DECLARED */
> + #endif /* _GCC_PTRDIFF_T */
> + #endif /* ___int_ptrdiff_t_h */
> +@@ -178,6 +181,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
> + #ifndef _GCC_SIZE_T
> + #ifndef _SIZET_
> + #ifndef __size_t
> ++#ifndef __DEFINED_size_t /* musl */
> + #define __size_t__	/* BeOS */
> + #define __SIZE_T__	/* Cray Unicos/Mk */
> + #define _SIZE_T
> +@@ -194,6 +198,7 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
> + #define ___int_size_t_h
> + #define _GCC_SIZE_T
> + #define _SIZET_
> ++#define __DEFINED_size_t /* musl */
> + #if defined (__FreeBSD__) \
> +   || defined(__DragonFly__) \
> +   || defined(__FreeBSD_kernel__) \
> +@@ -228,6 +233,7 @@ typedef long ssize_t;
> + #endif /* _SIZE_T */
> + #endif /* __SIZE_T__ */
> + #endif /* __size_t__ */
> ++#endif /* __DEFINED_size_t */
> + #undef	__need_size_t
> + #endif /* _STDDEF_H or __need_size_t.  */
> + 
> +@@ -257,6 +263,7 @@ typedef long ssize_t;
> + #ifndef ___int_wchar_t_h
> + #ifndef __INT_WCHAR_T_H
> + #ifndef _GCC_WCHAR_T
> ++#ifndef __DEFINED_wchar_t /* musl */
> + #define __wchar_t__	/* BeOS */
> + #define __WCHAR_T__	/* Cray Unicos/Mk */
> + #define _WCHAR_T
> +@@ -272,6 +279,7 @@ typedef long ssize_t;
> + #define __INT_WCHAR_T_H
> + #define _GCC_WCHAR_T
> + #define _WCHAR_T_DECLARED
> ++#define __DEFINED_wchar_t /* musl */
> + 
> + /* On BSD/386 1.1, at least, machine/ansi.h defines _BSD_WCHAR_T_
> +    instead of _WCHAR_T_, and _BSD_RUNE_T_ (which, unlike the other
> +@@ -337,6 +345,7 @@ typedef __WCHAR_TYPE__ wchar_t;
> + #endif
> + #endif /* __WCHAR_T__ */
> + #endif /* __wchar_t__ */
> ++#endif /* __DEFINED_wchar_t musl */
> + #undef	__need_wchar_t
> + #endif /* _STDDEF_H or __need_wchar_t.  */
> + 
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
> new file mode 100644
> index 0000000..702279a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0031-fix-segmentation-fault-in-precompiled-header-generat.patch
> @@ -0,0 +1,57 @@
> +From 27b8ba5555ada2dab076988529bfb84d00a4b901 Mon Sep 17 00:00:00 2001
> +From: Juro Bystricky <juro.bystricky@intel.com>
> +Date: Mon, 19 Mar 2018 22:31:20 -0700
> +Subject: [PATCH] fix segmentation fault in precompiled header generation
> +
> +Prevent a segmentation fault which occurs when using incorrect
> +structure trying to access name of some named operators, such as
> +CPP_NOT, CPP_AND etc. "token->val.node.spelling" cannot be used in
> +those cases, as is may not be initialized at all.
> +
> +[YOCTO #11738]
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + libcpp/lex.c | 26 +++++++++++++++++++++-----
> + 1 file changed, 21 insertions(+), 5 deletions(-)
> +
> +diff --git a/libcpp/lex.c b/libcpp/lex.c
> +index 56ac3a1dd73..73a951148b3 100644
> +--- a/libcpp/lex.c
> ++++ b/libcpp/lex.c
> +@@ -3311,11 +3311,27 @@ cpp_spell_token (cpp_reader *pfile, const cpp_token *token,
> +     spell_ident:
> +     case SPELL_IDENT:
> +       if (forstring)
> +-	{
> +-	  memcpy (buffer, NODE_NAME (token->val.node.spelling),
> +-		  NODE_LEN (token->val.node.spelling));
> +-	  buffer += NODE_LEN (token->val.node.spelling);
> +-	}
> ++        {
> ++          if (token->type == CPP_NAME)
> ++            {
> ++              memcpy (buffer, NODE_NAME (token->val.node.spelling),
> ++                    NODE_LEN (token->val.node.spelling));
> ++              buffer += NODE_LEN (token->val.node.spelling);
> ++              break;
> ++            }
> ++          /* NAMED_OP, cannot use node.spelling */
> ++          if (token->flags & NAMED_OP)
> ++            {
> ++              const char *str = cpp_named_operator2name (token->type);
> ++              if (str)
> ++                {
> ++                  size_t len = strlen(str);
> ++                  memcpy(buffer, str, len);
> ++                  buffer += len;
> ++                }
> ++              break;
> ++            }
> ++        }
> +       else
> + 	buffer = _cpp_spell_ident_ucns (buffer, token->val.node.node);
> +       break;
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
> new file mode 100644
> index 0000000..0a0767b
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0032-Fix-for-testsuite-failure.patch
> @@ -0,0 +1,255 @@
> +From 2512aacf023c679d86d8f40caff4f6ff412b32ff Mon Sep 17 00:00:00 2001
> +From: RAGHUNATH LOLUR <raghunath.lolur@kpit.com>
> +Date: Wed, 6 Dec 2017 22:52:26 -0800
> +Subject: [PATCH] Fix for testsuite failure
> +
> +2017-11-16  Raghunath Lolur  <raghunath.lolur@kpit.com>
> +
> +	* gcc.dg/pr56275.c: If SSE is disabled, ensure that
> +	"-mfpmath" is not set to use SSE. Set "-mfpmath=387".
> +	* gcc.dg/pr68306.c: Likewise
> +	* gcc.dg/pr68306-2.c: Likewise
> +	* gcc.dg/pr68306-3.c: Likewise
> +	* gcc.dg/pr69634.c: Likewise
> +	* gcc.target/i386/amd64-abi-1.c: Likewise
> +	* gcc.target/i386/funcspec-6.c: Likewise
> +	* gcc.target/i386/interrupt-387-err-1.c: Likewise
> +	* gcc.target/i386/isa-14.c: Likewise
> +	* gcc.target/i386/pr44948-2b.c: Likewise
> +	* gcc.target/i386/pr53425-1.c: Likewise
> +	* gcc.target/i386/pr53425-2.c: Likewise
> +	* gcc.target/i386/pr55247.c: Likewise
> +	* gcc.target/i386/pr59644.c: Likewise
> +	* gcc.target/i386/pr62120.c: Likewise
> +	* gcc.target/i386/pr70467-1.c: Likewise
> +	* gcc.target/i386/warn-vect-op-1.c: Likewise
> +
> +If -Wall, -Werror are used during compilation various test cases fail
> +to compile.
> +
> +If SSE is disabled, be sure to -mfpmath=387 to resolve this.
> +
> +This patch removes the changes to Changelog from the original patch.
> +This will help us avoid conflicts.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> +---
> + gcc/testsuite/gcc.dg/pr56275.c                      | 2 +-
> + gcc/testsuite/gcc.dg/pr68306-2.c                    | 2 +-
> + gcc/testsuite/gcc.dg/pr68306-3.c                    | 2 +-
> + gcc/testsuite/gcc.dg/pr68306.c                      | 2 +-
> + gcc/testsuite/gcc.dg/pr69634.c                      | 2 +-
> + gcc/testsuite/gcc.target/i386/amd64-abi-1.c         | 2 +-
> + gcc/testsuite/gcc.target/i386/funcspec-6.c          | 1 +
> + gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c | 2 +-
> + gcc/testsuite/gcc.target/i386/isa-14.c              | 2 +-
> + gcc/testsuite/gcc.target/i386/pr44948-2b.c          | 2 +-
> + gcc/testsuite/gcc.target/i386/pr53425-1.c           | 2 +-
> + gcc/testsuite/gcc.target/i386/pr53425-2.c           | 2 +-
> + gcc/testsuite/gcc.target/i386/pr55247.c             | 2 +-
> + gcc/testsuite/gcc.target/i386/pr59644.c             | 2 +-
> + gcc/testsuite/gcc.target/i386/pr62120.c             | 2 +-
> + gcc/testsuite/gcc.target/i386/pr70467-1.c           | 2 +-
> + gcc/testsuite/gcc.target/i386/warn-vect-op-1.c      | 2 +-
> + 17 files changed, 17 insertions(+), 16 deletions(-)
> +
> +diff --git a/gcc/testsuite/gcc.dg/pr56275.c b/gcc/testsuite/gcc.dg/pr56275.c
> +index b901bb2b199..a4f6c95e1a1 100644
> +--- a/gcc/testsuite/gcc.dg/pr56275.c
> ++++ b/gcc/testsuite/gcc.dg/pr56275.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O2" } */
> +-/* { dg-additional-options "-mno-sse" { target { i?86-*-* x86_64-*-* } } } */
> ++/* { dg-additional-options "-mno-sse -mfpmath=387" { target { i?86-*-* x86_64-*-* } } } */
> + 
> + typedef long long v2tw __attribute__ ((vector_size (2 * sizeof (long long))));
> + 
> +diff --git a/gcc/testsuite/gcc.dg/pr68306-2.c b/gcc/testsuite/gcc.dg/pr68306-2.c
> +index 4672ebe7987..2a368c484b6 100644
> +--- a/gcc/testsuite/gcc.dg/pr68306-2.c
> ++++ b/gcc/testsuite/gcc.dg/pr68306-2.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O3" } */
> +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> + 
> + struct {
> +     int tz_minuteswest;
> +diff --git a/gcc/testsuite/gcc.dg/pr68306-3.c b/gcc/testsuite/gcc.dg/pr68306-3.c
> +index f5a8c102cf8..df3390c64c2 100644
> +--- a/gcc/testsuite/gcc.dg/pr68306-3.c
> ++++ b/gcc/testsuite/gcc.dg/pr68306-3.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O3" } */
> +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> + /* { dg-additional-options "-mno-altivec -mno-vsx" { target powerpc*-*-* } } */
> + 
> + extern void fn2();
> +diff --git a/gcc/testsuite/gcc.dg/pr68306.c b/gcc/testsuite/gcc.dg/pr68306.c
> +index 54e5b40f221..0813389e2c1 100644
> +--- a/gcc/testsuite/gcc.dg/pr68306.c
> ++++ b/gcc/testsuite/gcc.dg/pr68306.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O3" } */
> +-/* { dg-additional-options "-mno-sse -mno-mmx" { target i?86-*-* x86_64-*-* } } */
> ++/* { dg-additional-options "-mno-sse -mno-mmx -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> + 
> + enum powerpc_pmc_type { PPC_PMC_IBM };
> + struct {
> +diff --git a/gcc/testsuite/gcc.dg/pr69634.c b/gcc/testsuite/gcc.dg/pr69634.c
> +index 60a56149463..bcc23f9ccd6 100644
> +--- a/gcc/testsuite/gcc.dg/pr69634.c
> ++++ b/gcc/testsuite/gcc.dg/pr69634.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile } */
> + /* { dg-options "-O2 -fno-dce -fschedule-insns -fno-tree-vrp -fcompare-debug -Wno-psabi" } */
> +-/* { dg-additional-options "-mno-sse" { target i?86-*-* x86_64-*-* } } */
> ++/* { dg-additional-options "-mno-sse -mfpmath=387" { target i?86-*-* x86_64-*-* } } */
> + /* { dg-require-effective-target scheduling } */
> + 
> + typedef unsigned short u16;
> +diff --git a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> +index 69fde57bf06..7f1f1c03edf 100644
> +--- a/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/amd64-abi-1.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile { target { ! ia32 } } } */
> +-/* { dg-options "-mno-sse" } */
> ++/* { dg-options "-mno-sse -mfpmath=387" } */
> + /* { dg-additional-options "-mabi=sysv" { target *-*-mingw* } } */
> + 
> + double foo(void) { return 0; }	/* { dg-error "SSE disabled" } */
> +diff --git a/gcc/testsuite/gcc.target/i386/funcspec-6.c b/gcc/testsuite/gcc.target/i386/funcspec-6.c
> +index ea896b7ebfd..bf15569b826 100644
> +--- a/gcc/testsuite/gcc.target/i386/funcspec-6.c
> ++++ b/gcc/testsuite/gcc.target/i386/funcspec-6.c
> +@@ -1,6 +1,7 @@
> + /* Test whether all of the 64-bit function specific options are accepted
> +    without error.  */
> + /* { dg-do compile { target { ! ia32 } } } */
> ++/* { dg-additional-options "-mfpmath=387" } */
> + 
> + #include "funcspec-56.inc"
> + 
> +diff --git a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> +index 8561a3c26d6..6377f814645 100644
> +--- a/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/interrupt-387-err-1.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile } */
> +-/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387" } */
> ++/* { dg-options "-O2 -mgeneral-regs-only -mno-cld -mno-iamcu -m80387 -mfpmath=387" } */
> + 
> + typedef unsigned int uword_t __attribute__ ((mode (__word__)));
> + 
> +diff --git a/gcc/testsuite/gcc.target/i386/isa-14.c b/gcc/testsuite/gcc.target/i386/isa-14.c
> +index 5d49e6e77fe..1de2db92bdd 100644
> +--- a/gcc/testsuite/gcc.target/i386/isa-14.c
> ++++ b/gcc/testsuite/gcc.target/i386/isa-14.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do run } */
> +-/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse" } */
> ++/* { dg-options "-march=x86-64 -msse4a -mfma4 -mno-sse -mfpmath=387" } */
> + 
> + extern void abort (void);
> + 
> +diff --git a/gcc/testsuite/gcc.target/i386/pr44948-2b.c b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> +index fa1769b62fb..f79fb12726f 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr44948-2b.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile } */
> +-/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic" } */
> ++/* { dg-options "-O -mno-sse -Wno-psabi -mtune=generic -mfpmath=387" } */
> + 
> + struct A
> + { 
> +diff --git a/gcc/testsuite/gcc.target/i386/pr53425-1.c b/gcc/testsuite/gcc.target/i386/pr53425-1.c
> +index 2e89ff7d81d..6339bf6b736 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr53425-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr53425-1.c
> +@@ -1,6 +1,6 @@
> + /* PR target/53425 */
> + /* { dg-do compile { target { ! ia32 } } } */
> +-/* { dg-options "-O2 -mno-sse" } */
> ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> + /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
> + 
> + typedef double __v2df __attribute__ ((__vector_size__ (16)));
> +diff --git a/gcc/testsuite/gcc.target/i386/pr53425-2.c b/gcc/testsuite/gcc.target/i386/pr53425-2.c
> +index 61f6283dbe9..2c5a55f0ac3 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr53425-2.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr53425-2.c
> +@@ -1,6 +1,6 @@
> + /* PR target/53425 */
> + /* { dg-do compile { target { ! ia32 } } } */
> +-/* { dg-options "-O2 -mno-sse" } */
> ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> + /* { dg-skip-if "no SSE vector" { x86_64-*-mingw* } } */
> + 
> + typedef float __v2sf __attribute__ ((__vector_size__ (8)));
> +diff --git a/gcc/testsuite/gcc.target/i386/pr55247.c b/gcc/testsuite/gcc.target/i386/pr55247.c
> +index 23366d0909d..9810e3abb76 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr55247.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr55247.c
> +@@ -1,6 +1,6 @@
> + /* { dg-do compile { target { ! ia32 } } } */
> + /* { dg-require-effective-target maybe_x32 } */
> +-/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long" } */
> ++/* { dg-options "-O2 -mno-sse -mno-mmx -mx32 -maddress-mode=long -mfpmath=387" } */
> + 
> + typedef unsigned int uint32_t;
> + typedef uint32_t Elf32_Word;
> +diff --git a/gcc/testsuite/gcc.target/i386/pr59644.c b/gcc/testsuite/gcc.target/i386/pr59644.c
> +index 96006b3e338..4287e4538bf 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr59644.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr59644.c
> +@@ -1,6 +1,6 @@
> + /* PR target/59644 */
> + /* { dg-do run { target lp64 } } */
> +-/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone" } */
> ++/* { dg-options "-O2 -ffreestanding -mno-sse -mpreferred-stack-boundary=3 -maccumulate-outgoing-args -mno-red-zone -mfpmath=387" } */
> + 
> + /* This test uses __builtin_trap () instead of e.g. abort,
> +    because due to -mpreferred-stack-boundary=3 it should not call
> +diff --git a/gcc/testsuite/gcc.target/i386/pr62120.c b/gcc/testsuite/gcc.target/i386/pr62120.c
> +index 28d85d37712..c93266bd4bc 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr62120.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr62120.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile } */
> +-/* { dg-options "-mno-sse" } */
> ++/* { dg-options "-mno-sse -mfpmath=387" } */
> + 
> + void foo ()
> + {
> +diff --git a/gcc/testsuite/gcc.target/i386/pr70467-1.c b/gcc/testsuite/gcc.target/i386/pr70467-1.c
> +index 4e112c88d07..bcfb396a68d 100644
> +--- a/gcc/testsuite/gcc.target/i386/pr70467-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/pr70467-1.c
> +@@ -1,6 +1,6 @@
> + /* PR rtl-optimization/70467 */
> + /* { dg-do compile } */
> +-/* { dg-options "-O2 -mno-sse" } */
> ++/* { dg-options "-O2 -mno-sse -mfpmath=387" } */
> + 
> + void foo (unsigned long long *);
> + 
> +diff --git a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> +index 6cda1534311..26e37f5b8ba 100644
> +--- a/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> ++++ b/gcc/testsuite/gcc.target/i386/warn-vect-op-1.c
> +@@ -1,5 +1,5 @@
> + /* { dg-do compile { target { ! ia32 } } }  */
> +-/* { dg-options "-mno-sse -Wvector-operation-performance" }  */
> ++/* { dg-options "-mno-sse -Wvector-operation-performance -mfpmath=387" }  */
> + #define vector(elcount, type)  \
> + __attribute__((vector_size((elcount)*sizeof(type)))) type
> + 
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
> new file mode 100644
> index 0000000..ba7c2b8
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0033-Re-introduce-spe-commandline-options.patch
> @@ -0,0 +1,38 @@
> +From 3fc06241ce37e2e4b3ed21ace28d347eb511448d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Wed, 6 Jun 2018 12:10:22 -0700
> +Subject: [PATCH] Re-introduce spe commandline options
> +
> +This should ensure that we keep accepting
> +spe options
> +
> +Upstream-Status: Inappropriate [SPE port is removed from rs600 port]
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/rs6000/rs6000.opt | 12 ++++++++++++
> + 1 file changed, 12 insertions(+)
> +
> +diff --git a/gcc/config/rs6000/rs6000.opt b/gcc/config/rs6000/rs6000.opt
> +index f95b8279270..0e52d51409d 100644
> +--- a/gcc/config/rs6000/rs6000.opt
> ++++ b/gcc/config/rs6000/rs6000.opt
> +@@ -344,6 +344,18 @@ mdebug=
> + Target RejectNegative Joined
> + -mdebug=	Enable debug output.
> + 
> ++mspe
> ++Target Var(rs6000_spe) Save
> ++Generate SPE SIMD instructions on E500.
> ++
> ++mabi=spe
> ++Target RejectNegative Var(rs6000_spe_abi) Save
> ++Use the SPE ABI extensions.
> ++
> ++mabi=no-spe
> ++Target RejectNegative Var(rs6000_spe_abi, 0)
> ++Do not use the SPE ABI extensions.
> ++
> + mabi=altivec
> + Target RejectNegative Var(rs6000_altivec_abi) Save
> + Use the AltiVec ABI extensions.
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
> new file mode 100644
> index 0000000..4ce9dc6
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0034-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch
> @@ -0,0 +1,83 @@
> +From b42ff59c3fe2967d37815c8db72a47b9b7f585b4 Mon Sep 17 00:00:00 2001
> +From: Szabolcs Nagy <nsz@port70.net>
> +Date: Sat, 24 Oct 2015 20:09:53 +0000
> +Subject: [PATCH] libgcc_s: Use alias for __cpu_indicator_init instead of
> + symver
> +
> +Adapter from
> +
> +https://gcc.gnu.org/ml/gcc-patches/2015-05/msg00899.html
> +
> +This fix was debated but hasnt been applied gcc upstream since
> +they expect musl to support '@' in symbol versioning which is
> +a sun/gnu versioning extention. This patch however avoids the
> +need for the '@' symbols at all
> +
> +libgcc/Changelog:
> +
> +2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
> +
> +	* config/i386/cpuinfo.c (__cpu_indicator_init_local): Add.
> +	(__cpu_indicator_init@GCC_4.8.0, __cpu_model@GCC_4.8.0): Remove.
> +
> +	* config/i386/t-linux (HOST_LIBGCC2_CFLAGS): Remove -DUSE_ELF_SYMVER.
> +
> +gcc/Changelog:
> +
> +2015-05-11  Szabolcs Nagy  <szabolcs.nagy@arm.com>
> +
> +	* config/i386/i386-expand.c (ix86_expand_builtin): Make __builtin_cpu_init
> +	call __cpu_indicator_init_local instead of __cpu_indicator_init.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/config/i386/i386-expand.c | 4 ++--
> + libgcc/config/i386/cpuinfo.c  | 6 +++---
> + libgcc/config/i386/t-linux    | 2 +-
> + 3 files changed, 6 insertions(+), 6 deletions(-)
> +
> +diff --git a/gcc/config/i386/i386-expand.c b/gcc/config/i386/i386-expand.c
> +index 48f00c5fcfc..468f5f71fac 100644
> +--- a/gcc/config/i386/i386-expand.c
> ++++ b/gcc/config/i386/i386-expand.c
> +@@ -10941,10 +10941,10 @@ ix86_expand_builtin (tree exp, rtx target, rtx subtarget,
> +     {
> +     case IX86_BUILTIN_CPU_INIT:
> +       {
> +-	/* Make it call __cpu_indicator_init in libgcc. */
> ++	/* Make it call __cpu_indicator_init_local in libgcc.a. */
> + 	tree call_expr, fndecl, type;
> +         type = build_function_type_list (integer_type_node, NULL_TREE); 
> +-	fndecl = build_fn_decl ("__cpu_indicator_init", type);
> ++	fndecl = build_fn_decl ("__cpu_indicator_init_local", type);
> + 	call_expr = build_call_expr (fndecl, 0); 
> + 	return expand_expr (call_expr, target, mode, EXPAND_NORMAL);
> +       }
> +diff --git a/libgcc/config/i386/cpuinfo.c b/libgcc/config/i386/cpuinfo.c
> +index 00322c58622..f42bbb8af98 100644
> +--- a/libgcc/config/i386/cpuinfo.c
> ++++ b/libgcc/config/i386/cpuinfo.c
> +@@ -508,7 +508,7 @@ __cpu_indicator_init (void)
> +   return 0;
> + }
> + 
> +-#if defined SHARED && defined USE_ELF_SYMVER
> +-__asm__ (".symver __cpu_indicator_init, __cpu_indicator_init@GCC_4.8.0");
> +-__asm__ (".symver __cpu_model, __cpu_model@GCC_4.8.0");
> ++#ifndef SHARED
> ++int __cpu_indicator_init_local (void)
> ++  __attribute__ ((weak, alias ("__cpu_indicator_init")));
> + #endif
> +diff --git a/libgcc/config/i386/t-linux b/libgcc/config/i386/t-linux
> +index 8506a635790..564296f788e 100644
> +--- a/libgcc/config/i386/t-linux
> ++++ b/libgcc/config/i386/t-linux
> +@@ -3,5 +3,5 @@
> + # t-slibgcc-elf-ver and t-linux
> + SHLIB_MAPFILES = libgcc-std.ver $(srcdir)/config/i386/libgcc-glibc.ver
> + 
> +-HOST_LIBGCC2_CFLAGS += -mlong-double-80 -DUSE_ELF_SYMVER $(CET_FLAGS)
> ++HOST_LIBGCC2_CFLAGS += -mlong-double-80 $(CET_FLAGS)
> + CRTSTUFF_T_CFLAGS += $(CET_FLAGS)
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
> new file mode 100644
> index 0000000..dd1bf6d
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0035-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch
> @@ -0,0 +1,182 @@
> +From 0395060a7dcf98c5f5a65103f6aaa71d6b862259 Mon Sep 17 00:00:00 2001
> +From: Richard Purdie <richard.purdie@linuxfoundation.org>
> +Date: Tue, 10 Mar 2020 08:26:53 -0700
> +Subject: [PATCH] gentypes/genmodes: Do not use __LINE__ for maintaining
> + reproducibility
> +
> +Inserting line numbers into generated code means its not always reproducible wth
> +differing versions of host gcc. Void the issue by not adding these.
> +
> +Upstream-Status: Inappropriate [OE Reproducibility specific]
> +
> +Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + gcc/gengtype.c |  6 +++---
> + gcc/genmodes.c | 32 ++++++++++++++++----------------
> + 2 files changed, 19 insertions(+), 19 deletions(-)
> +
> +diff --git a/gcc/gengtype.c b/gcc/gengtype.c
> +index 981577481af..d5700fff401 100644
> +--- a/gcc/gengtype.c
> ++++ b/gcc/gengtype.c
> +@@ -991,7 +991,7 @@ create_field_at (pair_p next, type_p type, const char *name, options_p opt,
> + /* Create a fake field with the given type and name.  NEXT is the next
> +    field in the chain.  */
> + #define create_field(next,type,name) \
> +-    create_field_all (next,type,name, 0, this_file, __LINE__)
> ++    create_field_all (next,type,name, 0, this_file, 0)
> + 
> + /* Like create_field, but the field is only valid when condition COND
> +    is true.  */
> +@@ -1024,7 +1024,7 @@ create_optional_field_ (pair_p next, type_p type, const char *name,
> + }
> + 
> + #define create_optional_field(next,type,name,cond)	\
> +-       create_optional_field_(next,type,name,cond,__LINE__)
> ++       create_optional_field_(next,type,name,cond,0)
> + 
> + /* Reverse a linked list of 'struct pair's in place.  */
> + pair_p
> +@@ -5187,7 +5187,7 @@ main (int argc, char **argv)
> +       /* These types are set up with #define or else outside of where
> +          we can see them.  We should initialize them before calling
> +          read_input_list.  */
> +-#define POS_HERE(Call) do { pos.file = this_file; pos.line = __LINE__; \
> ++#define POS_HERE(Call) do { pos.file = this_file; pos.line = 0; \
> + 	Call;} while (0)
> +       POS_HERE (do_scalar_typedef ("CUMULATIVE_ARGS", &pos));
> +       POS_HERE (do_scalar_typedef ("REAL_VALUE_TYPE", &pos));
> +diff --git a/gcc/genmodes.c b/gcc/genmodes.c
> +index bd78310ea24..dbd02c51a4c 100644
> +--- a/gcc/genmodes.c
> ++++ b/gcc/genmodes.c
> +@@ -430,7 +430,7 @@ complete_all_modes (void)
> + }
> + 
> + /* For each mode in class CLASS, construct a corresponding complex mode.  */
> +-#define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, __LINE__)
> ++#define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, 0)
> + static void
> + make_complex_modes (enum mode_class cl,
> + 		    const char *file, unsigned int line)
> +@@ -489,7 +489,7 @@ make_complex_modes (enum mode_class cl,
> +    having as many components as necessary.  ORDER is the sorting order
> +    of the mode, with smaller numbers indicating a higher priority.  */
> + #define VECTOR_MODES_WITH_PREFIX(PREFIX, C, W, ORDER) \
> +-  make_vector_modes (MODE_##C, #PREFIX, W, ORDER, __FILE__, __LINE__)
> ++  make_vector_modes (MODE_##C, #PREFIX, W, ORDER, __FILE__, 0)
> + #define VECTOR_MODES(C, W) VECTOR_MODES_WITH_PREFIX (V, C, W, 0)
> + static void ATTRIBUTE_UNUSED
> + make_vector_modes (enum mode_class cl, const char *prefix, unsigned int width,
> +@@ -541,7 +541,7 @@ make_vector_modes (enum mode_class cl, const char *prefix, unsigned int width,
> + /* Create a vector of booleans called NAME with COUNT elements and
> +    BYTESIZE bytes in total.  */
> + #define VECTOR_BOOL_MODE(NAME, COUNT, BYTESIZE) \
> +-  make_vector_bool_mode (#NAME, COUNT, BYTESIZE, __FILE__, __LINE__)
> ++  make_vector_bool_mode (#NAME, COUNT, BYTESIZE, __FILE__, 0)
> + static void ATTRIBUTE_UNUSED
> + make_vector_bool_mode (const char *name, unsigned int count,
> + 		       unsigned int bytesize, const char *file,
> +@@ -563,7 +563,7 @@ make_vector_bool_mode (const char *name, unsigned int count,
> + /* Input.  */
> + 
> + #define _SPECIAL_MODE(C, N) \
> +-  make_special_mode (MODE_##C, #N, __FILE__, __LINE__)
> ++  make_special_mode (MODE_##C, #N, __FILE__, 0)
> + #define RANDOM_MODE(N) _SPECIAL_MODE (RANDOM, N)
> + #define CC_MODE(N) _SPECIAL_MODE (CC, N)
> + 
> +@@ -576,7 +576,7 @@ make_special_mode (enum mode_class cl, const char *name,
> + 
> + #define INT_MODE(N, Y) FRACTIONAL_INT_MODE (N, -1U, Y)
> + #define FRACTIONAL_INT_MODE(N, B, Y) \
> +-  make_int_mode (#N, B, Y, __FILE__, __LINE__)
> ++  make_int_mode (#N, B, Y, __FILE__, 0)
> + 
> + static void
> + make_int_mode (const char *name,
> +@@ -589,16 +589,16 @@ make_int_mode (const char *name,
> + }
> + 
> + #define FRACT_MODE(N, Y, F) \
> +-	make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, __LINE__)
> ++	make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, 0)
> + 
> + #define UFRACT_MODE(N, Y, F) \
> +-	make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, __LINE__)
> ++	make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, 0)
> + 
> + #define ACCUM_MODE(N, Y, I, F) \
> +-	make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, __LINE__)
> ++	make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, 0)
> + 
> + #define UACCUM_MODE(N, Y, I, F) \
> +-	make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, __LINE__)
> ++	make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, 0)
> + 
> + /* Create a fixed-point mode by setting CL, NAME, BYTESIZE, IBIT, FBIT,
> +    FILE, and LINE.  */
> +@@ -619,7 +619,7 @@ make_fixed_point_mode (enum mode_class cl,
> + 
> + #define FLOAT_MODE(N, Y, F)             FRACTIONAL_FLOAT_MODE (N, -1U, Y, F)
> + #define FRACTIONAL_FLOAT_MODE(N, B, Y, F) \
> +-  make_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
> ++  make_float_mode (#N, B, Y, #F, __FILE__, 0)
> + 
> + static void
> + make_float_mode (const char *name,
> +@@ -636,7 +636,7 @@ make_float_mode (const char *name,
> + #define DECIMAL_FLOAT_MODE(N, Y, F)	\
> + 	FRACTIONAL_DECIMAL_FLOAT_MODE (N, -1U, Y, F)
> + #define FRACTIONAL_DECIMAL_FLOAT_MODE(N, B, Y, F)	\
> +-  make_decimal_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
> ++  make_decimal_float_mode (#N, B, Y, #F, __FILE__, 0)
> + 
> + static void
> + make_decimal_float_mode (const char *name,
> +@@ -651,7 +651,7 @@ make_decimal_float_mode (const char *name,
> + }
> + 
> + #define RESET_FLOAT_FORMAT(N, F) \
> +-  reset_float_format (#N, #F, __FILE__, __LINE__)
> ++  reset_float_format (#N, #F, __FILE__, 0)
> + static void ATTRIBUTE_UNUSED
> + reset_float_format (const char *name, const char *format,
> + 		    const char *file, unsigned int line)
> +@@ -672,7 +672,7 @@ reset_float_format (const char *name, const char *format,
> + 
> + /* __intN support.  */
> + #define INT_N(M,PREC)				\
> +-  make_int_n (#M, PREC, __FILE__, __LINE__)
> ++  make_int_n (#M, PREC, __FILE__, 0)
> + static void ATTRIBUTE_UNUSED
> + make_int_n (const char *m, int bitsize,
> +             const char *file, unsigned int line)
> +@@ -701,7 +701,7 @@ make_int_n (const char *m, int bitsize,
> + /* Partial integer modes are specified by relation to a full integer
> +    mode.  */
> + #define PARTIAL_INT_MODE(M,PREC,NAME)				\
> +-  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, __LINE__)
> ++  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, 0)
> + static void ATTRIBUTE_UNUSED
> + make_partial_integer_mode (const char *base, const char *name,
> + 			   unsigned int precision,
> +@@ -728,7 +728,7 @@ make_partial_integer_mode (const char *base, const char *name,
> + /* A single vector mode can be specified by naming its component
> +    mode and the number of components.  */
> + #define VECTOR_MODE(C, M, N) \
> +-  make_vector_mode (MODE_##C, #M, N, __FILE__, __LINE__);
> ++  make_vector_mode (MODE_##C, #M, N, __FILE__, 0);
> + static void ATTRIBUTE_UNUSED
> + make_vector_mode (enum mode_class bclass,
> + 		  const char *base,
> +@@ -771,7 +771,7 @@ make_vector_mode (enum mode_class bclass,
> + 
> + /* Adjustability.  */
> + #define _ADD_ADJUST(A, M, X, C1, C2) \
> +-  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, __LINE__)
> ++  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, 0)
> + 
> + #define ADJUST_NUNITS(M, X)    _ADD_ADJUST (nunits, M, X, RANDOM, RANDOM)
> + #define ADJUST_BYTESIZE(M, X)  _ADD_ADJUST (bytesize, M, X, RANDOM, RANDOM)
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
> new file mode 100644
> index 0000000..de82a3a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0036-mingw32-Enable-operation_not_supported.patch
> @@ -0,0 +1,26 @@
> +From 6f87a095f0e696bec07a50df789c9db8bdbca43d Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Tue, 12 May 2020 10:39:09 -0700
> +Subject: [PATCH] mingw32: Enable operation_not_supported
> +
> +Fixes nativesdk build errors on mingw32 gcc-runtime
> +
> +Upstream-Status: Pending
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + libstdc++-v3/config/os/mingw32/error_constants.h | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/libstdc++-v3/config/os/mingw32/error_constants.h b/libstdc++-v3/config/os/mingw32/error_constants.h
> +index 68ac72a78fb..71cd5815b81 100644
> +--- a/libstdc++-v3/config/os/mingw32/error_constants.h
> ++++ b/libstdc++-v3/config/os/mingw32/error_constants.h
> +@@ -107,7 +107,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
> + #ifdef _GLIBCXX_HAVE_EPERM
> +       operation_not_permitted = 		EPERM,
> + #endif
> +-//    operation_not_supported = 		EOPNOTSUPP,
> ++      operation_not_supported = 		EOPNOTSUPP,
> + #ifdef _GLIBCXX_HAVE_EWOULDBLOCK
> +       operation_would_block = 			EWOULDBLOCK,
> + #endif
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
> new file mode 100644
> index 0000000..3946ace
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-arm-10.2/0037-libatomic-Do-not-enforce-march-on-aarch64.patch
> @@ -0,0 +1,42 @@
> +From 38d262bfe7c0c894c364dc6e4dc7971e78a73974 Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Wed, 13 May 2020 15:10:38 -0700
> +Subject: [PATCH] libatomic: Do not enforce march on aarch64
> +
> +OE passes the right options via gcc compiler cmdline via TUNE_CCARGS
> +this can conflict between -mcpu settings and -march setting here, since
> +-mcpu will translate into an appropriate -march, lets depend on that
> +instead of setting it explicitly
> +
> +Upstream-Status: Inappropriate [OE-Specific]
> +
> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + libatomic/Makefile.am | 1 -
> + libatomic/Makefile.in | 1 -
> + 2 files changed, 2 deletions(-)
> +
> +diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
> +index 133fbbca77e..ac1ca645876 100644
> +--- a/libatomic/Makefile.am
> ++++ b/libatomic/Makefile.am
> +@@ -125,7 +125,6 @@ libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix _$(s)_.lo,$(SIZEOBJS)))
> + ## On a target-specific basis, include alternates to be selected by IFUNC.
> + if HAVE_IFUNC
> + if ARCH_AARCH64_LINUX
> +-IFUNC_OPTIONS	     = -march=armv8-a+lse
> + libatomic_la_LIBADD += $(foreach s,$(SIZES),$(addsuffix _$(s)_1_.lo,$(SIZEOBJS)))
> + endif
> + if ARCH_ARM_LINUX
> +diff --git a/libatomic/Makefile.in b/libatomic/Makefile.in
> +index a51807e95c9..97df2d7ff03 100644
> +--- a/libatomic/Makefile.in
> ++++ b/libatomic/Makefile.in
> +@@ -431,7 +431,6 @@ M_SRC = $(firstword $(filter %/$(M_FILE), $(all_c_files)))
> + libatomic_la_LIBADD = $(foreach s,$(SIZES),$(addsuffix \
> + 	_$(s)_.lo,$(SIZEOBJS))) $(am__append_1) $(am__append_2) \
> + 	$(am__append_3) $(am__append_4)
> +-@ARCH_AARCH64_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv8-a+lse
> + @ARCH_ARM_LINUX_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=armv7-a+fp -DHAVE_KERNEL64
> + @ARCH_I386_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -march=i586
> + @ARCH_X86_64_TRUE@@HAVE_IFUNC_TRUE@IFUNC_OPTIONS = -mcx16
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
> new file mode 100644
> index 0000000..8987a4c
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross-canadian_arm-10.2.bb
> @@ -0,0 +1,5 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-cross-canadian.inc
> +
> +
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
> new file mode 100644
> index 0000000..0a8aa75
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-cross_arm-10.2.bb
> @@ -0,0 +1,3 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-cross.inc
> +
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
> new file mode 100644
> index 0000000..0a9f98a
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-crosssdk_arm-10.2.bb
> @@ -0,0 +1,2 @@
> +require recipes-devtools/gcc/gcc-cross_${PV}.bb
> +require recipes-devtools/gcc/gcc-crosssdk.inc
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
> new file mode 100644
> index 0000000..b755f55
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-runtime_arm-10.2.bb
> @@ -0,0 +1,2 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-runtime.inc
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
> new file mode 100644
> index 0000000..9c41e92
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-sanitizers_arm-10.2.bb
> @@ -0,0 +1,7 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-sanitizers.inc
> +
> +# Building with thumb enabled on armv4t armv5t fails with
> +# sanitizer_linux.s:5749: Error: lo register required -- `ldr ip,[sp],#8'
> +ARM_INSTRUCTION_SET_armv4 = "arm"
> +ARM_INSTRUCTION_SET_armv5 = "arm"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
> new file mode 100644
> index 0000000..b890fa3
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc-source_arm-10.2.bb
> @@ -0,0 +1,4 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-source.inc
> +
> +EXCLUDE_FROM_WORLD = "1"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
> new file mode 100644
> index 0000000..51a0877
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/gcc_arm-10.2.bb
> @@ -0,0 +1,15 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/gcc-target.inc
> +require recipes-devtools/gcc/gcc-arm-common.inc
> +
> +# Building with thumb enabled on armv4t armv5t fails with
> +# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7438:(.text.unlikely+0x2fa): relocation truncated to fit: R_ARM_THM_CALL against symbol `fancy_abort(char const*, int, char const*)' defined in .glue_7 section in linker stubs
> +# | gcc-4.8.1-r0/gcc-4.8.1/gcc/cp/decl.c:7442:(.text.unlikely+0x318): additional relocation overflows omitted from the output
> +ARM_INSTRUCTION_SET_armv4 = "arm"
> +ARM_INSTRUCTION_SET_armv5 = "arm"
> +
> +ARMFPARCHEXT_armv6 = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> +ARMFPARCHEXT_armv7a = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> +ARMFPARCHEXT_armv7ve = "${@'+fp' if d.getVar('TARGET_FPU') == 'hard' else ''}"
> +
> +BBCLASSEXTEND = "nativesdk"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
> new file mode 100644
> index 0000000..32f3dc0
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgcc-initial_arm-10.2.bb
> @@ -0,0 +1,5 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/libgcc-initial.inc
> +
> +# Building with thumb enabled on armv6t fails
> +ARM_INSTRUCTION_SET_armv6 = "arm"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
> new file mode 100644
> index 0000000..572bab1
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgcc_arm-10.2.bb
> @@ -0,0 +1,5 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/libgcc.inc
> +
> +# Building with thumb enabled on armv6t fails
> +ARM_INSTRUCTION_SET_armv6 = "arm"
> diff --git a/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
> new file mode 100644
> index 0000000..4e5688e
> --- /dev/null
> +++ b/meta-arm-toolchain/recipes-devtools/gcc/libgfortran_arm-10.2.bb
> @@ -0,0 +1,3 @@
> +require recipes-devtools/gcc/gcc-${PV}.inc
> +require recipes-devtools/gcc/libgfortran.inc
> +
> -- 
> 2.17.1
> 

> 
> 
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-01-08 14:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-06 12:22 [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11 Sumit Garg
2021-01-06 12:22 ` [meta-arm][PATCH 2/2] arm-toolchain: Drop support for GCC 8.x toolchain Sumit Garg
2021-01-06 23:19 ` [meta-arm][PATCH 1/2] arm-toolchain: Add support for GCC 10.2-2020.11 Ross Burton
2021-01-07  4:47   ` Sumit Garg
2021-01-08 14:47 ` Jon Mason

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.