diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-10-27 21:10:39 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-10-27 21:10:39 +0000 |
commit | 997344f303a7a7d5c0e21c2a90ada350da2be8f9 (patch) | |
tree | c71de6297a6094417f66daa14efb2de12795a851 /configure | |
parent | 16e9b7de41bc4163fe53140f387c020ea55d0a06 (diff) | |
download | hqemu-997344f303a7a7d5c0e21c2a90ada350da2be8f9.zip hqemu-997344f303a7a7d5c0e21c2a90ada350da2be8f9.tar.gz |
added i386 user only target
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@404 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -27,7 +27,7 @@ ar="ar" make="make" strip="strip" cpu=`uname -m` -target_list="i386 i386-softmmu arm sparc" +target_list="i386-user i386 i386-softmmu arm-user sparc-user" case "$cpu" in i386|i486|i586|i686|i86pc|BePC) cpu="i386" @@ -324,6 +324,10 @@ target_softmmu="no" if expr $target : '.*-softmmu' > /dev/null ; then target_softmmu="yes" fi +target_user_only="no" +if expr $target : '.*-user' > /dev/null ; then + target_user_only="yes" +fi echo "Creating $config_mak, $config_h and $target_dir/Makefile" @@ -364,6 +368,10 @@ if test "$target_softmmu" = "yes" ; then echo "CONFIG_SOFTMMU=yes" >> $config_mak echo "#define CONFIG_SOFTMMU 1" >> $config_h fi +if test "$target_user_only" = "yes" ; then + echo "CONFIG_USER_ONLY=yes" >> $config_mak + echo "#define CONFIG_USER_ONLY 1" >> $config_h +fi done # for target in $targets |