mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-30 21:42:06 -06:00
fixed ppc64abi32 executable name
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3895 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f0403c037d
commit
0c64b9cd4a
2 changed files with 4 additions and 5 deletions
|
@ -43,7 +43,9 @@ LIBS=
|
||||||
HELPER_CFLAGS=$(CFLAGS)
|
HELPER_CFLAGS=$(CFLAGS)
|
||||||
DYNGEN=../dyngen$(EXESUF)
|
DYNGEN=../dyngen$(EXESUF)
|
||||||
# user emulator name
|
# user emulator name
|
||||||
|
ifndef TARGET_ARCH2
|
||||||
TARGET_ARCH2=$(TARGET_ARCH)
|
TARGET_ARCH2=$(TARGET_ARCH)
|
||||||
|
endif
|
||||||
ifeq ($(TARGET_ARCH),arm)
|
ifeq ($(TARGET_ARCH),arm)
|
||||||
ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
|
ifeq ($(TARGET_WORDS_BIGENDIAN),yes)
|
||||||
TARGET_ARCH2=armeb
|
TARGET_ARCH2=armeb
|
||||||
|
@ -69,11 +71,6 @@ ifeq ($(TARGET_ARCH),mips64)
|
||||||
TARGET_ARCH2=mips64el
|
TARGET_ARCH2=mips64el
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifeq ($(TARGET_ARCH),sparc64)
|
|
||||||
ifeq ($(TARGET_ABI_DIR),sparc)
|
|
||||||
TARGET_ARCH2=sparc32plus
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
QEMU_USER=qemu-$(TARGET_ARCH2)
|
QEMU_USER=qemu-$(TARGET_ARCH2)
|
||||||
# system emulator name
|
# system emulator name
|
||||||
ifdef CONFIG_SOFTMMU
|
ifdef CONFIG_SOFTMMU
|
||||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -1073,6 +1073,7 @@ elif test "$target_cpu" = "sparc64" ; then
|
||||||
elif test "$target_cpu" = "sparc32plus" ; then
|
elif test "$target_cpu" = "sparc32plus" ; then
|
||||||
echo "TARGET_ARCH=sparc64" >> $config_mak
|
echo "TARGET_ARCH=sparc64" >> $config_mak
|
||||||
echo "TARGET_ABI_DIR=sparc" >> $config_mak
|
echo "TARGET_ABI_DIR=sparc" >> $config_mak
|
||||||
|
echo "TARGET_ARCH2=sparc32plus" >> $config_mak
|
||||||
echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
|
echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
|
||||||
echo "#define TARGET_SPARC 1" >> $config_h
|
echo "#define TARGET_SPARC 1" >> $config_h
|
||||||
echo "#define TARGET_SPARC64 1" >> $config_h
|
echo "#define TARGET_SPARC64 1" >> $config_h
|
||||||
|
@ -1096,6 +1097,7 @@ elif test "$target_cpu" = "ppc64" ; then
|
||||||
elif test "$target_cpu" = "ppc64abi32" ; then
|
elif test "$target_cpu" = "ppc64abi32" ; then
|
||||||
echo "TARGET_ARCH=ppc64" >> $config_mak
|
echo "TARGET_ARCH=ppc64" >> $config_mak
|
||||||
echo "TARGET_ABI_DIR=ppc" >> $config_mak
|
echo "TARGET_ABI_DIR=ppc" >> $config_mak
|
||||||
|
echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
|
||||||
echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
|
echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
|
||||||
echo "#define TARGET_PPC 1" >> $config_h
|
echo "#define TARGET_PPC 1" >> $config_h
|
||||||
echo "#define TARGET_PPC64 1" >> $config_h
|
echo "#define TARGET_PPC64 1" >> $config_h
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue