This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_gnu_eabi_stm32/gnu_eabi-master-arm_eabi-coremark-O2 in repository toolchain/ci/newlib.
from 15a35758d Cygwin: termios: Ensure detection of GDB inferior in process_sigs(). adds f6db6f52a Cygwin: pinfo: Fix exit code for non-cygwin apps which reads [...] adds 8ff9f216f Cygwin: console: Improve the code to avoid typeahead key swapping. adds 95a28b1f9 Cygwin: pty: Isolate CTRL_C_EVENTs between ptys. new ec5ea6efa newlib: simplify header setup rules new 28724b2f6 newlib: libc: move stdio multiplex logic from build to source files new ed459780f libgloss: add a little build system generation documentation new a531ad972 newlib: speed up targ-include setup & add error checking new 644e8bba0 newlib: xstormy16: add missing string.h include
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: libgloss/doc/porting.texi | 50 ++- newlib/Makefile.am | 90 +--- newlib/Makefile.in | 99 ++--- newlib/libc/machine/xstormy16/tiny-malloc.c | 5 + newlib/libc/stdio/Makefile.am | 241 ++--------- newlib/libc/stdio/Makefile.in | 478 +++++++++------------ newlib/libc/stdio/nano-svfprintf.c | 2 + newlib/libc/stdio/nano-svfscanf.c | 2 + .../spu/vfiprintf.c => stdio/svfiprintf.c} | 1 + .../{machine/spu/vfiscanf.c => stdio/svfiscanf.c} | 1 + newlib/libc/stdio/svfiwprintf.c | 3 + newlib/libc/stdio/svfiwscanf.c | 3 + .../{machine/spu/vfiprintf.c => stdio/svfprintf.c} | 2 +- .../{machine/spu/vfiscanf.c => stdio/svfscanf.c} | 2 +- newlib/libc/stdio/svfwprintf.c | 2 + newlib/libc/stdio/svfwscanf.c | 2 + newlib/libc/{machine/spu => stdio}/vfiprintf.c | 0 newlib/libc/{machine/spu => stdio}/vfiscanf.c | 0 newlib/libc/stdio/vfiwprintf.c | 2 + newlib/libc/stdio/vfiwscanf.c | 2 + winsup/cygwin/exceptions.cc | 6 +- winsup/cygwin/fhandler_console.cc | 75 ++-- winsup/cygwin/fhandler_termios.cc | 6 +- winsup/cygwin/fhandler_tty.cc | 19 + winsup/cygwin/globals.cc | 2 +- winsup/cygwin/spawn.cc | 15 +- 26 files changed, 423 insertions(+), 687 deletions(-) create mode 100644 newlib/libc/stdio/nano-svfprintf.c create mode 100644 newlib/libc/stdio/nano-svfscanf.c copy newlib/libc/{machine/spu/vfiprintf.c => stdio/svfiprintf.c} (68%) copy newlib/libc/{machine/spu/vfiscanf.c => stdio/svfiscanf.c} (67%) create mode 100644 newlib/libc/stdio/svfiwprintf.c create mode 100644 newlib/libc/stdio/svfiwscanf.c copy newlib/libc/{machine/spu/vfiprintf.c => stdio/svfprintf.c} (51%) copy newlib/libc/{machine/spu/vfiscanf.c => stdio/svfscanf.c} (50%) create mode 100644 newlib/libc/stdio/svfwprintf.c create mode 100644 newlib/libc/stdio/svfwscanf.c copy newlib/libc/{machine/spu => stdio}/vfiprintf.c (100%) copy newlib/libc/{machine/spu => stdio}/vfiscanf.c (100%) create mode 100644 newlib/libc/stdio/vfiwprintf.c create mode 100644 newlib/libc/stdio/vfiwscanf.c