[Bug gold/16100] shared lib exports definition of _ZdlPv even though local per --version-script
https://sourceware.org/bugzilla/show_bug.cgi?id=16100 --- Comment #2 from Stephan Bergmann --- Still broken for me with current binutils git trunk: (Switched alternatives back to use /usr/bin/ld.bfd.) Built ~/binutils/trunk/inst/bin/ld.gold --version "GNU gold (GNU Binutils 2.24.51.20131031) 1.11". $ g++ -shared -fPIC -o lib1.so lib1.cc $ g++ -shared -fPIC -c lib2.cc $ g++ -### -shared -fPIC -o lib2.so -Wl,--version-script,lib2.ver lib2.o -L. -l1 # replacing collect2 in the linker command line: $ ~/binutils/trunk/inst/bin/ld.gold --build-id --no-add-needed --eh-frame-hdr "--hash-style=gnu" -m elf_x86_64 -shared -o lib2.so /usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/4.8.2/crtbeginS.o -L. -L/usr/lib/gcc/x86_64-redhat-linux/4.8.2 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../.. --version-script lib2.ver lib2.o -l1 "-lstdc++" -lm -lgcc_s -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.8.2/crtendS.o /usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64/crtn.o $ nm lib2.so | grep _ZdlPv 0698 T _ZdlPv -- 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/16083] objdump provides wrong disassemble for MULSD instruction when used with an unusual combination of prefixes
https://sourceware.org/bugzilla/show_bug.cgi?id=16083 --- Comment #3 from Pedro Alves --- *** Bug 16089 has been marked as a duplicate of this bug. *** -- 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/16108] New: gold .gdb_index version 7 support is missing
https://sourceware.org/bugzilla/show_bug.cgi?id=16108 Bug ID: 16108 Summary: gold .gdb_index version 7 support is missing Product: binutils Version: 2.25 (HEAD) Status: NEW Severity: normal Priority: P2 Component: gold Assignee: ian at airs dot com Reporter: naesten at gmail dot com CC: ccoutant at google dot com Somehow, despite having been mentioned in some GDB bugs and in GDB code, gold support for .gdb_index version 7 doesn't seem to be in the actual repository. It would be nice if someone could track down the patch(es) and get them committed. -- 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 gas/16109] New: Incorrect listing (single line comment after multiline one causes line mis-alignment)
https://sourceware.org/bugzilla/show_bug.cgi?id=16109 Bug ID: 16109 Summary: Incorrect listing (single line comment after multiline one causes line mis-alignment) Product: binutils Version: 2.23 Status: NEW Severity: normal Priority: P2 Component: gas Assignee: unassigned at sourceware dot org Reporter: makhaloff at gmail dot com I have a simple example: /* */# nop nop There are some assembler outputs: $ arm-linux-gnueabi-as -ahl 1.s ARM GAS 1.spage 1 1/* 2 A0E1 */# 3nop 4 0004 A0E1 nop 5 $ mips-linux-as -ahl 1.s GAS LISTING 1.s page 1 1/* 2 */# 3nop 4 0004 nop 5 0008 5 After some modification: /* */ nop nop listing is corect. $ arm-linux-gnueabi-as -ahl 1.s ARM GAS 1.spage 1 1/* 2*/ 3 A0E1 nop 4 0004 A0E1 nop 5 -- 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