This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/cet/master in repository glibc.
discards b1550db22f x86: Check GNU_PROPERTY_X86_FEATURE_1_SHSTK isn't set discards d977bdb7ca x86: Support IBT and SHSTK in Intel CET [BZ #21598] discards f7c09dff9f Linux/x86: Support shadow stack pointer in setjmp/longjmp discards 417be2b481 x86: Add feature_1 to tcbhead_t [BZ #22563] discards 0b442303ae Linux/x86: Update cancel_jmp_buf to match __jmp_buf_tag [BZ #22563] adds 95511aab9d Fix testing with read-only source directory. adds 9d7a3741c9 Add --enable-static-pie configure option to build static PIE [...] adds 93930ea935 Fix tst-leaks1 (bug 14681) adds 984ae9967b New generic sincosf adds 0b9bef6d22 powerpc: Update ulps adds 2e77deef67 s390: Update ulps adds 7d38eb3897 ldconfig: set LC_COLLATE to C [BZ #22505] adds 14d886edbd aarch64: fix start code for static pie adds bb195224ac elf: do not substitute dst in $LD_LIBRARY_PATH twice [BZ #22627] adds c8e939f12a Update NEWS with aarch64 static pie support adds 368b6c8da9 mips64: fix clobbering s0 in setjmp() [BZ #22624] adds c85c564d14 mips32: fix clobbering s0 in setjmp() [BZ #22624] adds 49b036bce9 Fix nscd readlink argument aliasing (bug 22446). adds 8e1472d2c1 ld.so: Examine GLRO to detect inactive loader [BZ #20204] adds 00c714df39 Pass -no-pie to GCC only if GCC defaults to PIE [BZ #22614] new 2fc9116c38 Linux/x86: Update cancel_jmp_buf to match __jmp_buf_tag [BZ #22563] new 2634fdcbc7 x86: Add feature_1 to tcbhead_t [BZ #22563] new 7760864201 Linux/x86: Support shadow stack pointer in setjmp/longjmp new ad5328b8b8 x86: Support IBT and SHSTK in Intel CET [BZ #21598] new bec108fcf3 x86: Check GNU_PROPERTY_X86_FEATURE_1_SHSTK isn't set
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 (b1550db22f) \ N -- N -- N refs/heads/hjl/cet/master (bec108fcf3)
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 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: ChangeLog | 166 ++++++++++++++++++ INSTALL | 9 + Makeconfig | 42 ++++- NEWS | 13 ++ config.h.in | 3 + config.make.in | 1 + configure | 92 +++++++++- configure.ac | 37 ++++- csu/Makefile | 24 ++- csu/libc-start.c | 2 + csu/libc-tls.c | 6 +- .../x86_64/tst-x86_64mod-1.c => csu/static-reloc.c | 8 +- dlfcn/dladdr.c | 3 +- dlfcn/dladdr1.c | 3 +- dlfcn/dlclose.c | 2 +- dlfcn/dlerror.c | 2 +- dlfcn/dlinfo.c | 2 +- dlfcn/dlmopen.c | 2 +- dlfcn/dlopen.c | 2 +- dlfcn/dlopenold.c | 2 +- dlfcn/dlsym.c | 2 +- dlfcn/dlvsym.c | 2 +- elf/Makefile | 7 +- elf/dl-libc.c | 6 +- elf/dl-load.c | 20 +-- elf/dl-reloc-static-pie.c | 52 ++++++ elf/dl-support.c | 11 ++ elf/dynamic-link.h | 2 +- elf/get-dynamic-info.h | 6 +- elf/ldconfig.c | 4 + elf/rtld.c | 4 +- elf/tst-leaks1.c | 21 ++- gmon/Makefile | 25 ++- gmon/{tst-gmon-pie.c => tst-gmon-static-pie.c} | 0 io/Makefile | 2 + libio/vtables.c | 3 +- manual/install.texi | 9 + nscd/connections.c | 5 +- posix/tst-mmap-offset.c | 2 +- stdlib/tst-setcontext3.sh | 2 +- sysdeps/aarch64/start.S | 11 +- sysdeps/generic/ldsodefs.h | 31 +++- sysdeps/i386/configure | 33 ++++ sysdeps/i386/configure.ac | 23 +++ sysdeps/ieee754/flt-32/s_cosf.c | 100 +---------- sysdeps/ieee754/flt-32/s_sincosf.c | 172 ++++++++++++++----- sysdeps/ieee754/flt-32/{s_cosf.c => s_sincosf.h} | 185 ++++++--------------- sysdeps/ieee754/flt-32/s_sinf.c | 107 +----------- sysdeps/mips/Makefile | 3 + sysdeps/mips/mips64/setjmp_aux.c | 5 + sysdeps/mips/setjmp_aux.c | 5 + sysdeps/powerpc/fpu/libm-test-ulps | 40 ++--- sysdeps/s390/fpu/libm-test-ulps | 40 ++--- sysdeps/unix/sysv/linux/hppa/pthread.h | 7 +- sysdeps/x86_64/configure | 33 ++++ sysdeps/x86_64/configure.ac | 25 +++ 56 files changed, 939 insertions(+), 487 deletions(-) copy sysdeps/x86_64/tst-x86_64mod-1.c => csu/static-reloc.c (84%) create mode 100644 elf/dl-reloc-static-pie.c copy gmon/{tst-gmon-pie.c => tst-gmon-static-pie.c} (100%) copy sysdeps/ieee754/flt-32/{s_cosf.c => s_sincosf.h} (53%)