This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 127f733f887 Fix AIX CI build break. new 9b854f169df ld: Add LTO and none-LTO output support for ld -r new 7d10ff50bd5 ld: Document mixing LTO and non-LTO objects for -r new 04cd256685f h8300: Handle .gnu_object_only section
The 3 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: bfd/bfd-in2.h | 16 +- bfd/bfd.c | 46 +- bfd/elf.c | 1 + bfd/format.c | 37 +- bfd/opncls.c | 66 ++ bfd/plugin.c | 193 +++- bfd/plugin.h | 2 + bfd/section.c | 3 + binutils/objcopy.c | 32 +- binutils/readelf.c | 1 + gas/config/tc-h8300.c | 6 +- gas/testsuite/gas/elf/section9.d | 1 + gas/testsuite/gas/elf/section9.s | 2 + include/elf/common.h | 1 + ld/emultempl/aarch64elf.em | 2 +- ld/emultempl/alphaelf.em | 2 +- ld/emultempl/armelf.em | 2 +- ld/emultempl/avrelf.em | 2 +- ld/emultempl/elf.em | 1 + ld/emultempl/ppc32elf.em | 2 +- ld/emultempl/ppc64elf.em | 2 +- ld/emultempl/spuelf.em | 2 +- ld/ld.h | 6 + ld/ld.texi | 12 + ld/ldelf.c | 26 +- ld/ldelf.h | 1 + ld/ldexp.c | 16 +- ld/ldexp.h | 4 +- ld/ldfile.c | 2 + ld/ldlang.c | 1027 +++++++++++++++++++- ld/ldlang.h | 44 +- ld/ldmain.c | 80 +- ld/ldmain.h | 2 + ld/plugin.c | 3 + ld/scripttempl/elf.sc | 2 +- ld/scripttempl/elf64hppa.sc | 2 +- ld/scripttempl/elfxtensa.sc | 2 +- ld/scripttempl/mep.sc | 2 +- ld/scripttempl/pe.sc | 1 + ld/scripttempl/pep.sc | 1 + ld/testsuite/ld-plugin/lto-10.out | 1 + ld/testsuite/ld-plugin/{pr13183b.c => lto-10a.c} | 0 .../{ld-elf/pr21086.c => ld-plugin/lto-10b.c} | 5 +- ld/testsuite/ld-plugin/lto-10r.d | 9 + ld/testsuite/ld-plugin/{lto-3.out => lto-4.out} | 2 +- ld/testsuite/ld-plugin/{lto-5a.c => lto-4a.c} | 0 ld/testsuite/ld-plugin/{lto-5b.c => lto-4b.c} | 3 + ld/testsuite/ld-plugin/{lto-3c.c => lto-4c.c} | 2 +- ld/testsuite/ld-plugin/lto-4r-a.d | 7 + ld/testsuite/ld-plugin/lto-4r-b.d | 7 + ld/testsuite/ld-plugin/lto-4r-c.d | 7 + ld/testsuite/ld-plugin/lto-4r-d.d | 7 + ld/testsuite/ld-plugin/lto.exp | 66 ++ 53 files changed, 1639 insertions(+), 132 deletions(-) create mode 100644 ld/testsuite/ld-plugin/lto-10.out copy ld/testsuite/ld-plugin/{pr13183b.c => lto-10a.c} (100%) copy ld/testsuite/{ld-elf/pr21086.c => ld-plugin/lto-10b.c} (50%) create mode 100644 ld/testsuite/ld-plugin/lto-10r.d copy ld/testsuite/ld-plugin/{lto-3.out => lto-4.out} (100%) copy ld/testsuite/ld-plugin/{lto-5a.c => lto-4a.c} (100%) copy ld/testsuite/ld-plugin/{lto-5b.c => lto-4b.c} (65%) copy ld/testsuite/ld-plugin/{lto-3c.c => lto-4c.c} (75%) create mode 100644 ld/testsuite/ld-plugin/lto-4r-a.d create mode 100644 ld/testsuite/ld-plugin/lto-4r-b.d create mode 100644 ld/testsuite/ld-plugin/lto-4r-c.d create mode 100644 ld/testsuite/ld-plugin/lto-4r-d.d