m68k compile fix

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@655 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2004-03-13 18:32:13 +00:00
parent 73bdea1951
commit 38ca2abc2e
2 changed files with 6 additions and 7 deletions

View file

@ -27,15 +27,14 @@ PROGS+=$(QEMU_SYSTEM)
ifndef CONFIG_SOFTMMU ifndef CONFIG_SOFTMMU
CONFIG_STATIC=y CONFIG_STATIC=y
endif endif
endif else
# the system emulator using soft mmu is portable
ifeq ($(ARCH), ppc)
ifdef CONFIG_SOFTMMU ifdef CONFIG_SOFTMMU
PROGS+=$(QEMU_SYSTEM) PROGS+=$(QEMU_SYSTEM)
endif endif
endif endif # ARCH != i386
endif endif # TARGET_ARCH = i386
ifeq ($(TARGET_ARCH), ppc) ifeq ($(TARGET_ARCH), ppc)

4
configure vendored
View file

@ -278,8 +278,8 @@ elif test "$cpu" = "ia64" ; then
echo "ARCH=ia64" >> $config_mak echo "ARCH=ia64" >> $config_mak
echo "#define HOST_IA64 1" >> $config_h echo "#define HOST_IA64 1" >> $config_h
elif test "$cpu" = "m68k" ; then elif test "$cpu" = "m68k" ; then
echo "ARCH=m68k" >> config.mak echo "ARCH=m68k" >> $config_mak
echo "#define HOST_M68K 1" >> $TMPH echo "#define HOST_M68K 1" >> $config_h
else else
echo "Unsupported CPU" echo "Unsupported CPU"
exit 1 exit 1