[Bug binutils/13311] internal error, aborting at bfd.c line 649 in _bfd_default_error_handler
http://sourceware.org/bugzilla/show_bug.cgi?id=13311 --- Comment #3 from Octoploid 2011-10-18 07:27:49 UTC --- (In reply to comment #2) > Can you try applying the first hunk (ie. the elf_link_output_extsym change) > from the patch in http://sourceware.org/ml/binutils/2011-10/msg00123.html? Yes, this hunk fixes the error. Another thing that caught me eye are the undefined references to libc libraries with bfd and --as-needed: # make gcc -fuse-linker-plugin -Wl,--as-needed,--gc-sections luac.o liblua.so.5.1.4 /tmp/ccwugZXD.ltrans0.ltrans.o: In function `combine.2469.2460': ccwugZXD.ltrans0.o:(.text+0x461): undefined reference to `luaF_newproto' ccwugZXD.ltrans0.o:(.text+0x4ba): undefined reference to `luaD_growstack' ccwugZXD.ltrans0.o:(.text+0x4e6): undefined reference to `luaS_newlstr' ccwugZXD.ltrans0.o:(.text+0x52d): undefined reference to `luaM_realloc_' ccwugZXD.ltrans0.o:(.text+0x53b): undefined reference to `luaM_toobig' ccwugZXD.ltrans0.o:(.text+0x579): undefined reference to `luaM_realloc_' ccwugZXD.ltrans0.o:(.text+0x587): undefined reference to `luaM_toobig' /tmp/ccwugZXD.ltrans0.ltrans.o: In function `pmain.2456.2241': ccwugZXD.ltrans0.o:(.text+0x7e0): undefined reference to `luaU_print' ccwugZXD.ltrans0.o:(.text+0x857): undefined reference to `luaU_dump' liblua.so.5.1.4: undefined reference to `floor@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `ceil@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `sinh@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `atan@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `tan@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `dlopen@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `dlerror@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `sqrt@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `cosh@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `fmod@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `log10@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `sin@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `dlclose@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `cos@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `atan2@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `acos@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `tanh@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `exp@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `log@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `dlsym@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `asin@GLIBC_2.2.5' liblua.so.5.1.4: undefined reference to `pow@GLIBC_2.2.5' collect2: error: ld returned 1 exit status make: *** [all] Error 1 gold: # make gcc -fuse-linker-plugin -Wl,--as-needed,--gc-sections luac.o liblua.so.5.1.4 /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function combine.2469.2460: error: undefined reference to 'luaF_newproto' /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function combine.2469.2460: error: undefined reference to 'luaD_growstack' /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function combine.2469.2460: error: undefined reference to 'luaS_newlstr' /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function combine.2469.2460: error: undefined reference to 'luaM_realloc_' /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function combine.2469.2460: error: undefined reference to 'luaM_toobig' /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function combine.2469.2460: error: undefined reference to 'luaM_realloc_' /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function combine.2469.2460: error: undefined reference to 'luaM_toobig' /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function pmain.2456.2241: error: undefined reference to 'luaU_print' /tmp/ccG7JVZB.ltrans0.ltrans.o:ccG7JVZB.ltrans0.o:function pmain.2456.2241: error: undefined reference to 'luaU_dump' collect2: error: ld returned 1 exit status make: *** [all] Error 1 But maybe this is harmless in this case, because the link fails anyway. -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug binutils/13311] internal error, aborting at bfd.c line 649 in _bfd_default_error_handler
http://sourceware.org/bugzilla/show_bug.cgi?id=13311 --- Comment #4 from Octoploid 2011-10-18 12:07:52 UTC --- (In reply to comment #3) > Another thing that caught me eye are the undefined references to libc > libraries > with bfd and --as-needed: This appears to be the same bug as http://sourceware.org/bugzilla/show_bug.cgi?id=13287 . -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug gold/13314] ICF clashes with section ordering
http://sourceware.org/bugzilla/show_bug.cgi?id=13314 Ian Lance Taylor changed: What|Removed |Added CC||tmsriram at google dot com -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug binutils/13295] Segfault and/or incorrect output in objdump when disassembling an ARM library
http://sourceware.org/bugzilla/show_bug.cgi?id=13295 Nick Clifton changed: What|Removed |Added CC||nickc at redhat dot com --- Comment #1 from Nick Clifton 2011-10-18 13:13:06 UTC --- Hi Zoltan, This bug is fixed in the current mainline sources and the forthcoming 2.22 release. Do you need a patch for the 2.21 sources ? Cheers Nick -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13049] Generates R_ARM_NONE relocations for stub_* symbols when using -fdata-sections
http://sourceware.org/bugzilla/show_bug.cgi?id=13049 --- Comment #1 from Nick Clifton 2011-10-18 15:40:18 UTC --- Created attachment 6019 --> http://sourceware.org/bugzilla/attachment.cgi?id=6019 Rename stub section -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13049] Generates R_ARM_NONE relocations for stub_* symbols when using -fdata-sections
http://sourceware.org/bugzilla/show_bug.cgi?id=13049 Nick Clifton changed: What|Removed |Added Status|NEW |WAITING CC||nickc at redhat dot com --- Comment #2 from Nick Clifton 2011-10-18 15:44:20 UTC --- Hi Mike, This was an interesting one. It turns out that using the word "stub" at the start of your variable was significant. With -fdata-sections enabled the variable was placed into a section called .data.rel.local.stub_foo which confused the linker into thinking that it was a special section for containing other stubs. I have uploaded a patch which should fix the problem by choosing a name for the stub section suffix which is not valid as the start of the name of a C variable. (Ie "__stub"). Please can you try it out and let me know if it works for you. Cheers Nick -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug binutils/13302] IRELATIVE relocation should come last
http://sourceware.org/bugzilla/show_bug.cgi?id=13302 H.J. Lu changed: What|Removed |Added CC||hjl.tools at gmail dot com -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13177] garbage collector retains zombie references to external libraries
http://sourceware.org/bugzilla/show_bug.cgi?id=13177 --- Comment #4 from cvs-commit at gcc dot gnu.org 2011-10-18 19:06:54 UTC --- CVSROOT:/cvs/src Module name:src Branch: binutils-2_22-branch Changes by:h...@sourceware.org2011-10-18 19:06:50 Modified files: ld/testsuite : ChangeLog bfd: ChangeLog elflink.c Removed files: ld/testsuite/ld-elf: pr13177.d pr13177.s Log message: Revert the fix for PR ld/13177. bfd/ 2011-10-18 H.J. Lu PR ld/13177 * elflink.c (elf_gc_sweep_symbol): Don't hide symbols without PLT nor GOT references. ld/testsuite/ 2011-10-18 H.J. Lu PR ld/13177 * ld-elf/pr13177.d: Removed. * ld-elf/pr13177.s: Likewise. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ChangeLog.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.1460.2.2&r2=1.1460.2.3 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-elf/pr13177.d.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.2&r2=NONE http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-elf/pr13177.s.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.2&r2=NONE http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/ChangeLog.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.5473.2.5&r2=1.5473.2.6 http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/elflink.c.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.420.2.2&r2=1.420.2.3 -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13177] garbage collector retains zombie references to external libraries
http://sourceware.org/bugzilla/show_bug.cgi?id=13177 H.J. Lu changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED | --- Comment #5 from H.J. Lu 2011-10-18 19:08:03 UTC --- Patch is reverted on 2.22 branch, -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13232] Regression: --gc-sections: local symbol `_dl_argv@@GLIBC_PRIVATE' in ld.so is referenced by DSO
http://sourceware.org/bugzilla/show_bug.cgi?id=13232 Bug 13232 depends on bug 13177, which changed state. Bug 13177 Summary: garbage collector retains zombie references to external libraries http://sourceware.org/bugzilla/show_bug.cgi?id=13177 What|Old Value |New Value Status|RESOLVED|REOPENED Resolution|FIXED | -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13301] Wrong linker relaxation for TLS_LDM_CALL and TLS_GD_CALL on SPARC
http://sourceware.org/bugzilla/show_bug.cgi?id=13301 --- Comment #1 from cvs-commit at gcc dot gnu.org 2011-10-19 00:32:28 UTC --- CVSROOT:/cvs/src Module name:src Changes by:da...@sourceware.org2011-10-19 00:32:25 Modified files: bfd: ChangeLog elfxx-sparc.c gold : ChangeLog sparc.cc ld/testsuite : ChangeLog ld/testsuite/ld-sparc: tlssunbin32.dd tlssunbin64.dd tlssunpic32.dd tlssunpic64.dd Log message: Fix sparc TLS call relaxation when the delay slot sets up %o0. bfd/ PR binutils/13301 * elfxx-sparc.c (sparc_elf_find_reloc_at_ofs): New function. (_bfd_sparc_elf_relocate_section): Always move the __tls_get_addr call delay slot instruction forward 4 bytes when performing relaxation. gold/ PR binutils/13301 * sparc.cc (Target_sparc::Relocate::reloc_adjust_addr_): New member to track relocation locations that have moved during TLS reloc optimizations. (Target_sparc::Relocate::Relocate): Initialize to NULL. (Target_sparc::Relocate::relocate): Adjust view down by 4 bytes if it matches reloc_adjust_addr_. (Target_sparc::Relocate::relocate_tls): Always move the __tls_get_addr call delay slot instruction forward 4 bytes when performing relaxation. ld/testsuite/ * ld-sparc/tlssunbin32.dd: Update for TLS call relaxation fix for PR 13301. * ld-sparc/tlssunbin64.dd: Likewise. * ld-sparc/tlssunpic32.dd: Likewise. * ld-sparc/tlssunpic64.dd: Likewise. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/ChangeLog.diff?cvsroot=src&r1=1.5491&r2=1.5492 http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/elfxx-sparc.c.diff?cvsroot=src&r1=1.60&r2=1.61 http://sourceware.org/cgi-bin/cvsweb.cgi/src/gold/ChangeLog.diff?cvsroot=src&r1=1.841&r2=1.842 http://sourceware.org/cgi-bin/cvsweb.cgi/src/gold/sparc.cc.diff?cvsroot=src&r1=1.49&r2=1.50 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ChangeLog.diff?cvsroot=src&r1=1.1469&r2=1.1470 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-sparc/tlssunbin32.dd.diff?cvsroot=src&r1=1.3&r2=1.4 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-sparc/tlssunbin64.dd.diff?cvsroot=src&r1=1.2&r2=1.3 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-sparc/tlssunpic32.dd.diff?cvsroot=src&r1=1.3&r2=1.4 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-sparc/tlssunpic64.dd.diff?cvsroot=src&r1=1.2&r2=1.3 -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13301] Wrong linker relaxation for TLS_LDM_CALL and TLS_GD_CALL on SPARC
http://sourceware.org/bugzilla/show_bug.cgi?id=13301 --- Comment #2 from cvs-commit at gcc dot gnu.org 2011-10-19 00:38:56 UTC --- CVSROOT:/cvs/src Module name:src Branch: binutils-2_22-branch Changes by:da...@sourceware.org2011-10-19 00:38:54 Modified files: bfd: ChangeLog elfxx-sparc.c gold : ChangeLog sparc.cc ld/testsuite : ChangeLog ld/testsuite/ld-sparc: tlssunbin32.dd tlssunbin64.dd tlssunpic32.dd tlssunpic64.dd Log message: Fix sparc TLS call relaxation when the delay slot sets up %o0. bfd/ PR binutils/13301 * elfxx-sparc.c (sparc_elf_find_reloc_at_ofs): New function. (_bfd_sparc_elf_relocate_section): Always move the __tls_get_addr call delay slot instruction forward 4 bytes when performing relaxation. gold/ PR binutils/13301 * sparc.cc (Target_sparc::Relocate::reloc_adjust_addr_): New member to track relocation locations that have moved during TLS reloc optimizations. (Target_sparc::Relocate::Relocate): Initialize to NULL. (Target_sparc::Relocate::relocate): Adjust view down by 4 bytes if it matches reloc_adjust_addr_. (Target_sparc::Relocate::relocate_tls): Always move the __tls_get_addr call delay slot instruction forward 4 bytes when performing relaxation. ld/testsuite/ * ld-sparc/tlssunbin32.dd: Update for TLS call relaxation fix for PR 13301. * ld-sparc/tlssunbin64.dd: Likewise. * ld-sparc/tlssunpic32.dd: Likewise. * ld-sparc/tlssunpic64.dd: Likewise. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/ChangeLog.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.5473.2.6&r2=1.5473.2.7 http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/elfxx-sparc.c.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.60&r2=1.60.2.1 http://sourceware.org/cgi-bin/cvsweb.cgi/src/gold/ChangeLog.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.824.2.1&r2=1.824.2.2 http://sourceware.org/cgi-bin/cvsweb.cgi/src/gold/sparc.cc.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.48&r2=1.48.2.1 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ChangeLog.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.1460.2.3&r2=1.1460.2.4 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-sparc/tlssunbin32.dd.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.3&r2=1.3.20.1 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-sparc/tlssunbin64.dd.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.2&r2=1.2.20.1 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-sparc/tlssunpic32.dd.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.3&r2=1.3.20.1 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testsuite/ld-sparc/tlssunpic64.dd.diff?cvsroot=src&only_with_tag=binutils-2_22-branch&r1=1.2&r2=1.2.20.1 -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13254] -z text warning breaks gcc testsuite on Solaris
http://sourceware.org/bugzilla/show_bug.cgi?id=13254 --- Comment #4 from cvs-commit at gcc dot gnu.org 2011-10-19 04:13:33 UTC --- CVSROOT:/cvs/src Module name:src Changes by:amo...@sourceware.org2011-10-19 04:13:28 Modified files: include: ChangeLog bfdlink.h bfd: ChangeLog elflink.c ld : ChangeLog ld/emultempl : elf32.em Log message: PR ld/13254 include/ * bfdlink.h (struct bfd_link_info): Add error_textrel. bfd/ * elflink.c (bfd_elf_final_link): Emit error_textrel error. ld/ * emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Add -z text, -z notext, -z textoff options for all targets having shared lib support. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/src/include/ChangeLog.diff?cvsroot=src&r1=1.552&r2=1.553 http://sourceware.org/cgi-bin/cvsweb.cgi/src/include/bfdlink.h.diff?cvsroot=src&r1=1.92&r2=1.93 http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/ChangeLog.diff?cvsroot=src&r1=1.5492&r2=1.5493 http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/elflink.c.diff?cvsroot=src&r1=1.425&r2=1.426 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/ChangeLog.diff?cvsroot=src&r1=1.2382&r2=1.2383 http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/emultempl/elf32.em.diff?cvsroot=src&r1=1.223&r2=1.224 -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug binutils/13311] internal error, aborting at bfd.c line 649 in _bfd_default_error_handler
http://sourceware.org/bugzilla/show_bug.cgi?id=13311 --- Comment #5 from cvs-commit at gcc dot gnu.org 2011-10-19 05:24:46 UTC --- CVSROOT:/cvs/src Module name:src Changes by:amo...@sourceware.org2011-10-19 05:24:38 Modified files: bfd: ChangeLog elflink.c Log message: PR ld/13311 * elflink.c (elf_link_output_extsym): Correct test for warning when forced local executable syms are referenced from shared libraries. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/ChangeLog.diff?cvsroot=src&r1=1.5493&r2=1.5494 http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/elflink.c.diff?cvsroot=src&r1=1.426&r2=1.427 -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug ld/13301] Wrong linker relaxation for TLS_LDM_CALL and TLS_GD_CALL on SPARC
http://sourceware.org/bugzilla/show_bug.cgi?id=13301 Eric Botcazou changed: What|Removed |Added Status|NEW |RESOLVED Version|2.23 (HEAD) |2.22 Resolution||FIXED --- Comment #3 from Eric Botcazou 2011-10-19 06:58:46 UTC --- Fixed in 2.22 and later. -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug. ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils