patches/binutils/2.15/bfd-hash-tweak.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Mar 04 20:09:22 2007 +0000 (2007-03-04)
changeset 9 22fec39016f4
permissions -rw-r--r--
Update i586-geode-linux-uclibc sample:
- use uClibc-0.9.28.3
- use linux-2.6.20 for kernel headers
yann@1
     1
Signed-off-by: dank@kegel.com
yann@1
     2
yann@1
     3
Raising the size of the hash table is a noticable win when linking 
yann@1
     4
at least one large app.  
yann@1
     5
yann@1
     6
There was a patch,
yann@1
     7
http://sources.redhat.com/ml/binutils/2004-06/msg00165.html
yann@1
     8
to do this dynamically.  No idea why that didn't make it in.
yann@1
     9
So this tiny change to raise the default size is just
yann@1
    10
a stopgap for now.
yann@1
    11
yann@1
    12
yann@1
    13
--- binutils-2.15/bfd/hash.c.old	2003-12-01 01:33:01.000000000 -0500
yann@1
    14
+++ binutils-2.15/bfd/hash.c	2006-03-01 16:26:26.701991000 -0500
yann@1
    15
@@ -295,7 +295,7 @@
yann@1
    16
 */
yann@1
    17
 
yann@1
    18
 /* The default number of entries to use when creating a hash table.  */
yann@1
    19
-#define DEFAULT_SIZE (4051)
yann@1
    20
+#define DEFAULT_SIZE (32749)
yann@1
    21
 
yann@1
    22
 /* Create a new hash table, given a number of entries.  */
yann@1
    23
 
yann@1
    24