This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pie/static in repository glibc.
discards 433a52a4b7 Don't use hidden visibility in libc.a with PIE on i386 discards 26d7bbd7b7 Add --enable-static-pie to build static PIE adds ebd6f0076a Remove cancellation support for syscall generation adds 3d7b66f66c Fix the C++ version of issignaling when __NO_LONG_DOUBLE_MAT [...] adds bba5c93094 Remove powerpc32 sqrt wrappers. adds 23761119fe Clean up bits/math-finite.h for aliasing types. adds a6ccdb0839 Use __HAVE_DISTINCT_FLOAT128 in tgmath.h. adds 39e7a5a668 [AArch64] Fix elf_greg_t on ILP32 adds 7ab70c98e8 x86: Remove assembly versions of index_cpu_*/index_arch_* new 8a057d6f04 Add --enable-static-pie to build static PIE new 213129abee Don't use hidden visibility in libc.a with PIE on i386
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (433a52a4b7) \ N -- N -- N refs/heads/hjl/pie/static (213129abee)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 2 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: ChangeLog | 232 +++++++++++++++++++ Makeconfig | 2 +- configure | 31 --- configure.ac | 19 -- math/bits/math-finite.h | 23 +- math/math.h | 34 ++- math/tgmath.h | 2 +- .../powerpc32/power4/fpu/multiarch/Makefile | 2 - .../power4/fpu/multiarch/w_sqrt_compat-power5.S | 31 --- .../power4/fpu/multiarch/w_sqrt_compat-ppc32.S | 31 --- .../powerpc32/power4/fpu/multiarch/w_sqrt_compat.c | 40 ---- .../power4/fpu/multiarch/w_sqrtf_compat-power5.S | 26 --- .../power4/fpu/multiarch/w_sqrtf_compat-ppc32.S | 26 --- .../power4/fpu/multiarch/w_sqrtf_compat.c | 32 --- .../powerpc/powerpc32/power4/fpu/w_sqrt_compat.S | 109 --------- .../powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S | 101 --------- .../powerpc/powerpc32/power5/fpu/w_sqrt_compat.S | 107 --------- .../powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S | 99 -------- sysdeps/unix/make-syscalls.sh | 4 - sysdeps/unix/syscall-template.S | 12 +- sysdeps/unix/sysv/linux/aarch64/sys/procfs.h | 3 +- sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h | 97 +------- sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h | 139 +----------- sysdeps/unix/sysv/linux/arm/sysdep-cancel.h | 207 +---------------- sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h | 235 +------------------ sysdeps/unix/sysv/linux/i386/sysdep-cancel.h | 129 +---------- sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h | 203 +---------------- sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h | 115 +--------- sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h | 126 +---------- .../unix/sysv/linux/mips/mips64/sysdep-cancel.h | 249 --------------------- sysdeps/unix/sysv/linux/mips/sysdep-cancel.h | 166 +------------- sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h | 117 +--------- .../sysv/linux/powerpc/powerpc32/sysdep-cancel.h | 118 ---------- .../sysv/linux/powerpc/powerpc64/sysdep-cancel.h | 147 ------------ .../sysv/linux/powerpc/sysdep-cancel.h} | 20 +- .../unix/sysv/linux/s390/s390-32/sysdep-cancel.h | 115 +--------- .../unix/sysv/linux/s390/s390-64/sysdep-cancel.h | 117 +--------- sysdeps/unix/sysv/linux/sh/sysdep-cancel.h | 146 +----------- .../unix/sysv/linux/sparc/sparc32/sysdep-cancel.h | 111 --------- .../unix/sysv/linux/sparc/sparc64/sysdep-cancel.h | 109 --------- .../sysv/linux/sparc/sysdep-cancel.h} | 26 ++- sysdeps/unix/sysv/linux/tile/sysdep-cancel.h | 130 +---------- sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h | 74 +----- sysdeps/x86/cpu-features.h | 43 +--- sysdeps/x86_64/configure | 8 +- sysdeps/x86_64/configure.ac | 8 +- 46 files changed, 404 insertions(+), 3517 deletions(-) delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-power5.S delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-ppc32.S delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat.c delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-power5.S delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-ppc32.S delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat.c delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt_compat.S delete mode 100644 sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S delete mode 100644 sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt_compat.S delete mode 100644 sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S delete mode 100644 sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h delete mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h delete mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h copy sysdeps/{powerpc/powerpc64/fpu/multiarch/s_cosf-ppc64.c => unix/sysv/linux/po [...] delete mode 100644 sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h delete mode 100644 sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h copy sysdeps/{powerpc/powerpc64/fpu/multiarch/s_llroundf-ppc64.S => unix/sysv/linu [...]