yann@56: Signed-off-by: dank@kegel.com yann@56: yann@56: Raising the size of the hash table is a noticable win when linking yann@56: at least one large app. yann@56: yann@56: There was a patch, yann@56: http://sources.redhat.com/ml/binutils/2004-06/msg00165.html yann@56: to do this dynamically. No idea why that didn't make it in. yann@56: So this tiny change to raise the default size is just yann@56: a stopgap for now. yann@56: yann@56: yann@56: --- binutils-2.17/bfd/hash.c.old 2006-03-02 23:01:39.000000000 -0800 yann@56: +++ binutils-2.17/bfd/hash.c 2006-03-02 23:01:58.000000000 -0800 yann@56: @@ -298,7 +298,7 @@ yann@56: */ yann@56: yann@56: /* The default number of entries to use when creating a hash table. */ yann@56: -#define DEFAULT_SIZE 4051 yann@56: +#define DEFAULT_SIZE 32749 yann@56: static size_t bfd_default_hash_table_size = DEFAULT_SIZE; yann@56: yann@56: /* Create a new hash table, given a number of entries. */