aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/ld
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-11-03 14:20:37 -0800
committerRuss Cox <rsc@golang.org>2009-11-03 14:20:37 -0800
commit96ea081c04a1f59aefb8d90b52641e08d8a642a6 (patch)
treec882cccef36df9c3430bdb9e02e24b71f9bf153d /src/cmd/ld
parentc56b366c283f47f1aedc1bb9f8873438980eb8f7 (diff)
downloadgo-96ea081c04a1f59aefb8d90b52641e08d8a642a6.tar.xz
6l -e: emit external ELF symbol table.
enough to make nm and oprofile work. R=r http://go/go-review/1017016
Diffstat (limited to 'src/cmd/ld')
-rw-r--r--src/cmd/ld/elf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/ld/elf.c b/src/cmd/ld/elf.c
index a556d92aa2..f4809e07cf 100644
--- a/src/cmd/ld/elf.c
+++ b/src/cmd/ld/elf.c
@@ -11,7 +11,7 @@
* in order to write the code just once. The 64-bit data structure is
* written in the 32-bit format on the 32-bit machines.
*/
-#define NSECT 16
+#define NSECT 32
static int elf64;
static ElfEhdr hdr;