diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-01-06 18:27:58 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-01-06 18:27:58 +0000 |
commit | 0c64b9cd4a6174f01549e5005334226fc3152017 (patch) | |
tree | dee47c5851ccd33783024367bb7e45ef38c69b96 /Makefile.target | |
parent | f0403c037d61d8f7cc8b361e87c707fade4c78bf (diff) | |
download | qemu-0c64b9cd4a6174f01549e5005334226fc3152017.tar.gz qemu-0c64b9cd4a6174f01549e5005334226fc3152017.tar.bz2 qemu-0c64b9cd4a6174f01549e5005334226fc3152017.zip |
fixed ppc64abi32 executable name
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3895 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile.target b/Makefile.target index cc8facb7ea..acd6cda4ad 100644 --- a/Makefile.target +++ b/Makefile.target @@ -43,7 +43,9 @@ LIBS= HELPER_CFLAGS=$(CFLAGS) DYNGEN=../dyngen$(EXESUF) # user emulator name +ifndef TARGET_ARCH2 TARGET_ARCH2=$(TARGET_ARCH) +endif ifeq ($(TARGET_ARCH),arm) ifeq ($(TARGET_WORDS_BIGENDIAN),yes) TARGET_ARCH2=armeb @@ -69,11 +71,6 @@ ifeq ($(TARGET_ARCH),mips64) TARGET_ARCH2=mips64el endif endif -ifeq ($(TARGET_ARCH),sparc64) - ifeq ($(TARGET_ABI_DIR),sparc) - TARGET_ARCH2=sparc32plus - endif -endif QEMU_USER=qemu-$(TARGET_ARCH2) # system emulator name ifdef CONFIG_SOFTMMU |