[Bug binutils/2015] Segfault in setlocale() call makes programs unusable

2006-04-07 Thread skunk at iskunk dot org
--- Additional Comments From skunk at iskunk dot org 2006-04-07 22:36 --- The patchsets do make the problem go away. Another workaround, sans patches, is to set LANG=C (default value is "en_US" on my system). Information on obtaining the patchsets, for anyone reading this [archived]

Re: objdump

2006-04-07 Thread Nick Clifton
Hi Paz, My name is paz and I have a doubt, how can I convert my ".srec" file to ".od" to use it with AVRORA?? Sorry, but I do not think the objcopy supports the Avrora .od file format, so you cannot do this using the binutils. Cheers Nick __

Re: gprof

2006-04-07 Thread Nick Clifton
Hi Susukita, $ time ./a.out real0m4.324s $ gprof a.out Each sample counts as 0.01 seconds. % cumulative self self total time seconds secondscalls s/call s/call name 9.46 43.22 4.09 rand This looks

[Bug binutils/2454] incorrect syntax in avr disassembly

2006-04-07 Thread nickc at redhat dot com
--- Additional Comments From nickc at redhat dot com 2006-04-07 14:48 --- Subject: Re: New: incorrect syntax in avr disassembly Hi hochstein, > The disassembly for call and jmp looks like this: > > 43a: 0e 94 7e 0e call0x1cfc <__divmodhi4> > > This causes problems s

Re: [Bug binutils/2454] New: incorrect syntax in avr disassembly

2006-04-07 Thread Nick Clifton
Hi hochstein, The disassembly for call and jmp looks like this: 43a: 0e 94 7e 0e call0x1cfc <__divmodhi4> This causes problems since the "" part is not correct assembler syntax. It should read like this: 43a: 0e 94 7e 0e call0x1cfc ; <__divmodhi4> Do