Re: as 2.15 produces unbalanced parenthesis error, version 2.13 OK

2005-02-15 Thread Alan Modra
; starts a comment on the i386-elf target. So you can't use division. If you configure for i386-linux (or any of the bsds, or netware), you won't have this problem. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mai

Re: AS problem

2005-04-05 Thread Alan Modra
lem, and will look at fixing it. http://sources.redhat.com/bugzilla/show_bug.cgi?id=827 -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: "No room for program headers" strikes again

2005-04-13 Thread Alan Modra
tail. You failed to even specify the target you are using! -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: bucomm.c and mkstemp of mktemp

2005-05-05 Thread Alan Modra
On Mon, May 02, 2005 at 08:40:15AM -0700, [EMAIL PROTECTED] wrote: > When I run make to build binutils I get an error message saying mkstemp should > be used in bucomm.c instead of mktemp. No, you get a *warning*. Killing the warning is non-trivial. -- Alan Modra IBM OzLabs - Linux Tech

Re: erroneous "non-constant expression" error

2005-06-25 Thread Alan Modra
ould cause this to happen since the .p2align ought to cause a new frag to be started, but I do know that this sort of problem can happen. A workaround is to align at the start of your macro. See also http://sources.redhat.com/bugzilla/show_bug.cgi?id=997 -- Alan Modra I

Re: binutils-2.16.1 error when builing gcc-3.2.3 cross (target mipsel, host x86)

2005-08-26 Thread Alan Modra
://sources.redhat.com/ml/binutils/2004-05/msg00112.html > > I was unable to find wht resolution there is to this. Does anyone > know if this is fixed and if so in which release(s)? Have you tried mainline CVS, a mainline snapshot, or HJ Lu's latest? -- Alan Modr

Re: Is this a bug?

2005-08-29 Thread Alan Modra
ot;, OP(14), OP_MASK,PPCCOM, { RT, RA0, SISIGNOPT > } }, No, this is wrong. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: make install bug??

2005-08-31 Thread Alan Modra
what?? Definitely "or what". -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: ld 2.16 bug in linker script ?

2005-10-09 Thread Alan Modra
a symbol that belongs in .got, __GLOBAL_OFFSET_TABLE__. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: monitor instruction bug?

2005-10-11 Thread Alan Modra
On Mon, Oct 10, 2005 at 02:57:45PM -0400, root wrote: > > monitor; 0F 01 C8 > > generates: > > 0f sidt (bad) > 01 c8add eax,ecx Not for me. I suspect you are using an old objdump. -- Alan Modra IBM OzLabs - Li

Re: ld 2.16 bug in linker script ?

2005-10-16 Thread Alan Modra
On Tue, Oct 11, 2005 at 07:27:45PM +0200, Philippe Biondi wrote: > On Mon, 10 Oct 2005, Alan Modra wrote: > > >On Sun, Oct 09, 2005 at 05:28:15PM +0200, Philippe Biondi wrote: > >>but I think these two linker scripts should be equivalent. > > > >No, you haven

Re: ld.texinfo bug in 2.16

2005-10-24 Thread Alan Modra
> Also, a bit lower down is written "Another affect of the switch", and > this should be "effect". I applied this part. Thanks! -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.o

Re: bug in bfd relocation overflow handling

2005-11-30 Thread Alan Modra
32-bit relocation. It should just simply use complain_overflow_dont. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: bug in bfd relocation overflow handling

2005-12-04 Thread Alan Modra
On Thu, Dec 01, 2005 at 01:09:24AM -0500, Chris Metcalf wrote: > It's not a 32-bit relocation, it's a 16-bit relocation. Sorry, I didn't look at your original email carefully enough. I'm tinkering with a larger patch that removes some other inconsistencies from reloc.c a

Re: Wrong symbol length in ELF object

2005-12-06 Thread Alan Modra
t pays to try build binutils CVS. I think this bug will have been fixed by 2005-07-27 Alan Modra <[EMAIL PROTECTED]> * elflink.c (_bfd_elf_merge_symbol): Skip weak redefinition regardless of strength of previous definition. -- Alan Modra IBM OzLabs - Linux Technolog

Re: c++filt problem?

