mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
Drop darwin-user
It's been orphaned, not compiling for a long time and despite Apple's drop of their Rosetta ppc emulation technology with Mac OS X Lion no one has stepped up to fix it. Testing necessary changes wrt QOM'ification thus is impossible, so we might as well remove it completely. Signed-off-by: Andreas Färber <afaerber@suse.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
148210301e
commit
0adb124659
17 changed files with 1 additions and 5434 deletions
25
configure
vendored
25
configure
vendored
|
@ -173,7 +173,6 @@ profiler="no"
|
|||
cocoa="no"
|
||||
softmmu="yes"
|
||||
linux_user="no"
|
||||
darwin_user="no"
|
||||
bsd_user="no"
|
||||
guest_base=""
|
||||
uname_release=""
|
||||
|
@ -424,7 +423,6 @@ Darwin)
|
|||
else
|
||||
QEMU_CFLAGS="-mdynamic-no-pic $QEMU_CFLAGS"
|
||||
fi
|
||||
darwin_user="yes"
|
||||
cocoa="yes"
|
||||
audio_drv_list="coreaudio"
|
||||
audio_possible_drivers="coreaudio sdl fmod"
|
||||
|
@ -728,17 +726,12 @@ for opt do
|
|||
--disable-user)
|
||||
linux_user="no" ;
|
||||
bsd_user="no" ;
|
||||
darwin_user="no"
|
||||
;;
|
||||
--enable-user) ;;
|
||||
--disable-linux-user) linux_user="no"
|
||||
;;
|
||||
--enable-linux-user) linux_user="yes"
|
||||
;;
|
||||
--disable-darwin-user) darwin_user="no"
|
||||
;;
|
||||
--enable-darwin-user) darwin_user="yes"
|
||||
;;
|
||||
--disable-bsd-user) bsd_user="no"
|
||||
;;
|
||||
--enable-bsd-user) bsd_user="yes"
|
||||
|
@ -967,10 +960,6 @@ unicore32-linux-user \
|
|||
s390x-linux-user \
|
||||
"
|
||||
fi
|
||||
# the following are Darwin specific
|
||||
if [ "$darwin_user" = "yes" ] ; then
|
||||
default_target_list="$default_target_list i386-darwin-user ppc-darwin-user "
|
||||
fi
|
||||
# the following are BSD specific
|
||||
if [ "$bsd_user" = "yes" ] ; then
|
||||
default_target_list="${default_target_list}\
|
||||
|
@ -1072,8 +1061,6 @@ echo " --enable-user enable supported user emulation targets"
|
|||
echo " --disable-user disable all user emulation targets"
|
||||
echo " --enable-linux-user enable all linux usermode emulation targets"
|
||||
echo " --disable-linux-user disable all linux usermode emulation targets"
|
||||
echo " --enable-darwin-user enable all darwin usermode emulation targets"
|
||||
echo " --disable-darwin-user disable all darwin usermode emulation targets"
|
||||
echo " --enable-bsd-user enable all BSD usermode emulation targets"
|
||||
echo " --disable-bsd-user disable all BSD usermode emulation targets"
|
||||
echo " --enable-guest-base enable GUEST_BASE support for usermode"
|
||||
|
@ -3472,7 +3459,6 @@ esac
|
|||
target_softmmu="no"
|
||||
target_user_only="no"
|
||||
target_linux_user="no"
|
||||
target_darwin_user="no"
|
||||
target_bsd_user="no"
|
||||
case "$target" in
|
||||
${target_arch2}-softmmu)
|
||||
|
@ -3486,14 +3472,6 @@ case "$target" in
|
|||
target_user_only="yes"
|
||||
target_linux_user="yes"
|
||||
;;
|
||||
${target_arch2}-darwin-user)
|
||||
if test "$darwin" != "yes" ; then
|
||||
echo "ERROR: Target '$target' is only available on a Darwin host"
|
||||
exit 1
|
||||
fi
|
||||
target_user_only="yes"
|
||||
target_darwin_user="yes"
|
||||
;;
|
||||
${target_arch2}-bsd-user)
|
||||
if test "$bsd" != "yes" ; then
|
||||
echo "ERROR: Target '$target' is only available on a BSD host"
|
||||
|
@ -3747,9 +3725,6 @@ fi
|
|||
if test "$target_linux_user" = "yes" ; then
|
||||
echo "CONFIG_LINUX_USER=y" >> $config_target_mak
|
||||
fi
|
||||
if test "$target_darwin_user" = "yes" ; then
|
||||
echo "CONFIG_DARWIN_USER=y" >> $config_target_mak
|
||||
fi
|
||||
list=""
|
||||
if test ! -z "$gdb_xml_files" ; then
|
||||
for x in $gdb_xml_files; do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue