Commit a8baa8c555dca3b48662d5f2ffeda9b791668b48

Authored by bellard
1 parent 728584be

ia64 support


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@109 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 6 additions and 0 deletions
configure
@@ -46,6 +46,9 @@ case "$cpu" in @@ -46,6 +46,9 @@ case "$cpu" in
46 s390) 46 s390)
47 cpu="s390" 47 cpu="s390"
48 ;; 48 ;;
  49 + ia64)
  50 + cpu="ia64"
  51 + ;;
49 *) 52 *)
50 cpu="unknown" 53 cpu="unknown"
51 ;; 54 ;;
@@ -212,6 +215,9 @@ elif test "$cpu" = "s390" ; then @@ -212,6 +215,9 @@ elif test "$cpu" = "s390" ; then
212 elif test "$cpu" = "alpha" ; then 215 elif test "$cpu" = "alpha" ; then
213 echo "ARCH=alpha" >> config.mak 216 echo "ARCH=alpha" >> config.mak
214 echo "#define HOST_ALPHA 1" >> $TMPH 217 echo "#define HOST_ALPHA 1" >> $TMPH
  218 +elif test "$cpu" = "ia64" ; then
  219 + echo "ARCH=ia64" >> config.mak
  220 + echo "#define HOST_IA64 1" >> $TMPH
215 else 221 else
216 echo "Unsupported CPU" 222 echo "Unsupported CPU"
217 exit 1 223 exit 1