From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20539 invoked by alias); 17 Mar 2019 18:37:56 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Received: (qmail 20530 invoked by uid 89); 17 Mar 2019 18:37:56 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=4.0 required=5.0 tests=AWL,BAYES_00,CROSSGCC_BAD,GIT_PATCH_2,KAM_LOTSOFHASH,SPF_PASS autolearn=no version=3.3.1 spammy=Meet, mint, 2x, heads X-HELO: out-9.smtp.github.com Received: from out-9.smtp.github.com (HELO out-9.smtp.github.com) (192.30.254.192) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 17 Mar 2019 18:37:47 +0000 Date: Sun, 17 Mar 2019 18:37:00 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1552847865; bh=fmw4iBHTBWNkymQPBZnjnWC+4ZyusWnLpvRuh49FY6Q=; h=Date:From:To:Subject:From; b=mtEZtA2kJRcaDFnw0vOGI+Uety+nGCahZ3HByN4o+tNTzxJzGzhyEVcW7lU1QMOi3 JotKH1wWSRKS3Do5Rai0aJJK1bVXmzdXlqt21fnI9kbsvYtzZ3YcKPic6uD7z5AvRv ZyQjf25uXYqmn+p3vF1CbsigYhAzgvcRswCPiBlg= From: Alexey Neyman To: crossgcc@sourceware.org Message-ID: Subject: [crosstool-ng/crosstool-ng] 862c35: Fix build of glibc 2.29 on systems with obsolete h... Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-GitHub-Recipient-Address: crossgcc@sourceware.org X-Auto-Response-Suppress: All X-SW-Source: 2019-03/txt/msg00009.txt.bz2 Branch: refs/heads/master Home: https://github.com/crosstool-ng/crosstool-ng Commit: 862c35457d2cb95124d802d5dbeddb4815dc08c1 https://github.com/crosstool-ng/crosstool-ng/commit/862c35457d2cb95124d802d5dbeddb4815dc08c1 Author: Alexey Neyman Date: 2019-03-02 (Sat, 02 Mar 2019) Changed paths: M config/comp_tools/make.in M config/configure.in.in M config/libc/glibc.in M configure.ac M m4/ctng_version_check.m4 M packages/glibc/package.desc M packages/make/package.desc M paths.sh.in M scripts/build/companion_tools/050-make.sh M scripts/build/debug/300-gdb.sh Log Message: ----------- Fix build of glibc 2.29 on systems with obsolete host programs - Force building make as a companion tool if host make is older than 4.0 (CentOS 7 currently has 3.82) - Disable 2.29 as a choice if host python is older than 3.4 (CentOS 7 has 2.6 unless python from EPEL is installed) - Python2 emits its version information to STDERR. Ugh. While there, also use the detected host Python for GDB configuration. Signed-off-by: Alexey Neyman Commit: 6cfdb7189426f29e858ebe8dc218d1da9c5c3a7d https://github.com/crosstool-ng/crosstool-ng/commit/6cfdb7189426f29e858ebe8dc218d1da9c5c3a7d Author: Alexey Neyman Date: 2019-03-02 (Sat, 02 Mar 2019) Changed paths: M testing/docker/centos7/Dockerfile Log Message: ----------- Install Python3 from EPEL on CentOS7 Signed-off-by: Alexey Neyman Commit: 8d65fc7fc2796091be97fd37a52abd797f9d5c9a https://github.com/crosstool-ng/crosstool-ng/commit/8d65fc7fc2796091be97fd37a52abd797f9d5c9a Author: Alexey Neyman Date: 2019-03-02 (Sat, 02 Mar 2019) Changed paths: M testing/docker/dmgr.sh Log Message: ----------- Detect errors in each container if running an action ... in more than one; then complain at the end. Signed-off-by: Alexey Neyman Commit: da11216f8d2630a3a3409ae17549bc0f472d64b6 https://github.com/crosstool-ng/crosstool-ng/commit/da11216f8d2630a3a3409ae17549bc0f472d64b6 Author: Alexey Neyman Date: 2019-03-04 (Mon, 04 Mar 2019) Changed paths: M testing/docker/centos6/Dockerfile Log Message: ----------- Centos6 also needs python3 Signed-off-by: Alexey Neyman Commit: b3cce054ef381502af4f58105604081bf431ac9e https://github.com/crosstool-ng/crosstool-ng/commit/b3cce054ef381502af4f58105604081bf431ac9e Author: Alexey Neyman Date: 2019-03-04 (Mon, 04 Mar 2019) Changed paths: A config/comp_tools/bison.in M config/configure.in.in M config/libc/glibc.in M configure.ac A packages/bison/3.0.5/chksum A packages/bison/3.0.5/version.desc A packages/bison/3.1/chksum A packages/bison/3.1/version.desc A packages/bison/3.2.4/chksum A packages/bison/3.2.4/version.desc A packages/bison/3.3.2/chksum A packages/bison/3.3.2/version.desc A packages/bison/package.desc A scripts/build/companion_tools/510-bison.sh M scripts/crosstool-NG.sh Log Message: ----------- Meet our new companion tool, bison Which is here courtesy of CentOS6, which only has bison 2.4 - while new glibc requires 2.7. Signed-off-by: Alexey Neyman Commit: 4ddad7b34f37f87e33e833f75a071c3775adc8cd https://github.com/crosstool-ng/crosstool-ng/commit/4ddad7b34f37f87e33e833f75a071c3775adc8cd Author: Alexey Neyman Date: 2019-03-05 (Tue, 05 Mar 2019) Changed paths: M config/configure.in.in M config/debug/gdb.in M configure.ac A m4/ax_cxx_compile_stdcxx.m4 M m4/ax_with_curses_extra.m4 M m4/ctng_set_kconfig_option.m4 Log Message: ----------- CentOS6 cannot use newer GDB releases ... unless one retrofits it with a decent compiler instead of stock GCC 4.4. While here, sync up the ax_*.m4 with autoconf-archive. Signed-off-by: Alexey Neyman Commit: 32af07341db19d0291f962dc0ffbb49429d06358 https://github.com/crosstool-ng/crosstool-ng/commit/32af07341db19d0291f962dc0ffbb49429d06358 Author: Alexey Neyman Date: 2019-03-06 (Wed, 06 Mar 2019) Changed paths: A packages/gdb/7.12.1/0005-include-order.patch Log Message: ----------- GDB 7.12.1 fails to build in certain configurations ... for which we pick up a patch from upstream. Signed-off-by: Alexey Neyman Commit: 1e25ebc7e04b610bf8324d6e428b320b3ed87009 https://github.com/crosstool-ng/crosstool-ng/commit/1e25ebc7e04b610bf8324d6e428b320b3ed87009 Author: Alexey Neyman Date: 2019-03-09 (Sat, 09 Mar 2019) Changed paths: M config/debug/gdb.in R config/debug/gdb.in.gdbserver M config/debug/gdb.in.native M ct-ng.in A packages/gdb/7.11.1/0004-include-order.patch M scripts/build/companion_libs/220-ncurses.sh M scripts/build/debug/300-gdb.sh A scripts/upgrade/v2 A testing/upgrade/kconfig-list/3 M testing/upgrade/run.sh Log Message: ----------- Move GDB build into a common backend function ... needed to create a common runtime test for an incompatible change in glibc API. Signed-off-by: Alexey Neyman Commit: 5332f480e44d2eed46faf3290b385d141ccc2df8 https://github.com/crosstool-ng/crosstool-ng/commit/5332f480e44d2eed46faf3290b385d141ccc2df8 Author: Alexey Neyman Date: 2019-03-09 (Sat, 09 Mar 2019) Changed paths: M samples/aarch64-rpi3-linux-gnu/crosstool.config M samples/aarch64-unknown-linux-android/crosstool.config M samples/aarch64-unknown-linux-gnu/crosstool.config M samples/aarch64-unknown-linux-uclibc/crosstool.config M samples/alphaev56-unknown-linux-gnu/crosstool.config M samples/alphaev67-unknown-linux-gnu/crosstool.config M samples/arc-arc700-linux-uclibc/crosstool.config M samples/arc-multilib-elf32/crosstool.config M samples/arc-multilib-linux-uclibc/crosstool.config M samples/arm-bare_newlib_cortex_m3_nommu-eabi/crosstool.config M samples/arm-cortex_a15-linux-gnueabihf/crosstool.config M samples/arm-cortex_a8-linux-gnueabi/crosstool.config M samples/arm-cortexa5-linux-uclibcgnueabihf/crosstool.config M samples/arm-cortexa9_neon-linux-gnueabihf/crosstool.config M samples/arm-multilib-linux-uclibcgnueabi/crosstool.config M samples/arm-nano-eabi/crosstool.config M samples/arm-unknown-eabi/crosstool.config M samples/arm-unknown-linux-gnueabi/crosstool.config M samples/arm-unknown-linux-musleabi/crosstool.config M samples/arm-unknown-linux-uclibcgnueabi/crosstool.config M samples/arm-unknown-linux-uclibcgnueabihf/crosstool.config M samples/armeb-unknown-eabi/crosstool.config M samples/armeb-unknown-linux-gnueabi/crosstool.config M samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config M samples/armv6-nommu-linux-uclibcgnueabi/crosstool.config M samples/armv6-rpi-linux-gnueabi/crosstool.config M samples/armv7-rpi2-linux-gnueabihf/crosstool.config M samples/armv8-rpi3-linux-gnueabihf/crosstool.config M samples/avr/crosstool.config M samples/i586-geode-linux-uclibc/crosstool.config M samples/i686-centos6-linux-gnu/crosstool.config M samples/i686-centos7-linux-gnu/crosstool.config M samples/i686-nptl-linux-gnu/crosstool.config M samples/i686-ubuntu12.04-linux-gnu/crosstool.config M samples/i686-ubuntu14.04-linux-gnu/crosstool.config M samples/i686-ubuntu16.04-linux-gnu/crosstool.config M samples/i686-w64-mingw32,nios2-spico-elf/crosstool.config M samples/i686-w64-mingw32/crosstool.config M samples/m68k-unknown-elf/crosstool.config M samples/m68k-unknown-uclinux-uclibc/crosstool.config M samples/mips-ar2315-linux-gnu/crosstool.config M samples/mips-malta-linux-gnu/crosstool.config M samples/mips-unknown-elf/crosstool.config M samples/mips-unknown-linux-uclibc/crosstool.config M samples/mips64el-multilib-linux-uclibc/crosstool.config M samples/mipsel-multilib-linux-gnu/crosstool.config M samples/mipsel-sde-elf/crosstool.config M samples/mipsel-unknown-linux-gnu/crosstool.config M samples/moxie-unknown-elf/crosstool.config M samples/moxiebox/crosstool.config M samples/msp430-unknown-elf/crosstool.config M samples/nios2-altera-linux-gnu/crosstool.config M samples/nios2-unknown-elf/crosstool.config M samples/powerpc-405-linux-gnu/crosstool.config M samples/powerpc-8540-linux-gnu/crosstool.config M samples/powerpc-860-linux-gnu/crosstool.config M samples/powerpc-e300c3-linux-gnu/crosstool.config M samples/powerpc-e500v2-linux-gnuspe/crosstool.config M samples/powerpc-unknown-linux-gnu/crosstool.config M samples/powerpc-unknown-linux-uclibc,m68k-unknown-uclinux-uclibc/crosstool.config M samples/powerpc-unknown-linux-uclibc/crosstool.config M samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config M samples/powerpc64-multilib-linux-gnu/crosstool.config M samples/powerpc64-unknown-linux-gnu/crosstool.config M samples/powerpc64le-unknown-linux-gnu/crosstool.config M samples/riscv32-hifive1-elf/crosstool.config M samples/riscv32-unknown-elf/crosstool.config M samples/riscv64-unknown-elf/crosstool.config M samples/riscv64-unknown-linux-gnu/crosstool.config M samples/s390-ibm-linux-gnu/crosstool.config M samples/s390x-ibm-linux-gnu/crosstool.config M samples/sh-multilib-linux-gnu/crosstool.config M samples/sh-multilib-linux-uclibc/crosstool.config M samples/sh-unknown-elf/crosstool.config M samples/sparc-leon-linux-uclibc/crosstool.config M samples/sparc-unknown-linux-gnu/crosstool.config M samples/sparc64-multilib-linux-gnu/crosstool.config M samples/x86_64-centos6-linux-gnu/crosstool.config M samples/x86_64-centos7-linux-gnu/crosstool.config M samples/x86_64-multilib-linux-gnu/crosstool.config M samples/x86_64-multilib-linux-musl/crosstool.config M samples/x86_64-multilib-linux-uclibc,moxie-unknown-moxiebox/crosstool.config M samples/x86_64-multilib-linux-uclibc,powerpc-unknown-elf/crosstool.config M samples/x86_64-multilib-linux-uclibc/crosstool.config M samples/x86_64-ubuntu12.04-linux-gnu/crosstool.config M samples/x86_64-ubuntu14.04-linux-gnu/crosstool.config M samples/x86_64-ubuntu16.04-linux-gnu/crosstool.config M samples/x86_64-unknown-linux-gnu/crosstool.config M samples/x86_64-unknown-linux-uclibc/crosstool.config M samples/x86_64-w64-mingw32,arm-cortexa9_neon-linux-gnueabihf/crosstool.config M samples/x86_64-w64-mingw32,x86_64-pc-linux-gnu/crosstool.config M samples/x86_64-w64-mingw32/crosstool.config M samples/xtensa-fsf-elf/crosstool.config M samples/xtensa-fsf-linux-uclibc/crosstool.config Log Message: ----------- Update the samples to v3 Signed-off-by: Alexey Neyman Commit: de36f78f898940e7611b177e9ccd97516f131caf https://github.com/crosstool-ng/crosstool-ng/commit/de36f78f898940e7611b177e9ccd97516f131caf Author: Alexey Neyman Date: 2019-03-11 (Mon, 11 Mar 2019) Changed paths: M config/debug/gdb.in A packages/gdb/7.11.1/0005-include-gregset.h.patch M scripts/build/debug/300-gdb.sh Log Message: ----------- Allow older GDB to build against newer glibc Also, fix the subdir used when only gdbserver is built (without native GDB). Signed-off-by: Alexey Neyman Commit: a75a770595079619e61e1623698e420427924cf9 https://github.com/crosstool-ng/crosstool-ng/commit/a75a770595079619e61e1623698e420427924cf9 Author: Alexey Neyman Date: 2019-03-12 (Tue, 12 Mar 2019) Changed paths: M scripts/build/debug/300-gdb.sh Log Message: ----------- Make the proc_service.h workaround apply to gdbserver ... when it is compiled without the native GDB. Also, fix the gdbserver to be installed without a program prefix in this case, as it was before the unification of the GDB backend. Signed-off-by: Alexey Neyman Commit: 8b8e6b4e5d1932268ac150688e619cef78b75999 https://github.com/crosstool-ng/crosstool-ng/commit/8b8e6b4e5d1932268ac150688e619cef78b75999 Author: Alexey Neyman Date: 2019-03-13 (Wed, 13 Mar 2019) Changed paths: A packages/gdb/7.12.1/0006-duplicate-typedef.patch Log Message: ----------- Remove "event-loop.h" inclusion from "top.h" Older GCCs (e.g. GCC 4.4 in CentOS 6) chokes on having two identical typedefs like this: typedef void *p; typedef void *p; The event-loop.h header does not have a guard against double-inclusion. Not the best solution, but it works and eventually 7.12 will fall into obsolescence anyway. Signed-off-by: Alexey Neyman Commit: cbd9af9ac97f50f13ea0e60daeb67e4a9cb85270 https://github.com/crosstool-ng/crosstool-ng/commit/cbd9af9ac97f50f13ea0e60daeb67e4a9cb85270 Author: Alexey Neyman Date: 2019-03-14 (Thu, 14 Mar 2019) Changed paths: M packages/gdb/7.12.1/0006-duplicate-typedef.patch Log Message: ----------- event-loop.h is included via other paths, too ... so instead add an include guard. Signed-off-by: Alexey Neyman Commit: 11f86e8b56bf5693b634a4af6295adc27361e6da https://github.com/crosstool-ng/crosstool-ng/commit/11f86e8b56bf5693b634a4af6295adc27361e6da Author: Alexey Neyman Date: 2019-03-14 (Thu, 14 Mar 2019) Changed paths: M m4/ax_with_curses_extra.m4 Log Message: ----------- Reapply b34137 ... which fixes detection on Alpine Linux (which has ncursesw but installs it into plain /usr/include). Signed-off-by: Alexey Neyman Commit: b9e3a7de9ca2a0b700264d8294242fc7db3bf2e4 https://github.com/crosstool-ng/crosstool-ng/commit/b9e3a7de9ca2a0b700264d8294242fc7db3bf2e4 Author: Alexey Neyman Date: 2019-03-14 (Thu, 14 Mar 2019) Changed paths: R testing/docker/fedora28/Dockerfile A testing/docker/fedora29/Dockerfile Log Message: ----------- Use fedora29 as a reference Signed-off-by: Alexey Neyman Commit: 48489ebb9de1ea1fbb21c107aca7351bbd4e8b7c https://github.com/crosstool-ng/crosstool-ng/commit/48489ebb9de1ea1fbb21c107aca7351bbd4e8b7c Author: Alexey Neyman Date: 2019-03-15 (Fri, 15 Mar 2019) Changed paths: A testing/docker/alpine3.8/EXPERIMENTAL Log Message: ----------- Note the experimental status of Alpine I don't have the time to fix all the various breakages it shows. Signed-off-by: Alexey Neyman Commit: 3be2ba2f0d3cb8264f1cfa03b1359823c11e6b22 https://github.com/crosstool-ng/crosstool-ng/commit/3be2ba2f0d3cb8264f1cfa03b1359823c11e6b22 Author: Alexey Neyman Date: 2019-03-15 (Fri, 15 Mar 2019) Changed paths: M testing/docker/fedora29/Dockerfile Log Message: ----------- Install python3 on Fedora29 GDB doesn't accept older 2.x as a valid choice. Signed-off-by: Alexey Neyman Commit: e4475c33df8702ec780f24ac482d5d9c2fc72d6d https://github.com/crosstool-ng/crosstool-ng/commit/e4475c33df8702ec780f24ac482d5d9c2fc72d6d Author: Alexey Neyman Date: 2019-03-17 (Sun, 17 Mar 2019) Changed paths: M testing/docker/mint19-amd64/Dockerfile Log Message: ----------- Install python3 in Mint Signed-off-by: Alexey Neyman Commit: 89ba62fb1daad737cdb33c3b1ef69092beeaab0b https://github.com/crosstool-ng/crosstool-ng/commit/89ba62fb1daad737cdb33c3b1ef69092beeaab0b Author: Alexey Neyman Date: 2019-03-17 (Sun, 17 Mar 2019) Changed paths: A config/comp_tools/bison.in M config/comp_tools/make.in M config/configure.in.in M config/debug/gdb.in R config/debug/gdb.in.gdbserver M config/debug/gdb.in.native M config/libc/glibc.in M configure.ac M ct-ng.in A m4/ax_cxx_compile_stdcxx.m4 M m4/ctng_set_kconfig_option.m4 M m4/ctng_version_check.m4 A packages/bison/3.0.5/chksum A packages/bison/3.0.5/version.desc A packages/bison/3.1/chksum A packages/bison/3.1/version.desc A packages/bison/3.2.4/chksum A packages/bison/3.2.4/version.desc A packages/bison/3.3.2/chksum A packages/bison/3.3.2/version.desc A packages/bison/package.desc A packages/gdb/7.11.1/0004-include-order.patch A packages/gdb/7.11.1/0005-include-gregset.h.patch A packages/gdb/7.12.1/0005-include-order.patch A packages/gdb/7.12.1/0006-duplicate-typedef.patch M packages/glibc/package.desc M packages/make/package.desc M paths.sh.in M samples/aarch64-rpi3-linux-gnu/crosstool.config M samples/aarch64-unknown-linux-android/crosstool.config M samples/aarch64-unknown-linux-gnu/crosstool.config M samples/aarch64-unknown-linux-uclibc/crosstool.config M samples/alphaev56-unknown-linux-gnu/crosstool.config M samples/alphaev67-unknown-linux-gnu/crosstool.config M samples/arc-arc700-linux-uclibc/crosstool.config M samples/arc-multilib-elf32/crosstool.config M samples/arc-multilib-linux-uclibc/crosstool.config M samples/arm-bare_newlib_cortex_m3_nommu-eabi/crosstool.config M samples/arm-cortex_a15-linux-gnueabihf/crosstool.config M samples/arm-cortex_a8-linux-gnueabi/crosstool.config M samples/arm-cortexa5-linux-uclibcgnueabihf/crosstool.config M samples/arm-cortexa9_neon-linux-gnueabihf/crosstool.config M samples/arm-multilib-linux-uclibcgnueabi/crosstool.config M samples/arm-nano-eabi/crosstool.config M samples/arm-unknown-eabi/crosstool.config M samples/arm-unknown-linux-gnueabi/crosstool.config M samples/arm-unknown-linux-musleabi/crosstool.config M samples/arm-unknown-linux-uclibcgnueabi/crosstool.config M samples/arm-unknown-linux-uclibcgnueabihf/crosstool.config M samples/armeb-unknown-eabi/crosstool.config M samples/armeb-unknown-linux-gnueabi/crosstool.config M samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config M samples/armv6-nommu-linux-uclibcgnueabi/crosstool.config M samples/armv6-rpi-linux-gnueabi/crosstool.config M samples/armv7-rpi2-linux-gnueabihf/crosstool.config M samples/armv8-rpi3-linux-gnueabihf/crosstool.config M samples/avr/crosstool.config M samples/i586-geode-linux-uclibc/crosstool.config M samples/i686-centos6-linux-gnu/crosstool.config M samples/i686-centos7-linux-gnu/crosstool.config M samples/i686-nptl-linux-gnu/crosstool.config M samples/i686-ubuntu12.04-linux-gnu/crosstool.config M samples/i686-ubuntu14.04-linux-gnu/crosstool.config M samples/i686-ubuntu16.04-linux-gnu/crosstool.config M samples/i686-w64-mingw32,nios2-spico-elf/crosstool.config M samples/i686-w64-mingw32/crosstool.config M samples/m68k-unknown-elf/crosstool.config M samples/m68k-unknown-uclinux-uclibc/crosstool.config M samples/mips-ar2315-linux-gnu/crosstool.config M samples/mips-malta-linux-gnu/crosstool.config M samples/mips-unknown-elf/crosstool.config M samples/mips-unknown-linux-uclibc/crosstool.config M samples/mips64el-multilib-linux-uclibc/crosstool.config M samples/mipsel-multilib-linux-gnu/crosstool.config M samples/mipsel-sde-elf/crosstool.config M samples/mipsel-unknown-linux-gnu/crosstool.config M samples/moxie-unknown-elf/crosstool.config M samples/moxiebox/crosstool.config M samples/msp430-unknown-elf/crosstool.config M samples/nios2-altera-linux-gnu/crosstool.config M samples/nios2-unknown-elf/crosstool.config M samples/powerpc-405-linux-gnu/crosstool.config M samples/powerpc-8540-linux-gnu/crosstool.config M samples/powerpc-860-linux-gnu/crosstool.config M samples/powerpc-e300c3-linux-gnu/crosstool.config M samples/powerpc-e500v2-linux-gnuspe/crosstool.config M samples/powerpc-unknown-linux-gnu/crosstool.config M samples/powerpc-unknown-linux-uclibc,m68k-unknown-uclinux-uclibc/crosstool.config M samples/powerpc-unknown-linux-uclibc/crosstool.config M samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config M samples/powerpc64-multilib-linux-gnu/crosstool.config M samples/powerpc64-unknown-linux-gnu/crosstool.config M samples/powerpc64le-unknown-linux-gnu/crosstool.config M samples/riscv32-hifive1-elf/crosstool.config M samples/riscv32-unknown-elf/crosstool.config M samples/riscv64-unknown-elf/crosstool.config M samples/riscv64-unknown-linux-gnu/crosstool.config M samples/s390-ibm-linux-gnu/crosstool.config M samples/s390x-ibm-linux-gnu/crosstool.config M samples/sh-multilib-linux-gnu/crosstool.config M samples/sh-multilib-linux-uclibc/crosstool.config M samples/sh-unknown-elf/crosstool.config M samples/sparc-leon-linux-uclibc/crosstool.config M samples/sparc-unknown-linux-gnu/crosstool.config M samples/sparc64-multilib-linux-gnu/crosstool.config M samples/x86_64-centos6-linux-gnu/crosstool.config M samples/x86_64-centos7-linux-gnu/crosstool.config M samples/x86_64-multilib-linux-gnu/crosstool.config M samples/x86_64-multilib-linux-musl/crosstool.config M samples/x86_64-multilib-linux-uclibc,moxie-unknown-moxiebox/crosstool.config M samples/x86_64-multilib-linux-uclibc,powerpc-unknown-elf/crosstool.config M samples/x86_64-multilib-linux-uclibc/crosstool.config M samples/x86_64-ubuntu12.04-linux-gnu/crosstool.config M samples/x86_64-ubuntu14.04-linux-gnu/crosstool.config M samples/x86_64-ubuntu16.04-linux-gnu/crosstool.config M samples/x86_64-unknown-linux-gnu/crosstool.config M samples/x86_64-unknown-linux-uclibc/crosstool.config M samples/x86_64-w64-mingw32,arm-cortexa9_neon-linux-gnueabihf/crosstool.config M samples/x86_64-w64-mingw32,x86_64-pc-linux-gnu/crosstool.config M samples/x86_64-w64-mingw32/crosstool.config M samples/xtensa-fsf-elf/crosstool.config M samples/xtensa-fsf-linux-uclibc/crosstool.config M scripts/build/companion_libs/220-ncurses.sh M scripts/build/companion_tools/050-make.sh A scripts/build/companion_tools/510-bison.sh M scripts/build/debug/300-gdb.sh M scripts/crosstool-NG.sh A scripts/upgrade/v2 A testing/docker/alpine3.8/EXPERIMENTAL M testing/docker/centos6/Dockerfile M testing/docker/centos7/Dockerfile M testing/docker/dmgr.sh R testing/docker/fedora28/Dockerfile A testing/docker/fedora29/Dockerfile M testing/docker/mint19-amd64/Dockerfile A testing/upgrade/kconfig-list/3 M testing/upgrade/run.sh Log Message: ----------- Merge pull request #1163 from stilor/docker-fixes Fix build on CentOS6/7 Compare: https://github.com/crosstool-ng/crosstool-ng/compare/c4126d939735...89ba62fb1daa