From f59d75c182555cc927b044c9351ac6888a47c1fa Mon Sep 17 00:00:00 2001 From: Bryan Hundven Date: Tue, 9 Dec 2014 17:36:44 -0800 Subject: config/glibc: Disable ports/ for 2.20 As per the glibc release notes for 2.20: -------------------------------------------------------------------------------- All supported architectures now use the main glibc sysdeps directory instead of some being in a separate "ports" directory (which was distributed separately before glibc 2.17). -------------------------------------------------------------------------------- There isn't a ports directory anymore. So disable using and forcing it. closes #7 on crosstool-ng github Signed-off-by: Bryan Hundven diff --git a/config/libc/glibc-eglibc.in-common b/config/libc/glibc-eglibc.in-common index 6c5d2f0..f199e3a 100644 --- a/config/libc/glibc-eglibc.in-common +++ b/config/libc/glibc-eglibc.in-common @@ -14,6 +14,7 @@ config LIBC_GLIBC_MAY_FORCE_PORTS default y if ARCH_arm default y if ARCH_mips select LIBC_GLIBC_USE_PORTS + depends on !LIBC_GLIBC_2_20_or_later # Force using the BFD linker during the toolchain build config LIBC_glibc_familly @@ -121,6 +122,7 @@ config LIBC_GLIBC_FORCE_UNWIND config LIBC_GLIBC_USE_PORTS bool prompt "Use the ports addon" + depends on !LIBC_GLIBC_2_20_or_later help The ports addon contains some architecture ports that are not available in the official distribution. -- cgit v0.10.2-6-g49f6 From 9159846334ce9a8e2f2e96c5407cea4ed4f2db6d Mon Sep 17 00:00:00 2001 From: Bryan Hundven Date: Tue, 9 Dec 2014 22:15:08 -0800 Subject: gdb: fix typo made in gdb build script I made a typo in: 1e17619b273fb49f8d2e162f34c26994698285b3 It should be version, not release. Signed-off-by: Bryan Hundven diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index dea5eae..149a2f8 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -51,7 +51,7 @@ do_debug_gdb_get() { if [ "${CT_GDB_CUSTOM}" = "y" ]; then CT_GetCustom "gdb" "${CT_GDB_VERSION}" "${CT_GDB_CUSTOM_LOCATION}" else - if [ x"${linaro_release}" = x"${CT_GDB_VERSION}" ]; then + if [ x"${linaro_version}" = x"${CT_GDB_VERSION}" ]; then CT_GetFile "gdb-${CT_GDB_VERSION}" \ ftp://{sourceware.org,gcc.gnu.org}/pub/gdb/releases \ {http,ftp,https}://ftp.gnu.org/pub/gnu/gdb -- cgit v0.10.2-6-g49f6