2005-12-15 Thread Alan Modra
On Thu, Dec 15, 2005 at 05:05:20PM -0500, Jon Champlin wrote: > bldlinux7.notesdev.ibm.com:jchampli{39}% c++filt -_ raise > signed char restrict Get a newer c++filt. I just tried some recent versions, all correct for your test. -- Alan Modra IBM OzLabs - Linux Technology

Re: Odd crash with strip

2006-01-10 Thread Alan Modra
On Wed, Jan 11, 2006 at 08:43:53AM +1030, Alan Modra wrote: > * objcopy.c (copy_object): Set isympp and osympp to NULL after free. Reviewing my own patch before committing would have been better.. There was a good reason why the test is "osympp != isympp" rather than "os

Re: Odd crash with strip

2006-01-10 Thread Alan Modra
Thus, we traverse all sections multiple times. */ -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: gas bug: out-of-order .file directives do not work

2006-02-28 Thread Alan Modra
ame = num ? file : xstrdup (file); >files[i].dir = dir; > - files_in_use = i + 1; > + if (i + 1 > files_in_use) > +files_in_use = i + 1; >last_used = i; >last_used_dir_len = dir_len; > >return i; > } > > /* Handle two forms of .file d

Re: /usr/bin/ld: Please report this bug.

2006-04-13 Thread Alan Modra
: BFD 2.14.90.0.4 20030523 internal error, aborting at > ../../bfd/elf32-i386.c line 2377 in elf_i386_relocate_section Update your binutils. 2.14 is by now very old, and is not a good match for gcc-4.x. Bugs tend to be exposed.. -- Alan Modra IBM OzL

Re: ld: BFD 2.16.91 20060118 Debian GNU/Linux internal error, aborting at ../../bfd/elf32-i386.c line 3117 in elf_i386_finish_dynamic_symbol

2006-04-30 Thread Alan Modra
the 2.16 branch. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: make prepare error

2006-05-15 Thread Alan Modra
On Mon, May 15, 2006 at 10:22:17AM -0400, Hypatia Rojas wrote: > include/asm/paca.h:36: error: array type has incomplete element type Edit include/asm/paca.h to fix this linux kernel bug. -- Alan Modra IBM OzLabs - Linux Technology Centre ___

Re: BFD internal error while compiling lapack

2006-05-31 Thread Alan Modra
eld equal to 0x, but no SHT_SYMTAB_SHNDX section was found. ELF symbols normally only use 16-bit section indices. 0x should only occur if the object has more than 64k sections. I think that is unlikely for lapack, so the error is probably due to some sort of file corruption. -- Alan Modra IB

Re: Possible bug with using "-static" and "-dynamic" on the same command

2006-06-21 Thread Alan Modra
sorry, I'm only an application developer ) these two things are > different > issues what is the reason they can't work together? And finally: Until > 2.15.90 it worked > and only from 2.15.94 and above this seems to be "broken". Correct. See http://sources.redhat.

Re: internal error in bfd_cache_lookup_worker

2006-06-21 Thread Alan Modra
ceware.org/ml/binutils/2005-10/msg00390.html and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=332184 -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: gas SEGV reporting an error + patch

2006-07-17 Thread Alan Modra
is of course somewhat random whether you will > see a crash. > > The fix is trivial: since there is no location information available, > use 'as_bad' instead of 'as_bad_where', as it was already doing for > other errors in the 'else' case. Applied. Thanks! -

Re: relocation entries for absolute symbols

2006-07-19 Thread Alan Modra
historical mistakes. Symbols such as _GLOBAL_OFFSET_TABLE_ are required to be absolute for compatibility with old dynamic loaders, but of course they really are not absolute. They point into the shared lib, so need to be relocated. This is why we generate relocations on absolute symbols. -- Al

Re: FW: no such 386 instruction

2006-07-21 Thread Alan Modra
; Your "repaired" system is still faulty, I expect. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: PowerPC objdump

2006-08-03 Thread Alan Modra
e "y" bit, newer processors use two "at" bits. You need to read your processor documentation to figure out how they work. Pass -mpower4 to gas to enable "at" branch hints. -- Alan Modra IBM OzLabs - Linux Technology Centre __

Re: binutils-2.17/gas/read.c

2006-08-28 Thread Alan Modra
nnecessarily. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Binutils 2.17 makefile problem

2006-09-27 Thread Alan Modra
iguring fails to do > the right thing. > > Should be easy to fix, I imagine. Applying as obvious to gcc mainline. I assume this will make it over to binutils mainline via DJ's script. If not, I'll apply it there too. intl/ChangeLog 2006-09-27 Alan Modra <[EMAIL PROTECTED]>

Re: 2.6.19-rc2 has ld error for ppc64

2006-10-17 Thread Alan Modra
give any errors then the warning may safely be ignored. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: GNU ld -shared fails to link filtered symbols on Solaris

2006-11-27 Thread Alan Modra
27;t help much.. Alternatively, convince the glibc people that filter symbols are such a brilliant idea that Linux must have them, and some bright Linux hacker will code it up overnight. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils ma

Re: [osol-discuss] Re: GNU ld -shared fails to link filtered symbols on Solaris

2006-11-27 Thread Alan Modra
On Mon, Nov 27, 2006 at 05:52:08PM -0800, Rod Evans wrote: > Alan Modra wrote: > >On Mon, Nov 27, 2006 at 10:04:42PM +0100, Martin Man wrote: > >>There seems to be a bug in GNU ld that does not link filter symbols > >>properly. > > > >I'd hardly cal

Re: [osol-discuss] Re: GNU ld -shared fails to link filtered symbols on Solaris

2006-11-28 Thread Alan Modra
On Tue, Nov 28, 2006 at 09:18:14AM +0100, Martin Man wrote: > P.S. so what should we do next? If you want the syms left undefined, this first hack I'd try is writing an add_symbol_hook that caused these syms to be ignored. -- Alan Modra IBM OzLabs - Linux Technolog

Re: typo in man page

2007-03-12 Thread Alan Modra
On Sun, Mar 11, 2007 at 01:04:15AM +0100, Franck Bourdonnec wrote: > LD(1) > > --emit-relocs > word -> exececutables > > (binutils-2.17) Already fixed in CVS source, but thanks for the report. -- Alan Modra IBM OzLabs - Li

Re: Bug: binutils 2.16.1/bfd/cache.c +496

2007-03-19 Thread Alan Modra
On Mon, Mar 19, 2007 at 02:47:50PM -0500, Deskin Miller wrote: > BFD 2.16.1 internal error, aborting at > ../../binutils-2.16.1/bfd/cache.c line 496 in bfd_cache_lookup_worker Fixed a long time ago. See http://sourceware.org/bugzilla/show_bug.cgi?id=973 -- Alan Modra IBM OzLabs -

Re: build binutils-2.17 fails with gcc-4.1.2 because default -Werror

2007-04-18 Thread Alan Modra
not? > Have no idea whether the warning points out a real problem or not. It's a real problem, but would only be triggered with a corrupted object file. coff-apollo.c:apollo_rtype2howto doesn't always assign howto. -- Alan Modra IBM OzLabs

Re: Memory leaks in ld.so-2.4

2007-04-20 Thread Alan Modra
t of the linker. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Relocation in generic ELF problem

2007-04-24 Thread Alan Modra
x-uclibc/bin/ld: > test1.o: Relocatns in generic ELF (EM: 3) You are compiling test1.cpp with an x86 g++. Unsurprisingly, your arm linker does not like x86 object files. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing

Re: building ZDoom with winelib - ld crash fixed but new problem arised

2007-05-08 Thread Alan Modra
under wine, then you ought to be using a compiler that produces windows PE object files. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: [GAS] x86_64 gas doesn't recognize movzx r64, r/m32 (intel notaion)

2007-05-28 Thread Alan Modra
[eip] > compiling...$ cc-c -o main.o main.S > > main.S: Assembler messages: > main.S:7: Error: suffix or operands invalid for `movzx' > main.S:8: Error: suffix or operands invalid for `movzx' > > Is it known bug/feature? movzx only zero extends 8-bit and 16-b

Re: Hex dump in objdump and readelf

2007-06-25 Thread Alan Modra
f bug was fixed 2007-01-05. -- Alan Modra IBM OzLabs - Linux Technology Centre ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Fwd: Duplicate strings in the ld-2.17.90 PO file

2007-08-17 Thread Alan Modra
t. A similar message when using a file script is :. > >I don't know if you want to abbreviate these as much as possible, > >or if you would prefer that they were correct English: [snip] The idea is to fit help text on an 80-column display. > >#: lexsup.c:329 > >

Re: GNU ld docs -- incorrect EXCLUDE_FILE example?

2007-08-17 Thread Alan Modra
s)) +*(EXCLUDE_FILE (*crtend.o *otherfile.o) .ctors) @end smallexample will cause all .ctors sections from all files except @file{crtend.o} and @file{otherfile.o} to be included. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-

Re: gas really slow on long lines

2007-08-23 Thread Alan Modra
(!is_end_of_line[(unsigned char) *cp] && *cp != ',') + ++cp; + second = cp + 1 - past_reloc; /* Allocate and copy string. The trailing NUL shouldn't be necessary, but be safe. */ -- Alan Modra Australia Devel

Re: binutils compile error under x86_64-pc-mingw32 platform

2007-09-13 Thread Alan Modra
; 0x); else printf ("%-17.17s", rtype2); printf ("\nType3: "); if (rtype3 == NULL) -#ifdef _bfd_int64_low - printf (_("unrecognized: %-7lx"), _bfd_int64_low (type3)); -#else - printf (_("unrecognized: %-7lx"), type3); -#endif + printf (_("unrecognized: %-7lx"), + (unsigned long) type3 & 0x); else printf ("%-17.17s", rtype3); -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Include of in bfd/trad-core.c can set NBPG to PAGE_SIZE which causes a build failure with some configs

2007-09-13 Thread Alan Modra
this is not unconditional now that PAGE_SIZE has gone away in the > kernel headers? Sounds like you need to fix your sys/user.h. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailm

Re: reversal of fsubp and fsubrp

2007-11-12 Thread Alan Modra
' results in st(3) = st - st(3), rather than the expected st(3) = st(3) - st This happens with all the non-commutative arithmetic floating point operations with two register operands, where the source register is %st, and destination register is %st(i). The affected opcode map is

Re: binutils-2.18 on Solaris 2.6 - ld_elf32_sparc_emulation

2007-11-12 Thread Alan Modra
scripts.sh from emultempl/elf32.em and other files, so it might be that genscripts.sh is not being interpreted correctly by your shell. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu

Re: binutils-2.18/configure and makeinfo

2007-11-12 Thread Alan Modra
On Mon, Nov 12, 2007 at 03:03:09PM -0800, Gary E. Barnes wrote: > It thinks that 4.11 is lower than 4.4 This bug has been fixed. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.

Re: binutils-2.18 on Solaris 2.6 - ld_elf32_sparc_emulation

2007-11-12 Thread Alan Modra
tus). Should be fixed in current mainline sources. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Segfault: gas-alpha

2007-11-25 Thread Alan Modra
alid relocation for field")); > return; Applied. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: bug in makeinfo version check (with PATCH)

2007-12-02 Thread Alan Modra
On Sat, Dec 01, 2007 at 10:49:55PM +0100, darkc wrote: > this version grep works only for one digit minor version numbers. > output of `makeinfo --version`: This has been fixed in CVS. -- Alan Modra Australia Development Lab, IBM ___ bug-bi

Re: Fw:Why there is no ld in binutils package

2008-01-14 Thread Alan Modra
On Mon, Jan 14, 2008 at 05:00:25PM +0800, [EMAIL PROTECTED] wrote: > I installed binutils-2.14-3.aix5.1.ppc.rpm on AIX5.3. But I could not find > GNU ld tools. The other tools are also existed. We can't answer that. You need to ask whomever provided the rpm. -- Alan Modr

Re: Build problem in binutils2.18

2008-01-28 Thread Alan Modra
e next binutils release. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: GRUB configure error: GRUB requires a working absolute objcopy

2008-02-19 Thread Alan Modra
GRUB website > and net, I am not even sure where the problem is (in > binutils or grub configure ). I tried with > 2.16.1,2.17,2.18 bin utils but same problem. The grub test is wrong. > can any one of you point to potential fix?. Just edit grub configure to remove the check. -- A

Re: compilation error

2008-03-02 Thread Alan Modra
On Sat, Mar 01, 2008 at 09:48:47PM +0100, Paluch Sebastian wrote: > I was trying to compile 2.18 under cygwin but get following error Sounds like http://sourceware.org/bugzilla/show_bug.cgi?id=4334 -- Alan Modra Australia Development Lab,

Re: cannot restore segment prot after reloc

2008-03-12 Thread Alan Modra
On Tue, Mar 11, 2008 at 07:17:54AM -0500, Paul Turner wrote: > I try to execute I get this error: This list is the wrong place to ask about this error, as the error has nothing to do with binutils. The error is from glibc ld.so, so may be due to a bug there, or even with your kernel. -- A

Re: BFD (Linux/GNU Binutils) 2.18.50.0.4.20080208 internal error, aborting while building Qt 4.3.4

2008-03-16 Thread Alan Modra
9.html -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org http://lists.gnu.org/mailman/listinfo/bug-binutils

Re: binutils-2.21.53.0.2/gas bug report

2011-10-23 Thread Alan Modra
> There looks to be a missing break in there. Indeed. I have fixed this in current mainline sources. Thanks! -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: LFLAGS+=-Wl,-q causes ld to signal 11 during collect2

2012-02-25 Thread Alan Modra
uses this feature in FDPRpro, so someone cared to make it work. https://www.research.ibm.com/haifa/projects/systems/cot/fdpr/ -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: elf-attrs.c patch

2012-03-02 Thread Alan Modra
On Thu, Mar 01, 2012 at 09:40:21AM -0800, Eliot Dresselhaus wrote: > is the for (i...) loop going beyond the end of the array? I don't think so. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.o

Re: make[4]: *** [tc-arm.o] Error 1

2012-03-29 Thread Alan Modra
his function > ../../binutils-2.22/gas/config/tc-arm.c:1912:26: error: ‘firsttype$index’ > may be used uninitialized in this function configure with --disable-werror. The fields are in fact initialized. -- Alan Modra Australia Development Lab, IBM __

Re: Suspected bug in binutils / ld (using ver 2.22).

2012-05-20 Thread Alan Modra
ching ./lib, ./usr/lib etc. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Suspected bug in binutils / ld (using ver 2.22).

2012-05-21 Thread Alan Modra
> > > 1. I compiled binutils with sysroot support but without specifying a > > > sysroot, so ./configure --sysroot=. > > > > Did you configure using "--with-sysroot=." or "--with-sysroot="? If >

Re: Suspected bug in binutils / ld (using ver 2.22).

2012-05-21 Thread Alan Modra
t=/tmp .../ld/.libs/lt-ld-new: this linker was not configured to use sysroots So, something weird is happening. --enable-shared can cause trouble unless you know exactly what you're doing. Try building without it. You may be picking up the wrong libbfd.so. -- Alan Modra Australia Developme

Re: Memory leaks in libbfd, trace provided

2012-07-31 Thread Alan Modra
stash->bfd_ptr = debug_bfd; - return TRUE; } @@ -3689,4 +3692,6 @@ _bfd_dwarf2_cleanup_debug_info (bfd *abf free (stash->dwarf_ranges_buffer); if (stash->info_ptr_memory) free (stash->info_ptr_memory); + if (stash->close_on_cleanup) +

Re: Missing symbol name in directive

2012-10-24 Thread Alan Modra
903: Error: expected comma after name `' in .size > directive > /tmp/cc22PMWw.s:10904: Error: junk at end of line, first > unrecognized character is `0' Your source contains syntax errors. Fix it. Older versions of gas accepted bad .size directives and silently genera

Re: Missing symbol name in directive

2012-10-26 Thread Alan Modra
On Thu, Oct 25, 2012 at 10:27:32PM +0200, Pieter De Mil wrote: > On 10/25/2012 01:28 AM, Alan Modra wrote: > >On Wed, Oct 24, 2012 at 02:05:49PM +0200, Pieter De Mil wrote: > >>/tmp/cc22PMWw.s: Assembler messages: > >>/tmp/cc22PMWw.s:10902: Error: Missing symbol

Re: Segfault in objdump?

2013-06-01 Thread Alan Modra
o running out of stack, tries to run objdump with some severly limited system resource. I doubt that this objdump segfault is worth pursuing. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists

Re: Segfault in objdump?

2013-06-02 Thread Alan Modra
On Sun, Jun 02, 2013 at 02:40:28PM -0700, Barret Rhoden wrote: > On 2013-06-02 at 14:23 Alan Modra wrote: > > On Sat, Jun 01, 2013 at 10:21:16AM -0700, Barret Rhoden wrote: > > > It does not fail if the Makefile doesn't > > > modify a file that it includes. >

Re: Segfault in objdump?

2013-06-02 Thread Alan Modra
shed prerequisites of target file `source'. Must remake target `source'. objdump -S akaros-kernel > akaros-kernel.asm Putting child 0x011480e0 (source) PID 23694 on the chain. Live child 0x011480e0 (source) PID 23694 Segmentation fault (core dumped) Reaping losing child 0x01

Re: Segfault in objdump?

2013-06-02 Thread Alan Modra
info->indextable[i].str = last_str; info->indextable[i].directory_name = directory_name; info->indextable[i].file_name = file_name; info->indextable[i].function_name = NULL; -- Alan Modra Australia Development Lab, IBM

Re: Is this a correct message?

2013-08-17 Thread Alan Modra
7;s been like that since http://sourceware.org/ml/binutils/2007-06/msg00101.html. Maybe Kai can suggest a better sentence. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Bug in FDIV/FDIVR.

2014-01-04 Thread Alan Modra
ns are inverted. As you can see, fdivr instruction has been used > in the place where Intel used fdiv. This problem exists only for this > specific addressing mode: > > DC F8+i FDIV ST(i), ST(0) > DC F0+i FDIVR ST(i), ST(0) See the comment at the start of

Re: Full file name bug in linker (ld)

2014-01-12 Thread Alan Modra
On Sun, Jan 12, 2014 at 10:28:39AM +0400, Andrew Rose wrote: > I think it's a bug Yes, in your libc.so. Take a look at that file with an editor. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.o

Re: Should mem sections have overlapping addresses?

2014-03-16 Thread Alan Modra
bug_info is not ALLOC, LOAD. This means the section is not loaded into memory and the VMA is irrelevant. Another DLL could well occupy this space, because airpac_.exe does not use that memory. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils

Re: bug in binutils master specific to msp430-elf

2014-06-01 Thread Alan Modra
c: $(srcdir)/emulparams/scoreelf.sh \ $(ELF_DEPS) $(srcdir)/emultempl/scoreelf.em \ $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} + ${GENSCRIPTS} score7_elf "$(tdir_score7_elf)" scoreelf esh.c: $(srcdir)/emulparams/sh.sh \ $(srcdir)/emultempl/generic.em $(srcdir)/script

Re: objdump segfault

2014-08-14 Thread Alan Modra
bfd_get_16 (abfd, data + i + 8 + j * 2 + 2))); + fprintf (file, " (%4x)", (unsigned int) bfd_get_16 (abfd, p)); + p += 2; j++; } fprintf (file, "\n"); } - - i += size; } free (dat

Re: Conditional jump or move depends on uninitialized value

2014-09-11 Thread Alan Modra
On Tue, Sep 09, 2014 at 04:06:11PM -0600, Adam.Jirasek wrote: > ==9138== Conditional jump or move depends on uninitialised value(s) > ==9138==at 0x4017BF4: index (in /lib64/ld-2.19.so) ld.so is part of glibc, not binutils. Please see http://www.gnu.org/software/libc/bugs.html -- Alan

Re: parallel make potential problem in bfd/doc

2014-09-11 Thread Alan Modra
On Wed, Sep 10, 2014 at 09:19:08AM -0400, Dan Nicolaescu wrote: > Rules for updating the texi files look like this: They look a little different on binutils-gdb.git master. :) -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mail

Re: Odd ld behaviour starting at version 2.22

2014-11-03 Thread Alan Modra
people with the same problem. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Duplicate FDEs in .eh_frame

2014-11-17 Thread Alan Modra
y discernable > difference is that they're located in completely different parts of > the section. The cases I've seen involved C++ and ld -r. Binutils git master and binutils-2_25-branch should have the problem fixed. See https://sourceware.org/bugzilla/show_bug.cgi?

Re: Incompatibility issue between GNU ld (GNU Binutils for Ubuntu) 2.24 and GNU ld (GNU Binutils for Ubuntu) 2.20.1-system.20100303

2014-11-24 Thread Alan Modra
t;Ubuntu 10.04 LTS" The difference will be due to the newer g++ passing --as-needed to ld. See the ld info document on --as-needed. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: binutils-2.24 build fails on HPUX PA-RISC

