diff options
author | aurel32 | 2008-04-12 22:14:54 +0200 |
---|---|---|
committer | aurel32 | 2008-04-12 22:14:54 +0200 |
commit | f54b3f920f12fb4fb41e259f793a853860a7d2ec (patch) | |
tree | a1fdf84ed97f34461db71ad03cfbc0e146cf5e28 /configure | |
parent | Use correct memory types in do_physical_memory_save() (diff) | |
download | qemu-f54b3f920f12fb4fb41e259f793a853860a7d2ec.tar.gz qemu-f54b3f920f12fb4fb41e259f793a853860a7d2ec.tar.xz qemu-f54b3f920f12fb4fb41e259f793a853860a7d2ec.zip |
HPPA (PA-RISC) host support
(Stuart Brady)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4199 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -50,6 +50,9 @@ case "$cpu" in cris) cpu="cris" ;; + parisc|parisc64) + cpu="hppa" + ;; ia64) cpu="ia64" ;; @@ -576,6 +579,7 @@ else # if cross compiling, cannot launch a program, so make a static guess if test "$cpu" = "armv4b" \ + -o "$cpu" = "hppa" \ -o "$cpu" = "m68k" \ -o "$cpu" = "mips" \ -o "$cpu" = "mips64" \ @@ -865,6 +869,9 @@ elif test "$cpu" = "armv4l" ; then elif test "$cpu" = "cris" ; then echo "ARCH=cris" >> $config_mak echo "#define HOST_CRIS 1" >> $config_h +elif test "$cpu" = "hppa" ; then + echo "ARCH=hppa" >> $config_mak + echo "#define HOST_HPPA 1" >> $config_h elif test "$cpu" = "ia64" ; then echo "ARCH=ia64" >> $config_mak echo "#define HOST_IA64 1" >> $config_h |