[Bug ld/12768] Improve the error message for linking failure

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=12768 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/12677] [Meta] LTO linker bugs

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=12677 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/13168] Comdat group breaks hppa stub placement on hppa-unknown-linux-gnu

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=13168 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/15877] ld-gc/gc.exp FAIL with --gc-sections, pr14265

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=15877 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/13600] protected visibility creates bogus relocation

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=13600 Sam James changed: What|Removed |Added CC||sam at gentoo dot org See Also|

[Bug ld/19662] elf_link_sort_relocs is insufficient

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=19662 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/12323] linker plugin does not handle TLS

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=12323 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/584] Invalid relocation to protected symbol

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=584 Sam James changed: What|Removed |Added See Also||https://sourceware.org/bugz

[Bug ld/20049] Avoid changing DT_SONAMEs in libopcodes.so and libbfd.so on release branch

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=20049 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/23394] Missing plug-in API support

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=23394 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/23385] Clarify defaults on ld --help

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=23385 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/22601] "skipping incompatible" - can this be more specific?

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=22601 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/23704] Too many PT_LOAD segments with -z separate-code

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=23704 Sam James changed: What|Removed |Added See Also||https://bugzilla.redhat.com

[Bug ld/23889] ld should prepend the sysroot path to absolute paths in include directives

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=23889 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/24322] ld -z shstk sometimes sets IBT property even if -z ibt is not passed

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=24322 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/25020] Report "sh_link of section ... points to discarded section ..." for more input sections

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=25020 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/25891] ld: Implement --[no-]apply-dynamic-relocs

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=25891 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/27495] -z start_stop_gc isn't compatible with static glibc

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=27495 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/27546] undefined reference error fix-hint suggestion

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=27546 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/28603] Incorrect branch offset from the start of a function after enable LTO

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=28603 Sam James changed: What|Removed |Added Status|UNCONFIRMED |WAITING Ever confirmed|0

[Bug ld/31482] The first definition in shared object and archive is ignored

2024-03-15 Thread hjl.tools at gmail dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=31482 --- Comment #8 from H.J. Lu --- The v3 patch fixed a bug: https://sourceware.org/pipermail/binutils/2024-March/133055.html -- You are receiving this mail because: You are on the CC list for the bug.

Objcopy seems to consider tbss part of PTLOAD

2024-03-15 Thread vijay Shankar
Take the following examplereprod.cint __thread a; int b,c,k=100,n=400; int my_start() { b = 500; return a*a*b*k*n; }  l.ldENTRY(my_start) SECTIONS {  .text (VMA_START) : AT(VMA_START + LMA_START)   {      *(.text.*)   }  . = ALIGN(16);  .data :  {    *(.data)  }  . = ALIGN(16);  .tda

Objcopy seems to consider tbss part of PTLOAD

2024-03-15 Thread vijay
Take the following example reprod.c int __thread a; int b,c,k=100,n=400; int my_start() { b = 500; return a*a*b*k*n; } l.ld ENTRY(my_start) SECTIONS { .text (VMA_START) : AT(VMA_START + LMA_START) { *(.text.*) } . = ALIGN(16); .data : { *(.data) } . = ALIGN(16);

[Bug ld/31482] The first definition in shared object and archive is ignored

2024-03-15 Thread hjl.tools at gmail dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=31482 --- Comment #7 from H.J. Lu --- The v2 patch: https://sourceware.org/pipermail/binutils/2024-March/133036.html -- You are receiving this mail because: You are on the CC list for the bug.

[Bug ld/23935] [Regression] ld.bfd does not rescan fat LTO archives to resolve plugin-added references

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=23935 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/18836] ld handles .gnu.lto_ prefixed sections oddly, /DISCARD/ semantics unclear

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=18836 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug binutils/14698] ar, nm and ranlib don't use gcc's liblto_plugin.so in BINDIR/../lib/bfd-plugins automatically

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=14698 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/26668] incremental linking of LTO and non-LTO objects always warns

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=26668 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi

[Bug ld/18028] 32-bit ld runs out of memory when linking 32-bit clang with debug info

2024-03-15 Thread sam at gentoo dot org
https://sourceware.org/bugzilla/show_bug.cgi?id=18028 Sam James changed: What|Removed |Added CC||sam at gentoo dot org -- You are receivi