BFD 2.16.1 assertion fail
Hi All,I Have been trying to build across compiler for power-ppc-linux-gnu I have succesfully installed binutils-2.16.1, first phase gcc-4.0.3, glibc-2.3.6 and then when i finally tried to install the final gcc ima getting eror such as/home/foo/build-install/powerpc-ppc-linux-gnu/bin/ld: BFD 2.16.1 assertion fail../../binutils-2.16.1/bfd/elf32-ppc.c:5397collect2: ld returned 1 exit statusmake[3]: *** [libmudflap.la] Error 1make[3]: Leaving directory `/home/foo/build-gcc/powerpc-ppc-linux-gnu/libmudflap'make[2]: *** [all-recursive] Error 1make[2]: Leaving directory `/home/foo/build-gcc/powerpc-ppc-linux-gnu/libmudflap'make[1]: *** [all] Error 2make[1]: Leaving directory `/home/foo/build-gcc/powerpc-ppc-linux-gnu/libmudflap'make: *** [all-target-libmudflap] Error 2I have used the following gcc configuration opitons[EMAIL PROTECTED] build-gcc]# ../gcc-4.0.3/configure --host=i686-pc-linux-gnu --target=powerpc-ppc-linux-gnu --prefix=/home/foo/build-install --enable-languages=c,c++ Some one please help me with this.Regards,Sai Sai Prasanna.S,Department Of ComputerScience,University Of Madras,Chennai.Ph: 9940357430Email: [EMAIL PROTECTED] Love cheap thrills? Enjoy PC-to-Phone calls to 30+ countries for just 2�/min with Yahoo! Messenger with Voice. Love cheap thrills? Enjoy PC-to-Phone calls to 30+ countries for just 2¢/min with Yahoo! Messenger with Voice.___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug binutils/2454] incorrect syntax in avr disassembly
--- Additional Comments From nickc at redhat dot com 2006-04-12 13:11 --- Thank you. I am now able to reproduce the bug and I have approved your patch. it does not quite perform as you say, since the hexadecimal form of the address is displayed twice: 0: 0e 94 7e 0e call0x1cfc ; 0x1cfc <__divmodhi4> But this is not too big of a problem, and fixing it would mean altering the generic sources in objdump.c. I have checked your patch in alogn with this ChangeLog entry. Cheers Nick opcodes/ChangeLog 2006-04-12 Hochstein <[EMAIL PROTECTED]> PR binutils/2454 * avr-dis.c (avr_operand): Arrange for a comment to appear before the symolic form of an address, so that the output of objdump -d can be reassembled. -- What|Removed |Added Status|WAITING |RESOLVED Resolution||FIXED http://sourceware.org/bugzilla/show_bug.cgi?id=2454 --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug gas/2032] GDB don't recognize debug information of crt0.s
--- Additional Comments From ymonyak at lipowsky dot de 2006-04-12 15:42 --- Subject: Re: GDB don't recognize debug information of crt0.s bje at sources dot redhat dot com schrieb: > --- Additional Comments From bje at sources dot redhat dot com > 2006-03-28 04:29 --- > How are you compiling your assembly and main.c files into the executable? > > I am using arm-elf-gcc V 4.01 from GNUARM distribution. flags for for C: -O0 -ffunction-sections -fdata-sections -c -fmessage-length=0 -mcpu=arm7tdmi assembler flags: -O0 -g3 -Wall -c -fmessage-length=0 -mcpu=arm7tdmi start up file srt0.s don't contain a .text section it contains a .startup section with interrupt vector table and an other section with start up code. Because as I understand a section can not be divided in two parts in order to use different memory areas. I need a possibility to place interrupt vector table in the internal RAM and main program in the external RAM because the program size. Best Regards efim -- http://sourceware.org/bugzilla/show_bug.cgi?id=2032 --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug binutils/2537] New: linker does not allow application to use value between SHT_LOUSER and SHT_HIUSER
As per the x86-64 ABI, the linker should allow the application to use values between SHT_LOUSER and SHT_HIUSER. The linker currently rejects these values and fails with "file format not recognized", when given an object file that uses a value between SHT_LOUSER and SHT_HIUSER. -- Summary: linker does not allow application to use value between SHT_LOUSER and SHT_HIUSER Product: binutils Version: 2.17 (HEAD) Status: NEW Severity: normal Priority: P2 Component: binutils AssignedTo: unassigned at sources dot redhat dot com ReportedBy: harsha dot jagasia at amd dot com CC: bug-binutils at gnu dot org http://sourceware.org/bugzilla/show_bug.cgi?id=2537 --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug binutils/2537] linker does not allow application to use value between SHT_LOUSER and SHT_HIUSER
-- What|Removed |Added AssignedTo|unassigned at sources dot |harsha dot jagasia at amd |redhat dot com |dot com Status|NEW |ASSIGNED http://sourceware.org/bugzilla/show_bug.cgi?id=2537 --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils
[Bug gas/2539] New: avr-as generates wrong opcode for call/jmp with lables
If I compile -- .arch atmega128 .text .org0x0 jmp main .org0x46 .global main .type main, @function main: nop jmp main -- with avr-as -g -D -o t.elf -mmcu=atmega128 t.S I get -- avr-objdump -D t.elf t.elf: file format elf32-avr Disassembly of section .text: : 0: 0c 94 00 00 jmp 0 ; 0x0 ... 0046 : 46: 00 00 nop 48: 0c 94 00 00 jmp 0 ; 0x0 -- which should be a "jmp 0x46". When I use rjmp/rcall it works fine. -- Summary: avr-as generates wrong opcode for call/jmp with lables Product: binutils Version: 2.17 (HEAD) Status: NEW Severity: normal Priority: P2 Component: gas AssignedTo: unassigned at sources dot redhat dot com ReportedBy: rmack at student dot ethz dot ch CC: bug-binutils at gnu dot org GCC build triplet: i686-pc-linux-gnu GCC host triplet: i686-pc-linux-gnu (Gentoo 3.4.5) GCC target triplet: avr http://sourceware.org/bugzilla/show_bug.cgi?id=2539 --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils
/usr/bin/ld: Please report this bug.
Hi, Just doing what the program told me to. Could be that my school's server had some corruption.. other things were acting strange too. This happened while compiling gcc 4.0.3. /usr/bin/ld: BFD 2.14.90.0.4 20030523 internal error, aborting at ../../bfd/elf32-i386.c line 2377 in elf_i386_relocate_section /usr/bin/ld: Please report this bug. collect2: ld returned 1 exit status make[3]: *** [libstdc++.la] Error 1 make[3]: Leaving directory `/home/student/gmartyn/Programs/gcc-build-dir/i686-pc-linux-gnu/libstdc++-v3/src' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/student/gmartyn/Programs/gcc-build-dir/i686-pc-linux-gnu/libstdc++-v3' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/student/gmartyn/Programs/gcc-build-dir/i686-pc-linux-gnu/libstdc++-v3' make: *** [all-target-libstdc++-v3] Error 2 -Greg Martyn ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils
/usr/bin/ld: Please report this bug. Got this while compiling gcc 4.1.0 also
Ran into the same problem when compiling gcc 4.1.0 (last time it was 4.0.3). I'm not on the list, so please cc me with any replies. Thanks, Greg Martyn /usr/bin/ld: BFD 2.14.90.0.4 20030523 internal error, aborting at ../../bfd/elf32-i386.c line 2377 in elf_i386_relocate_section /usr/bin/ld: Please report this bug. collect2: ld returned 1 exit status make[4]: *** [libstdc++.la] Error 1 make[4]: Leaving directory `/home/student/gmartyn/Programs/gcc-build-dir/i686-pc-linux-gnu/libstdc++-v3/src' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/student/gmartyn/Programs/gcc-build-dir/i686-pc-linux-gnu/libstdc++-v3' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/student/gmartyn/Programs/gcc-build-dir/i686-pc-linux-gnu/libstdc++-v3' make[1]: *** [all-target-libstdc++-v3] Error 2 make[1]: Leaving directory `/home/student/gmartyn/Programs/gcc-build-dir' make: *** [all] Error 2 ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils