Commit 82d19dafe451c96cc5944b283228fb539bdf4b8b
1 parent
5286db75
added helper-i386.c - alpha fixes
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@209 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
4 additions
and
4 deletions
Makefile
... | ... | @@ -50,7 +50,7 @@ ifeq ($(ARCH),alpha) |
50 | 50 | # for the constant constructions |
51 | 51 | OP_CFLAGS=-Wall -O2 -g |
52 | 52 | # Ensure there's only a single GP |
53 | -CFLAGS += -msmall-data -msmall-text | |
53 | +CFLAGS += -msmall-data | |
54 | 54 | LDFLAGS+=-Wl,-T,alpha.ld |
55 | 55 | endif |
56 | 56 | |
... | ... | @@ -78,7 +78,7 @@ OBJS= elfload.o main.o syscall.o mmap.o signal.o vm86.o path.o |
78 | 78 | SRCS:= $(OBJS:.o=.c) |
79 | 79 | OBJS+= libqemu.a |
80 | 80 | |
81 | -LIBOBJS+=thunk.o translate-i386.o op-i386.o exec-i386.o exec.o | |
81 | +LIBOBJS+=thunk.o translate-i386.o op-i386.o helper-i386.o exec-i386.o exec.o | |
82 | 82 | |
83 | 83 | # NOTE: the disassembler code is only needed for debugging |
84 | 84 | LIBOBJS+=disas.o i386-dis.o dis-buf.o |
... | ... | @@ -155,10 +155,10 @@ README README.distrib COPYING COPYING.LIB TODO Changelog VERSION \ |
155 | 155 | dyngen.c ioctls.h ops_template.h op_string.h syscall_types.h\ |
156 | 156 | Makefile elf.h thunk.c\ |
157 | 157 | elfload.c main.c signal.c thunk.h exec.h\ |
158 | -cpu-i386.h qemu.h op-i386.c syscall-i386.h translate-i386.c\ | |
158 | +cpu-i386.h qemu.h op-i386.c helper-i386.c syscall-i386.h translate-i386.c\ | |
159 | 159 | syscall.c opreg_template.h syscall_defs.h vm86.c\ |
160 | 160 | dis-asm.h dis-buf.c disas.c disas.h alpha-dis.c ppc-dis.c i386-dis.c\ |
161 | -ppc.ld s390.ld exec-i386.h exec-i386.c path.c exec.c mmap.c configure \ | |
161 | +ppc.ld alpha.ld s390.ld exec-i386.h exec-i386.c path.c exec.c mmap.c configure \ | |
162 | 162 | tests/Makefile\ |
163 | 163 | tests/test-i386.c tests/test-i386-shift.h tests/test-i386.h\ |
164 | 164 | tests/test-i386-muldiv.h tests/test-i386-code16.S\ | ... | ... |