[Bug gold/5990] running out of file descriptors when linking >1024 files

2008-07-27 Thread ian at airs dot com

--- Additional Comments From ian at airs dot com  2008-07-28 03:32 ---
What does "ulimit -n" show on your system?

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=5990

--- 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/6769] size output is wrong for "addr" column for 64-bit executable

2008-07-27 Thread amodra at bigpond dot net dot au


-- 
   What|Removed |Added

 AssignedTo|unassigned at sources dot   |amodra at bigpond dot net
   |redhat dot com  |dot au


http://sourceware.org/bugzilla/show_bug.cgi?id=6769

--- 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/6769] size output is wrong for "addr" column for 64-bit executable

2008-07-27 Thread amodra at bigpond dot net dot au

--- Additional Comments From amodra at bigpond dot net dot au  2008-07-28 
04:19 ---
http://sourceware.org/ml/binutils-cvs/2008-07/msg00146.html
http://sourceware.org/ml/binutils-cvs/2008-07/msg00147.html

-- 
   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED


http://sourceware.org/bugzilla/show_bug.cgi?id=6769

--- 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


[AVR, ARM, i386] building with older GCC

2008-07-27 Thread Ineiev
Hi, folks

There are few things that break current CVS
build with gcc-2.95.3 for these targets.

In bfd/:

elf32-avr.c get_local_syms()
elf32-arm.c arm_map_one_stub()
 have C89-incompatible declarations after
 the beginnig of the block
 (bfd.diff is suggested to move variable declarations
  to the start of the block)

In gas/config/tc-i386.c operand_type_check()
 declared as non-void but does not formally
 ends with a return; gcc-2.95.3 treats this
 as an error due to -Werror flag
 (tc-i386.diff is suggested to add return statement
  at the end of the function)

Best regards,
   Ineiev
Index: gas/config/tc-i386.c
===
RCS file: /cvs/src/src/gas/config/tc-i386.c,v
retrieving revision 1.344
diff -U3 -r1.344 tc-i386.c
--- gas/config/tc-i386.c	3 Jun 2008 17:31:52 -	1.344
+++ gas/config/tc-i386.c	28 Jul 2008 04:56:31 -
@@ -1381,6 +1381,8 @@
 default:
   abort ();
 }
+
+  return 0;
 }
 
 /* Return 1 if there is no conflict in 8bit/16bit/32bit/64bit on
Index: bfd/elf32-arm.c
===
RCS file: /cvs/src/src/bfd/elf32-arm.c,v
retrieving revision 1.153
diff -U2 -r1.153 elf32-arm.c
--- bfd/elf32-arm.c	18 Jul 2008 20:49:12 -	1.153
+++ bfd/elf32-arm.c	28 Jul 2008 05:02:45 -
@@ -11222,9 +11222,10 @@
   bfd_vma addr;
   char *stub_name;
+  output_arch_syminfo *osi;
 
   /* Massage our args to the form they really have.  */
   stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
 
-  output_arch_syminfo *osi = (output_arch_syminfo *) in_arg;
+  osi = (output_arch_syminfo *) in_arg;
   info = osi->info;
 
Index: bfd/elf32-avr.c
===
RCS file: /cvs/src/src/bfd/elf32-avr.c,v
retrieving revision 1.35
diff -U2 -r1.35 elf32-avr.c
--- bfd/elf32-avr.c	4 Jun 2008 09:59:08 -	1.35
+++ bfd/elf32-avr.c	28 Jul 2008 05:02:47 -
@@ -2591,4 +2591,5 @@
   Elf_Internal_Sym *local_syms, **all_local_syms;
   struct elf32_avr_link_hash_table *htab = avr_link_hash_table (info);
+  bfd_size_type amt;
 
   if (htab == NULL)
@@ -2598,5 +2599,5 @@
  we need to read in the local symbols in parallel and save them for
  later use; so hold pointers to the local symbols in an array.  */
-  bfd_size_type amt = sizeof (Elf_Internal_Sym *) * htab->bfd_count;
+  amt = sizeof (Elf_Internal_Sym *) * htab->bfd_count;
   all_local_syms = bfd_zmalloc (amt);
   htab->all_local_syms = all_local_syms;
___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


Re: [AVR, ARM, i386] building with older GCC

2008-07-27 Thread Alan Modra
On Mon, Jul 28, 2008 at 10:11:38AM +0400, Ineiev wrote:
> There are few things that break current CVS
> build with gcc-2.95.3 for these targets.

Patch applied.  Thanks!

-- 
Alan Modra
Australia Development Lab, IBM


___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils