From 730d6f821a3d627b99e5c6a9f7cb0afe19db8555 Mon Sep 17 00:00:00 2001 From: Charles Crayne Date: Wed, 16 Jan 2008 18:38:48 -0800 Subject: [PATCH] Increase GLOBAL_TEMP_BASE Increase GLOBAL_TEMP_BASE from 4096 to 1048576 --- output/outelf32.c | 2 +- output/outelf64.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outelf32.c b/output/outelf32.c index e5e5dce..cb8b319 100644 --- a/output/outelf32.c +++ b/output/outelf32.c @@ -136,7 +136,7 @@ extern struct ofmt of_elf; #define STV_HIDDEN 2 #define STV_PROTECTED 3 -#define GLOBAL_TEMP_BASE 4096 /* bigger than any reasonable sym id */ +#define GLOBAL_TEMP_BASE 1048576 /* bigger than any reasonable sym id */ #define SEG_ALIGN 16 /* alignment of sections in file */ #define SEG_ALIGN_1 (SEG_ALIGN-1) diff --git a/output/outelf64.c b/output/outelf64.c index 07cc7ef..70645ed 100644 --- a/output/outelf64.c +++ b/output/outelf64.c @@ -148,7 +148,7 @@ extern struct ofmt of_elf64; #define STV_HIDDEN 2 #define STV_PROTECTED 3 -#define GLOBAL_TEMP_BASE 4096 /* bigger than any reasonable sym id */ +#define GLOBAL_TEMP_BASE 1048576 /* bigger than any reasonable sym id */ #define SEG_ALIGN 16 /* alignment of sections in file */ #define SEG_ALIGN_1 (SEG_ALIGN-1) -- 2.7.4