diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-18 19:16:53 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-18 19:16:53 +0000 |
commit | 908f52b05c517b07509b2b66fcb73e9506827340 (patch) | |
tree | a6adc54711f8dedca563c9576c5d73da95074927 /Makefile.target | |
parent | 9c2a9ea1b1fe221566ca6c3f873da1454cadd263 (diff) |
Add big-endian SH4-user target
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1992 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.target b/Makefile.target index 1626833bc0..169ab775a6 100644 --- a/Makefile.target +++ b/Makefile.target @@ -30,6 +30,11 @@ ifeq ($(TARGET_ARCH),arm) TARGET_ARCH2=armeb endif endif +ifeq ($(TARGET_ARCH),sh4) + ifeq ($(TARGET_WORDS_BIGENDIAN),yes) + TARGET_ARCH2=sh4eb + endif +endif ifeq ($(TARGET_ARCH),mips) ifneq ($(TARGET_WORDS_BIGENDIAN),yes) TARGET_ARCH2=mipsel |