enabled system emulator build on PowerPC - increased portability of soft mmu code

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@435 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2003-10-30 01:18:42 +00:00
parent 7f7f987341
commit c321f67309
1 changed files with 19 additions and 2 deletions

View File

@ -20,10 +20,18 @@ endif
ifdef CONFIG_USER_ONLY
PROGS=$(QEMU_USER)
else
ifeq ($(ARCH),i386)
ifeq ($(TARGET_ARCH), i386)
ifeq ($(ARCH), i386)
PROGS+=$(QEMU_SYSTEM)
endif
ifeq ($(ARCH), ppc)
ifdef CONFIG_SOFTMMU
PROGS+=$(QEMU_SYSTEM)
endif
endif
endif
endif
@ -174,8 +182,17 @@ VL_OBJS+=sdl.o
SDL_LIBS+=-L/usr/X11R6/lib -lX11 -lXext -lXv -ldl -lm
endif
VL_LDFLAGS=
# specific flags are needed for non soft mmu emulator
ifndef CONFIG_SOFTMMU
VL_LDFLAGS+=-static -Wl,-T,$(SRC_PATH)/i386-vl.ld
endif
ifdef CONFIG_STATIC
VL_LDFLAGS+=-static
endif
$(QEMU_SYSTEM): $(VL_OBJS) libqemu.a
$(CC) -static -Wl,-T,$(SRC_PATH)/i386-vl.ld -o $@ $^ $(LIBS) $(SDL_LIBS)
$(CC) $(VL_LDFLAGS) -o $@ $^ $(LIBS) $(SDL_LIBS)
sdl.o: sdl.c
$(CC) $(CFLAGS) $(DEFINES) $(SDL_CFLAGS) -c -o $@ $<