2014-12-08 Thread Alan Modra
m.h HOST_WIDEST_INT define. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: binutils-2.24 build fails on HPUX PA-RISC

2014-12-10 Thread Alan Modra
On Tue, Dec 09, 2014 at 12:01:41PM +1030, Alan Modra wrote: > On Mon, Dec 08, 2014 at 01:30:34PM -0700, Stuart Kemp wrote: > > > > Building binutils-2.24 fails on HPUX PA-RISC 11.31 using HP's compiler > > Yes, you need a compiler that supports "long long".

Re: Problem in binutils-2.24.90.pot

2014-12-12 Thread Alan Modra
Xgettext could not extract the end of the string. This has been fixed in binutils-2.25. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: binutils-2.24 build fails on HPUX PA-RISC

2014-12-12 Thread Alan Modra
On Fri, Dec 12, 2014 at 01:46:57PM -0700, Stuart Kemp wrote: > Compilation still fails in the same place. Did you regenerate configure and config.in? -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.

Re: Help, my ld is cripled. =(((

2015-01-04 Thread Alan Modra
ou may find the problem is that gcc is not passing the -L options you expect. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: binutils 2.25 dwarf.c error during compile on Solaris 10 with SunStudio12.

2015-02-04 Thread Alan Modra
ipt > "dwarf.c", line 5571: zero or negative subscript > "dwarf.c", line 6205: zero or negative subscript > cc: acomp failed for dwarf.c > make[4]: *** [dwarf.o] Error 2 dwarf_vma on your system is only a 32-bit type. Investigate why this is so. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: binutils 2.25 dwarf.c error during compile on Solaris 10 with SunStudio12.

2015-02-04 Thread Alan Modra
C99 or GNU C which to determine > how to make a uint64_t happen for HOST_WIDEST_INT > > This is causing a conflict. Fixed on master binutils with git commit 4c219c2e. https://sourceware.org/ml/binutils/2014-12/msg00112.html -- Alan Modra Australia Development Lab, IBM _

Re: bug with binutils and gcc5

2015-05-22 Thread Alan Modra
o see why the failure is occurring. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: bug with binutils and gcc5

2015-05-26 Thread Alan Modra
-interposition? I'd be surprised if the testsuite passed using that option! -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: Building 2.25 on AIX crashes in ../bfd/doc

2015-06-20 Thread Alan Modra
On Fri, Jun 19, 2015 at 03:25:45PM -0700, Pete Lancashire wrote: > ./chew -f ./doc.str < >aoutx.tmp > bash: syntax error near unexpected token `>' On Sat, Jun 20, 2015 at 07:34:47AM +0200, Andreas Schwab wrote: > Alan Modra writes: > > * Makefile.

Re: configure errors?

2015-07-17 Thread Alan Modra
nf.h" 1 > # 16 "./../include/alloca-conf.h" > # 1 "../bfd/config.h" 1 > # 17 "./../include/alloca-conf.h" 2 This says your gcc is broken, but before you report a bug you should check exactly what runs when you type "gcc". It may be a scrip

Re: binutils-2.26 configure doesn't fall back to 'ar' if it can't find 'x86_64-unknown-linux-gnu-ar'

2016-01-31 Thread Alan Modra
u want to specify them, provide --build and omit --host (--host defaults to the --build value). That way you should be safe if config.guess changes again. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org

Re: Wrong source when using `-S` in objdump

2016-04-10 Thread Alan Modra
objdump also shows some context lines before the repeated line. That's why my_fun appears twice. We could probably fix that. You'll also notice repeated source lines after the negative advance of line number that don't actually corresponded to code at those locations. In this case

Re: addr2line seems to be off by one

2016-07-17 Thread Alan Modra
2line (GNU Binutils for Ubuntu) 2.24 Please dump out the raw line number information produced by clang, using "readelf -wl a.out". I think you will find that the problem is with clang, not addr2line. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils

Re: ld spurious warning?

2017-02-12 Thread Alan Modra
bal, which is invalid. The sh_info value also means ld only starts considering symbols as global at index 6. So you have no global symbols as far as ld is concerned. -- Alan Modra Australia Development Lab, IBM ___ bug-binutils mailing list bug-bin

  1   2   3   >