Commit 01feaa058ed41800ced5605859592de8028c0ee5
1 parent
bf53ca01
Save some vm space for the regular program loading zone, by
Pierre d'Herbemont git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2371 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
5 additions
and
0 deletions
Makefile.target
... | ... | @@ -172,6 +172,11 @@ ifeq ($(CONFIG_DARWIN),yes) |
172 | 172 | LIBS+=-lmx |
173 | 173 | endif |
174 | 174 | |
175 | +ifdef CONFIG_DARWIN_USER | |
176 | +# Leave some space for the regular program loading zone | |
177 | +BASE_LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000 | |
178 | +endif | |
179 | + | |
175 | 180 | OP_CFLAGS+=$(OS_CFLAGS) |
176 | 181 | |
177 | 182 | ######################################################### | ... | ... |