From 96e3899216442beece53c765ec1fbe507c7bae62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Moln=C3=A1r?= Date: Thu, 29 Jun 2006 00:22:03 +0200 Subject: [PATCH] increased the maximum number of symbols --- src/linker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linker.h b/src/linker.h index 4a48a27e..261b53bc 100644 --- a/src/linker.h +++ b/src/linker.h @@ -197,7 +197,7 @@ class ElfLinker : public Linker int outputlen; Section sections[550]; - Symbol symbols[100]; + Symbol symbols[1000]; Relocation relocations[2000]; unsigned nsections;