This is an automated email from the git hooks/post-receive script.
Charles Baylis pushed a change to branch stable in repository toolchain/abe.
from e469577c abe.sh: Update help, <user>@ is optional for --testcontainer. adds 871f67c9 Add CPPFLAGS to gdbserver configure line. adds c4b0a34f Fix typo: Andriod -> Android adds 2838d19a Cleanup Abe component gathering adds e59b625a Remove support for local ${component}.conf files adds 6a5906d7 Clean up version parsing from command line and .conf files. adds f50d880f Read *.conf files inside a subshell. adds e0532d77 Remove unused "installs" value from conf files. adds 6448cfff Remove broken "depends" variable from conf files. adds 792b81ac Clean up repeated sed operation for manifest paths. adds 50826839 Cleanup: add is_host_mingw function. adds 225211cb config/gcc.conf: Use --with-fpu for *hf targets only. adds dfc37d36 Always honour components' static_link config option. adds 27c8be5a Add configuration for gcc7. adds 6de91c74 Use Linux 4.10.3 for GCC 7 config. adds 47fec7c5 config/gcc.conf: Remove --enable-objc-gc adds ad27d655 Read date only once. adds 8313d873 Add configuration for master branches. adds 48293978 Cleanup legacy component sed usage. adds 80ee60c0 Add configuration for upstream latest release tags. adds fb1340b3 Remove dead code which treats gdbserver as a subcomponent. adds 4732b4d1 check host and target are same for bootstrap build adds bedfba87 Remove ccache use from Abe since it's no longer maintained. adds b341b658 Add --list-artifacts option adds 378106d4 Fix typo (isnt -> isn't) adds f5a306b3 Add logfiles to list of artifacts. adds 72071d02 Unify mingw and linux manifests. adds 096a6515 Add buildconfig option for specialized bootstrap builds. adds e1a3e11a abe.sh: Accept --set buildconfig=XXX without bootstrap if no [...] adds 316edbbc Fix newlib builds from manifests. adds 9c8f419e Use make -j ${cpus} for make check on armeb targets. adds 657bc285 Various --list-artifacts fixes. adds 3335625a Trap errors and unset variables in *.conf files. adds 6397e8ca Record location of .sum files as artifacts. adds 86e1619b Fix typo: uncommited -> uncommitted. adds 761db73b Cleanup accessor functions in lib/component.sh.
No new revisions were added by this update.
Summary of changes: abe.sh | 46 +++- config/binutils.conf | 20 +- config/cloog-parma.conf | 4 +- config/cloog-polylib.conf | 4 +- config/cloog-ppl.conf | 4 +- config/cloog.conf | 4 +- config/dejagnu.conf | 12 +- config/eembc.conf | 5 +- config/eglibc.conf | 10 +- config/expat.conf | 8 +- config/gcc.conf | 45 ++-- config/gcc7/binutils.conf | 1 + config/gcc7/gcc.conf | 1 + config/gcc7/glibc.conf | 1 + config/{gcc6 => gcc7}/gmp.conf | 2 +- config/{gcc6 => gcc7}/linux.conf | 2 +- config/{gcc6 => gcc7}/mpfr.conf | 2 +- config/gcc7/newlib.conf | 1 + config/gdb.conf | 25 +- config/gdbserver.conf | 7 +- config/glibc.conf | 5 +- config/gmp.conf | 8 +- config/infrastructure.conf | 1 + config/isl.conf | 4 +- config/latest-rel/binutils.conf | 2 + config/latest-rel/gcc.conf | 2 + config/latest-rel/gdb.conf | 2 + config/latest-rel/gdbserver.conf | 2 + config/latest-rel/glibc.conf | 2 + config/latest-rel/newlib.conf | 2 + config/linux.conf | 11 +- config/master/binutils.conf | 1 + config/master/gcc.conf | 1 + config/master/gdb.conf | 1 + config/master/gdbserver.conf | 1 + config/master/glibc.conf | 1 + config/{gcc6 => master}/gmp.conf | 2 +- config/{gcc6 => master}/linux.conf | 2 +- config/{gcc6 => master}/mpfr.conf | 2 +- config/master/newlib.conf | 1 + config/mpc.conf | 8 +- config/mpfr.conf | 8 +- config/newlib.conf | 5 +- config/ppl.conf | 4 +- config/python.conf | 8 +- config/qemu.conf | 4 +- configure | 42 --- configure.ac | 2 - lib/checkout.sh | 4 +- lib/common.sh | 16 +- lib/component.sh | 508 +++++++++++++++---------------------- lib/configure.sh | 37 +-- lib/globals.sh | 76 +++++- lib/make.sh | 113 +++++++-- lib/package.sh | 69 +++-- lib/release.sh | 2 +- testsuite/test.sh | 17 +- 57 files changed, 562 insertions(+), 618 deletions(-) create mode 100644 config/gcc7/binutils.conf create mode 100644 config/gcc7/gcc.conf create mode 100644 config/gcc7/glibc.conf copy config/{gcc6 => gcc7}/gmp.conf (71%) copy config/{gcc6 => gcc7}/linux.conf (68%) copy config/{gcc6 => gcc7}/mpfr.conf (70%) create mode 100644 config/gcc7/newlib.conf create mode 100644 config/latest-rel/binutils.conf create mode 100644 config/latest-rel/gcc.conf create mode 100644 config/latest-rel/gdb.conf create mode 100644 config/latest-rel/gdbserver.conf create mode 100644 config/latest-rel/glibc.conf create mode 100644 config/latest-rel/newlib.conf create mode 100644 config/master/binutils.conf create mode 100644 config/master/gcc.conf create mode 100644 config/master/gdb.conf create mode 100644 config/master/gdbserver.conf create mode 100644 config/master/glibc.conf copy config/{gcc6 => master}/gmp.conf (71%) copy config/{gcc6 => master}/linux.conf (68%) copy config/{gcc6 => master}/mpfr.conf (70%) create mode 100644 config/master/newlib.conf