This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_stm32/gnu_eabi-master-arm_eabi-coremark-O3-vs-O3_LTO in repository toolchain/ci/newlib.
from 80cda9bbd Cygwin: bump DLL version to 3.2.1 adds fdda29fb5 Cygwin: fhandler: Rename handles from XXX_cyg/XXX to XXX/XXX_nat. adds ba2fbfec9 Cygwin: pty: Use find_exec() rather than path_conv::check(). adds 8bb5161fe Cygwin: pty: Use atexit() instead of hooking exit() for GDB. adds caa78917b Cygwin: select: don't set ready for exception on socket shutdown adds ef95c0352 Cygwin: select: Fix FD_CLOSE handling adds 436e47584 Cygwin: select: set_bits: fix return value new 20d008199 RISC-V: Using SYS_clock_gettime64 for rv32 libgloss. new 80bd01ef8 Add build mechanism to share common header files between machines new c326ca161 configure.host: define shared ix86 and x86_64 directory new 79ac4237d fenv: add missing declarations to x86 fenv.h new 05753071c fenv: Move shared x86 sys/fenv.h from x86_64 to shared_x86 new 642be00cd fenv: move shared x86 fenv.c to libm/machine/shared_x86 new 3b22d7225 fenv: drop Cygwin-specific implementation in favor of newlib code new cc19109af Cygwin: don't export _feinitialise from newlib new 81137c50d Cygwin: fix fenv.h includes new 707824848 fenv: fix up stub file comment, drop symlinks from description
The 10 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/riscv/machine/syscall.h | 1 + libgloss/riscv/sys_gettimeofday.c | 21 + newlib/Makefile.am | 36 ++ newlib/Makefile.in | 37 ++ newlib/acinclude.m4 | 1 + newlib/configure | 6 +- newlib/configure.host | 11 +- newlib/libc/Makefile.in | 1 + newlib/libc/argz/Makefile.in | 1 + newlib/libc/configure | 7 +- newlib/libc/configure.in | 1 + newlib/libc/ctype/Makefile.in | 1 + newlib/libc/errno/Makefile.in | 1 + newlib/libc/iconv/Makefile.in | 1 + newlib/libc/iconv/ccs/Makefile.in | 1 + newlib/libc/iconv/ccs/binary/Makefile.in | 1 + newlib/libc/iconv/ces/Makefile.in | 1 + newlib/libc/iconv/lib/Makefile.in | 1 + newlib/libc/locale/Makefile.in | 1 + newlib/libc/machine/i386/sys/fenv.h | 1 - .../libc/machine/{x86_64 => shared_x86}/sys/fenv.h | 15 +- newlib/libc/misc/Makefile.in | 1 + newlib/libc/posix/Makefile.in | 1 + newlib/libc/reent/Makefile.in | 1 + newlib/libc/search/Makefile.in | 1 + newlib/libc/signal/Makefile.in | 1 + newlib/libc/ssp/Makefile.in | 1 + newlib/libc/stdio/Makefile.in | 1 + newlib/libc/stdio64/Makefile.in | 1 + newlib/libc/stdlib/Makefile.in | 1 + newlib/libc/string/Makefile.in | 1 + newlib/libc/syscalls/Makefile.in | 1 + newlib/libc/time/Makefile.in | 1 + newlib/libc/unix/Makefile.in | 1 + newlib/libc/xdr/Makefile.in | 1 + newlib/libm/Makefile.in | 1 + newlib/libm/common/Makefile.in | 1 + newlib/libm/complex/Makefile.in | 1 + newlib/libm/configure | 6 +- newlib/libm/fenv/Makefile.in | 7 +- newlib/libm/fenv/fenv_stub.c | 20 +- newlib/libm/machine/i386/fenv.c | 2 +- newlib/libm/machine/{x86_64 => shared_x86}/fenv.c | 0 newlib/libm/machine/x86_64/fenv.c | 474 +-------------------- newlib/libm/math/Makefile.in | 1 + newlib/libm/mathfp/Makefile.in | 1 + winsup/cygwin/autoload.cc | 2 +- winsup/cygwin/dcrt0.cc | 4 +- winsup/cygwin/fenv.c | 5 + winsup/cygwin/fenv.cc | 466 -------------------- winsup/cygwin/fhandler.h | 32 +- winsup/cygwin/fhandler_socket_inet.cc | 26 +- winsup/cygwin/fhandler_tty.cc | 470 ++++++++++---------- winsup/cygwin/include/fenv.h | 177 -------- winsup/cygwin/select.cc | 41 +- winsup/cygwin/spawn.cc | 24 +- winsup/cygwin/tty.cc | 6 +- winsup/cygwin/tty.h | 18 +- 58 files changed, 507 insertions(+), 1439 deletions(-) delete mode 120000 newlib/libc/machine/i386/sys/fenv.h rename newlib/libc/machine/{x86_64 => shared_x86}/sys/fenv.h (96%) copy newlib/libm/machine/{x86_64 => shared_x86}/fenv.c (100%) create mode 100644 winsup/cygwin/fenv.c delete mode 100644 winsup/cygwin/fenv.cc delete mode 100644 winsup/cygwin/include/fenv.h