[Bug ld/27451] ld: Provide a way to make C identifier name sections GCable under __start_/__stop_ references
https://sourceware.org/bugzilla/show_bug.cgi?id=27451 Fangrui Song changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Target Milestone|--- |2.37 Resolution|--- |FIXED --- Comment #5 from Fangrui Song --- GNU ld 2.37 has -z start-stop-gc. -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/29263] /usr/bin/ld: warning: /usr/lib/gcc/hppa-linux-gnu/11/../../../hppa-linux-gnu/crtn.o: missing .note.GNU-stack section implies executable stack
https://sourceware.org/bugzilla/show_bug.cgi?id=29263 --- Comment #11 from cvs-commit at gcc dot gnu.org --- The master branch has been updated by Nick Clifton : https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=acd65fa610df09a0954b8fecdadf546215263c5d commit acd65fa610df09a0954b8fecdadf546215263c5d Author: Nick Clifton Date: Tue Jun 21 11:22:38 2022 +0100 Default to disabling the linker warnings about execstack and RWX segments if the target is the HPPA architecture. PR 29263 * configure.ac (ac_default_ld_warn_execstack): Default to 'no' for HPPA targets. (ac_default_ld_warn_rwx_segments): Likewise. * configure: Regenerate. * testsuite/ld-elf/elf.exp: Add the --warn-execstack command line option to the command line when running execstack tests for the HPPA target. -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/29263] /usr/bin/ld: warning: /usr/lib/gcc/hppa-linux-gnu/11/../../../hppa-linux-gnu/crtn.o: missing .note.GNU-stack section implies executable stack
https://sourceware.org/bugzilla/show_bug.cgi?id=29263 Nick Clifton changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #12 from Nick Clifton --- Patch applied. (Plus a tweak for the linker test that checks the execstack warning). -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gprofng/29015] On Intel Skylake the call tree is incorrect
https://sourceware.org/bugzilla/show_bug.cgi?id=29015 Kurt Goebel changed: What|Removed |Added Severity|normal |minor Priority|P2 |P3 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gprofng/29191] gprofng ignores --sysconfdir configuration option
https://sourceware.org/bugzilla/show_bug.cgi?id=29191 Kurt Goebel changed: What|Removed |Added CC||kurt.goebel at oracle dot com Status|NEW |ASSIGNED -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gprofng/29083] The caller-callee view from the "gprofng display text" tool changes alignment
https://sourceware.org/bugzilla/show_bug.cgi?id=29083 Kurt Goebel changed: What|Removed |Added Severity|normal |minor CC||kurt.goebel at oracle dot com -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gprofng/29015] On Intel Skylake the call tree is incorrect
https://sourceware.org/bugzilla/show_bug.cgi?id=29015 Kurt Goebel changed: What|Removed |Added Severity|minor |normal -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gprofng/29085] Start messages printed by "gprofng collect app" with a keyword
https://sourceware.org/bugzilla/show_bug.cgi?id=29085 Kurt Goebel changed: What|Removed |Added Status|NEW |ASSIGNED CC||kurt.goebel at oracle dot com -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gprofng/29116] gprofng fails to build on i686-linux-gnu, aarch64-linux-gnu
https://sourceware.org/bugzilla/show_bug.cgi?id=29116 Kurt Goebel changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed||2022-06-21 Ever confirmed|0 |1 CC||kurt.goebel at oracle dot com -- You are receiving this mail because: You are on the CC list for the bug.
[Bug libctf/29242] ld crash when deduplicating CTF from multiple .o files with the same name
https://sourceware.org/bugzilla/show_bug.cgi?id=29242 --- Comment #3 from Nick Alcock --- Fix will be in 2.39. (Backport to 2.38 under test.) -- You are receiving this mail because: You are on the CC list for the bug.
[Bug libctf/29242] ld crash when deduplicating CTF from multiple .o files with the same name
https://sourceware.org/bugzilla/show_bug.cgi?id=29242 --- Comment #2 from cvs-commit at gcc dot gnu.org --- The master branch has been updated by Nick Alcock : https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=6bd2318f32842a27b03677b670421f93c14f9302 commit 6bd2318f32842a27b03677b670421f93c14f9302 Author: Nick Alcock Date: Fri Jun 10 17:05:50 2022 +0100 libctf: fix linking together multiple objects derived from the same source Right now, if you compile the same .c input repeatedly with CTF enabled and different compilation flags, then arrange to link all of these together, then things misbehave in various ways. libctf may conflate either inputs (if the .o files have the same name, say if they are stored in different .a archives), or per-CU outputs when conflicting types are found: the latter can lead to entirely spurious errors when it tries to produce multiple per-CU outputs with the same name (discarding all but the last, but then looking for types in the earlier ones which have just been thrown away). Fixing this is multi-pronged. Both inputs and outputs need to be differentiated in the hashtables libctf keeps them in: inputs with the same cuname and filename need to be considered distinct as long as they have different associated CTF dicts, and per-CU outputs need to be considered distinct as long as they have different associated input dicts. Right now there is nothing tying the two together other than the CU name: fix this by introducing a new field in the ctf_dict_t named ctf_link_in_out, which (for input dicts) points to the associated per-CU output dict (if any), and for output dicts points to the associated input dict. At creation time the name used is completely arbitrary: it's only important that it be distinct if CTF dicts are distinct. So, when a clash is found, adjust the CU name by sticking the number of elements in the input on the end. At output time, the CU name will appear in the linked object, so it matters a little more that it look slightly less ugly: in conflicting cases, append an incrementing integer, starting at 0. This naming scheme is not very helpful, but it's hard to see what else we can do. The input .o name may be the same. The input .a name is not even visible to ctf_link, and even *that* might be the same, because .a's can contain many members with the same name, all of which participate in the link. All we really know is that the two have distinct dictionaries with distinct types in them, and at least this way they are all represented, any any symbols, variables etc referring to those types are accurately stored. (As a side-effect this also fixes a use-after-free and double-free when errors are found during variable or symbol emission.) Use the opportunity to prevent a couple of sources of problems, to wit changing the active CU mappings when a link has already been done (no effect on ld, which doesn't use CU mappings at all), and causing multiple consecutive ctf_link's to have the same net effect as just doing the last one (no effect on ld, which only ever does one ctf_link) rather than having the links be a sort of half-incremental not-really-intended mess. libctf/ChangeLog: PR libctf/29242 * ctf-impl.h (struct ctf_dict) [ctf_link_in_out]: New. * ctf-dedup.c (ctf_dedup_emit_type): Set it. * ctf-link.c (ctf_link_add_ctf_internal): Set the input CU name uniquely when clashes are found. (ctf_link_add): Document what repeated additions do. (ctf_new_per_cu_name): New, come up with a consistent name for a new per-CU dict. (ctf_link_deduplicating): Use it. (ctf_create_per_cu): Use it, and ctf_link_in_out, and set ctf_link_in_out properly. Don't overwrite per-CU dicts with per-CU dicts relating to different inputs. (ctf_link_add_cu_mapping): Prevent per-CU mappings being set up if we already have per-CU outputs. (ctf_link_one_variable): Adjust ctf_link_per_cu call. (ctf_link_deduplicating_one_symtypetab): Likewise. (ctf_link_empty_outputs): New, delete all the ctf_link_outputs and blank out ctf_link_in_out on the corresponding inputs. (ctf_link): Clarify the effect of multiple ctf_link calls. Empty ctf_link_outputs if it already exists rather than having the old output leak into the new link. Fix a variable name. * testsuite/config/default.exp (AR): Add. (OBJDUMP): Likewise. * testsuite/libctf-regression/libctf-repeat-cu.exp: New test. * testsuite/libctf-regression/libctf-repeat-cu*: Main program, library, and expected results for the test. -- You ar
[Bug binutils/29266] readelf ..info misreports DW_FORM_strxN
https://sourceware.org/bugzilla/show_bug.cgi?id=29266 --- Comment #2 from Alan Modra --- Also, DW_AT_str_offsets_base doesn't appear to be handled in binutils/dwarf.c -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/29270] Signed integer overflow with DW_FORM_udata
https://sourceware.org/bugzilla/show_bug.cgi?id=29270 --- Comment #1 from cvs-commit at gcc dot gnu.org --- The master branch has been updated by Alan Modra : https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=581db2a29bddc6d7f2fda34aa4301e070f75c609 commit 581db2a29bddc6d7f2fda34aa4301e070f75c609 Author: Alan Modra Date: Tue Jun 21 10:48:21 2022 +0930 PR29270, DW_FORM_udata signed output PR 29270 * dwarf.c (read_and_display_attr_value): Output DW_FORM_udata as unsigned. -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/29270] Signed integer overflow with DW_FORM_udata
https://sourceware.org/bugzilla/show_bug.cgi?id=29270 Alan Modra changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED Target Milestone|--- |2.39 --- Comment #2 from Alan Modra --- Fixed for 2.39 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/14201] gas 2.19.51, Assertion failure when declaring large array: sb_build at /netrel/src/binutils-2.19.51-1/gas/sb.c line 62.
https://sourceware.org/bugzilla/show_bug.cgi?id=14201 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14397] Simply ARM EABI application with missing .rel.plt ouput section description crashes ld
https://sourceware.org/bugzilla/show_bug.cgi?id=14397 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14249] Full path to shared object put into binary when it contains no SONAME
https://sourceware.org/bugzilla/show_bug.cgi?id=14249 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14384] test077_summary
https://sourceware.org/bugzilla/show_bug.cgi?id=14384 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14385] testSummary
https://sourceware.org/bugzilla/show_bug.cgi?id=14385 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14399] TestSummary
https://sourceware.org/bugzilla/show_bug.cgi?id=14399 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14410] TestSummary
https://sourceware.org/bugzilla/show_bug.cgi?id=14410 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14400] TestSummary
https://sourceware.org/bugzilla/show_bug.cgi?id=14400 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14401] TestSummary
https://sourceware.org/bugzilla/show_bug.cgi?id=14401 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14402] TestSummary
https://sourceware.org/bugzilla/show_bug.cgi?id=14402 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14411] TestSummary
https://sourceware.org/bugzilla/show_bug.cgi?id=14411 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/14403] TestSummary
https://sourceware.org/bugzilla/show_bug.cgi?id=14403 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gold/22890] Hacked by Turkish Hacker SpawN #siberordu.biz
https://sourceware.org/bugzilla/show_bug.cgi?id=22890 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gprof/25314] Duplicate Shares
https://sourceware.org/bugzilla/show_bug.cgi?id=25314 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gold/20994] spam
https://sourceware.org/bugzilla/show_bug.cgi?id=20994 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gprof/25340] Nevas Tech
https://sourceware.org/bugzilla/show_bug.cgi?id=25340 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug admin/22072] hina
https://sourceware.org/bugzilla/show_bug.cgi?id=22072 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/25464] spam
https://sourceware.org/bugzilla/show_bug.cgi?id=25464 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/29014] Documentation correction
https://sourceware.org/bugzilla/show_bug.cgi?id=29014 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/20651] its a minor bug
https://sourceware.org/bugzilla/show_bug.cgi?id=20651 Alan Modra changed: What|Removed |Added Version|2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug admin/25317] How to Verify your Bank Account in fe app
https://sourceware.org/bugzilla/show_bug.cgi?id=25317 Alan Modra changed: What|Removed |Added Version|pre-2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/4370] aSiet_BO
https://sourceware.org/bugzilla/show_bug.cgi?id=4370 Alan Modra changed: What|Removed |Added Version|2.12.1 |pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug admin/21826] SPAM
https://sourceware.org/bugzilla/show_bug.cgi?id=21826 Alan Modra changed: What|Removed |Added Version|2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/699] bfd assertion fail in libbfd.c 1132
https://sourceware.org/bugzilla/show_bug.cgi?id=699 Alan Modra changed: What|Removed |Added Version|2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/1567] 64-bit problem for cris building Linux
https://sourceware.org/bugzilla/show_bug.cgi?id=1567 Alan Modra changed: What|Removed |Added Version|2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/13794] ELF flags on MIPS
https://sourceware.org/bugzilla/show_bug.cgi?id=13794 Alan Modra changed: What|Removed |Added Version|2.12|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/997] invalid error messages, and internal error abort
https://sourceware.org/bugzilla/show_bug.cgi?id=997 Alan Modra changed: What|Removed |Added Version|2.12.1 |pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/998] generates non-optimal instruction...
https://sourceware.org/bugzilla/show_bug.cgi?id=998 Alan Modra changed: What|Removed |Added Version|2.12.1 |pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/993] fail to link if address of libc function taken in n64
https://sourceware.org/bugzilla/show_bug.cgi?id=993 Alan Modra changed: What|Removed |Added Version|2.13|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/75] strings --radix option gives all zeros
https://sourceware.org/bugzilla/show_bug.cgi?id=75 Alan Modra changed: What|Removed |Added Version|2.13|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/138] Out of Memory when doing make bootstrap creating GCC 3.3
https://sourceware.org/bugzilla/show_bug.cgi?id=138 Alan Modra changed: What|Removed |Added Version|2.13|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/435] The relocation bug
https://sourceware.org/bugzilla/show_bug.cgi?id=435 Alan Modra changed: What|Removed |Added Version|2.13|pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/3183] gas doesn't handle integers in fp instructions correctly
https://sourceware.org/bugzilla/show_bug.cgi?id=3183 Alan Modra changed: What|Removed |Added Version|2.13.1 |pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/753] ld 2.13.90 from mingw 3.3.1 cores on malformatted .def file
https://sourceware.org/bugzilla/show_bug.cgi?id=753 Alan Modra changed: What|Removed |Added Version|2.13.1 |pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/3184] gas doesn't handle nig integers correctly
https://sourceware.org/bugzilla/show_bug.cgi?id=3184 Alan Modra changed: What|Removed |Added Version|2.13.1 |pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/754] --image-base / --enable-auto-image-base silently disregarded if .def used
https://sourceware.org/bugzilla/show_bug.cgi?id=754 Alan Modra changed: What|Removed |Added Version|2.13.1 |pre-2.15 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/26675] 32bit build of dxvk fails with binutils 2.35.1
https://sourceware.org/bugzilla/show_bug.cgi?id=26675 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/28019] ld killed by OOM killer linking QtWebengine 5.15
https://sourceware.org/bugzilla/show_bug.cgi?id=28019 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/28603] Incorrect branch offset from the start of a function after enable LTO
https://sourceware.org/bugzilla/show_bug.cgi?id=28603 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/26815] Unnecessary error on linking STV_PROTECTED library: relocation R_X86_64_PC32 against protected symbol `f' can not be used when making a shared object
https://sourceware.org/bugzilla/show_bug.cgi?id=26815 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27047] .bss pseudo operation not supported for target z80-unknown-elf
https://sourceware.org/bugzilla/show_bug.cgi?id=27047 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27149] -shared should not produce executable files
https://sourceware.org/bugzilla/show_bug.cgi?id=27149 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gold/28314] [AArch64] Insufficient veneer stub alignment (gold)
https://sourceware.org/bugzilla/show_bug.cgi?id=28314 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27023] [ARM]: ldrd/strd without second transfer register
https://sourceware.org/bugzilla/show_bug.cgi?id=27023 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27167] Missing -mipsXXX LD command line flags
https://sourceware.org/bugzilla/show_bug.cgi?id=27167 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27226] ld.bfd contains huge .rodata section
https://sourceware.org/bugzilla/show_bug.cgi?id=27226 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27128] nm -P portable output format regression
https://sourceware.org/bugzilla/show_bug.cgi?id=27128 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/26929] [readelf] crash with ASAN in print_dynamic_symbol
https://sourceware.org/bugzilla/show_bug.cgi?id=26929 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gold/27246] ld.gold does not support DWARF5
https://sourceware.org/bugzilla/show_bug.cgi?id=27246 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27473] it's report error when using uftrace from binutils2.35.1
https://sourceware.org/bugzilla/show_bug.cgi?id=27473 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27106] fistw not supported
https://sourceware.org/bugzilla/show_bug.cgi?id=27106 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gold/27140] ppc32 segmentation fault in make_stub
https://sourceware.org/bugzilla/show_bug.cgi?id=27140 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27587] BFD (and gold) DWARF reader choke on DWARF5 as generated by LTO
https://sourceware.org/bugzilla/show_bug.cgi?id=27587 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27155] objcopy --only-keep-debug should strip .debug_info symbols
https://sourceware.org/bugzilla/show_bug.cgi?id=27155 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/26882] --enable-textrel-check=warning exposes a few test failures on powerpc and others
https://sourceware.org/bugzilla/show_bug.cgi?id=26882 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27131] Division by zero in elf.c
https://sourceware.org/bugzilla/show_bug.cgi?id=27131 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27093] should BFD not produce `-z norelro ignored` when target emulation is unsupported?
https://sourceware.org/bugzilla/show_bug.cgi?id=27093 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/28485] ar and objcopy stuck,failing on object name containing '/' inside an archive
https://sourceware.org/bugzilla/show_bug.cgi?id=28485 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27071] Multiple bugs in GNU assembler
https://sourceware.org/bugzilla/show_bug.cgi?id=27071 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27228] .reloc wrong symbol emitted for undefined local symbol
https://sourceware.org/bugzilla/show_bug.cgi?id=27228 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27652] OpenRISC: PLT got offset overflow in big binaries
https://sourceware.org/bugzilla/show_bug.cgi?id=27652 Alan Modra changed: What|Removed |Added Version|2.35.2 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27138] Segmentation Fault in elf.c
https://sourceware.org/bugzilla/show_bug.cgi?id=27138 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27229] Writing symbols section - example code does not work
https://sourceware.org/bugzilla/show_bug.cgi?id=27229 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/26946] [nm] memory allocation failed
https://sourceware.org/bugzilla/show_bug.cgi?id=26946 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27075] [MIPS] Gas adds useless delay-slot nops to r6 compact branches, which have no delay slots
https://sourceware.org/bugzilla/show_bug.cgi?id=27075 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27954] Exception handling info garbled on x86_64-w64-mingw32
https://sourceware.org/bugzilla/show_bug.cgi?id=27954 Alan Modra changed: What|Removed |Added Version|2.35.2 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/26914] Disassembling create DWARF Errors
https://sourceware.org/bugzilla/show_bug.cgi?id=26914 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27096] [ARM] If-Then instruction and AL condition
https://sourceware.org/bugzilla/show_bug.cgi?id=27096 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27180] RISC-V far relocations for auipc instructions may cause segfault with --emit-relocs
https://sourceware.org/bugzilla/show_bug.cgi?id=27180 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27215] as: Error: non-constant .uleb128 is not supported on riscv64
https://sourceware.org/bugzilla/show_bug.cgi?id=27215 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27878] [z80-unknown-elf]: ld (hl), <16 bit immediate> should fail assembly
https://sourceware.org/bugzilla/show_bug.cgi?id=27878 Alan Modra changed: What|Removed |Added Version|2.36.1 |2.36 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/26931] [nm] crash with ASAN in display_rel_file
https://sourceware.org/bugzilla/show_bug.cgi?id=26931 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/28474] R_ARM_THM_JUMP24 incorrect link result if symbol duplicated
https://sourceware.org/bugzilla/show_bug.cgi?id=28474 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gold/26794] use of gcc lto breaks --exclude-libs on gold linker
https://sourceware.org/bugzilla/show_bug.cgi?id=26794 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27065] [ARM] If-Then instruction and .align directive
https://sourceware.org/bugzilla/show_bug.cgi?id=27065 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27432] erroneous symbol offsets taken with __ImageBase relocation using Microsoft COFF .OBJ linked to
https://sourceware.org/bugzilla/show_bug.cgi?id=27432 Alan Modra changed: What|Removed |Added Version|2.36.1 |2.36 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27066] [ARM] Unaligned LDRD instruction
https://sourceware.org/bugzilla/show_bug.cgi?id=27066 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/28622] Common symbol version information wrong in ld.bfd-linked library
https://sourceware.org/bugzilla/show_bug.cgi?id=28622 Alan Modra changed: What|Removed |Added Version|2.35.2 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/28973] Improve error message for missing vtable
https://sourceware.org/bugzilla/show_bug.cgi?id=28973 Alan Modra changed: What|Removed |Added Version|2.35.2 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27622] windres: _popen has bug related to parsing command line
https://sourceware.org/bugzilla/show_bug.cgi?id=27622 Alan Modra changed: What|Removed |Added Version|2.36.1 |2.36 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug binutils/27814] objdump crashes when disassembling a non-ELF RISC-V binary
https://sourceware.org/bugzilla/show_bug.cgi?id=27814 Alan Modra changed: What|Removed |Added Version|2.36.1 |2.36 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27888] fix link of gas with zlib by libtool 2.4.6
https://sourceware.org/bugzilla/show_bug.cgi?id=27888 Alan Modra changed: What|Removed |Added Version|2.35.2 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27519] GNU AS does not support SUBSPL syntax
https://sourceware.org/bugzilla/show_bug.cgi?id=27519 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27467] ld: Internal error when linking .tmp_vmlinux.btf
https://sourceware.org/bugzilla/show_bug.cgi?id=27467 Alan Modra changed: What|Removed |Added Version|2.36.1 |2.36 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug ld/27624] OpenRisc BFD (GNU Binutils) 2.36.1 assertion fail elf32-or1k.c:2377
https://sourceware.org/bugzilla/show_bug.cgi?id=27624 Alan Modra changed: What|Removed |Added Version|2.36.1 |2.36 -- You are receiving this mail because: You are on the CC list for the bug.
[Bug gas/27280] md5 DWARF v5 additions require -gdwarf-5
https://sourceware.org/bugzilla/show_bug.cgi?id=27280 Alan Modra changed: What|Removed |Added Version|2.35.1 |2.35 -- You are receiving this mail because: You are on the CC list for the bug.