aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-04-29 20:53:31 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-04-29 20:53:31 +0000
commita8baa8c555dca3b48662d5f2ffeda9b791668b48 (patch)
tree93404c655edfab3ed3f23886eaa49b16c0773e91 /configure
parent728584be27b95c95fece7740b5e0b80930b5cc45 (diff)
ia64 support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@109 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 9bae7b4375..bc06630340 100755
--- a/configure
+++ b/configure
@@ -46,6 +46,9 @@ case "$cpu" in
s390)
cpu="s390"
;;
+ ia64)
+ cpu="ia64"
+ ;;
*)
cpu="unknown"
;;
@@ -212,6 +215,9 @@ elif test "$cpu" = "s390" ; then
elif test "$cpu" = "alpha" ; then
echo "ARCH=alpha" >> config.mak
echo "#define HOST_ALPHA 1" >> $TMPH
+elif test "$cpu" = "ia64" ; then
+ echo "ARCH=ia64" >> config.mak
+ echo "#define HOST_IA64 1" >> $TMPH
else
echo "Unsupported CPU"
exit 1