亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? configure

?? QEMU 0.91 source code, supports ARM processor including S3C24xx series
??
?? 第 1 頁 / 共 3 頁
字號:
echo "  --enable-adlib           enable Adlib emulation"echo "  --enable-coreaudio       enable Coreaudio audio driver"echo "  --enable-alsa            enable ALSA audio driver"echo "  --enable-fmod            enable FMOD audio driver"echo "  --enable-dsound          enable DirectSound audio driver"echo "  --disable-vnc-tls        disable TLS encryption for VNC server"echo "  --enable-system          enable all system emulation targets"echo "  --disable-system         disable all system 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 "  --fmod-lib               path to FMOD library"echo "  --fmod-inc               path to FMOD includes"echo "  --enable-uname-release=R Return R for uname -r in usermode emulation"echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"echo ""echo "NOTE: The object files are built at the place where configure is launched"exit 1ficc="${cross_prefix}${cc}"ar="${cross_prefix}${ar}"strip="${cross_prefix}${strip}"# check that the C compiler works.cat > $TMPC <<EOFint main(void) {}EOFif $cc -c -o $TMPO $TMPC 2> /dev/null ; then  : C compiler works okelse    echo "ERROR: \"$cc\" either does not exist or does not work"    exit 1fiif test "$mingw32" = "yes" ; then    linux="no"    EXESUF=".exe"    oss="no"fi# Check for gcc4, error if pre-gcc4if test "$check_gcc" = "yes" ; then    cat > $TMPC <<EOF#if __GNUC__ < 4#error gcc3#endifint main(){return 0;}EOF    if "$cc" -o $TMPE $TMPC 2> /dev/null ; then	echo "WARNING: \"$cc\" looks like gcc 4.x"	found_compat_cc="no"	if test "$gcc3_search" = "yes" ; then	    echo "Looking for gcc 3.x"	    for compat_cc in $gcc3_list ; do		if "$cross_prefix$compat_cc" --version 2> /dev/null | fgrep '(GCC) 3.' > /dev/null 2>&1 ; then		    echo "Found \"$compat_cc\""		    cc="$cross_prefix$compat_cc"		    found_compat_cc="yes"		    break		fi	    done	    if test "$found_compat_cc" = "no" ; then		echo "gcc 3.x not found!"	    fi	fi	if test "$found_compat_cc" = "no" ; then	    echo "QEMU is known to have problems when compiled with gcc 4.x"	    echo "It is recommended that you use gcc 3.x to build QEMU"	    echo "To use this compiler anyway, configure with --disable-gcc-check"	    exit 1;	fi    fifi## Solaris specific configure tool chain decisions#if test "$solaris" = "yes" ; then  #  # gcc for solaris 10/fcs in /usr/sfw/bin doesn't compile qemu correctly  # override the check with --disable-gcc-check  #  if test "$solarisrev" -eq 10 -a "$check_gcc" = "yes" ; then    solgcc=`which $cc`    if test "$solgcc" = "/usr/sfw/bin/gcc" ; then      echo "Solaris 10/FCS gcc in /usr/sfw/bin will not compiled qemu correctly."      echo "please get gcc-3.4.3 or later, from www.blastwave.org using pkg-get -i gcc3"      echo "or get the latest patch from SunSolve for gcc"      exit 1    fi  fi  solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`  if test -z "$solinst" ; then    echo "Solaris install program not found. Use --install=/usr/ucb/install or"    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"    exit 1  fi  if test "$solinst" = "/usr/sbin/install" ; then    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."    echo "try ginstall from the GNU fileutils available from www.blastwave.org"    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"    exit 1  fi  sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`  if test -z "$sol_ar" ; then    echo "Error: No path includes ar"    if test -f /usr/ccs/bin/ar ; then      echo "Add /usr/ccs/bin to your path and rerun configure"    fi    exit 1  fifiif test -z "$target_list" ; then# these targets are portable    if [ "$softmmu" = "yes" ] ; then        target_list="i386-softmmu sparc-softmmu x86_64-softmmu mips-softmmu mipsel-softmmu mips64-softmmu mips64el-softmmu arm-softmmu ppc-softmmu ppcemb-softmmu ppc64-softmmu m68k-softmmu sh4-softmmu sh4eb-softmmu cris-softmmu"    fi# the following are Linux specific    if [ "$linux_user" = "yes" ] ; then        target_list="i386-linux-user arm-linux-user armeb-linux-user sparc-linux-user sparc64-linux-user sparc32plus-linux-user mips-linux-user mipsel-linux-user m68k-linux-user alpha-linux-user sh4-linux-user sh4eb-linux-user ppc-linux-user ppc64-linux-user ppc64abi32-linux-user x86_64-linux-user cris-linux-user $target_list"    fi# the following are Darwin specific    if [ "$darwin_user" = "yes" ] ; then        target_list="i386-darwin-user ppc-darwin-user $target_list"    fielse    target_list=`echo "$target_list" | sed -e 's/,/ /g'`fiif test -z "$target_list" ; then    echo "No targets enabled"    exit 1fiif test -z "$cross_prefix" ; then# ---# big/little endian testcat > $TMPC << EOF#include <inttypes.h>int main(int argc, char ** argv){        volatile uint32_t i=0x01234567;        return (*((uint8_t*)(&i))) == 0x67;}EOFif $cc -o $TMPE $TMPC 2> /dev/null ; then$TMPE && bigendian="yes"elseecho big/little test failedfielse# if cross compiling, cannot launch a program, so make a static guessif test "$cpu" = "powerpc" -o "$cpu" = "mips" -o "$cpu" = "mips64" -o "$cpu" = "s390" -o "$cpu" = "sparc" -o "$cpu" = "sparc64" -o "$cpu" = "m68k" -o "$cpu" = "armv4b"; then    bigendian="yes"fifi# host long bits testhostlongbits="32"if test "$cpu" = "sparc64" -o "$cpu" = "ia64" -o "$cpu" = "x86_64" -o "$cpu" = "alpha"; then    hostlongbits="64"fi# check gcc options supportcat > $TMPC <<EOFint main(void) {}EOF########################################### SDL probesdl_too_old=noif test -z "$sdl" ; then    sdl_config="sdl-config"    sdl=no    sdl_static=no    if test "$mingw32" = "yes" -a ! -z "$cross_prefix" ; then    # win32 cross compilation case        sdl_config="i386-mingw32msvc-sdl-config"        sdl=yes    else        # normal SDL probecat > $TMPC << EOF#include <SDL.h>#undef main /* We don't want SDL to override our main() */int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }EOF        if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` 2> /tmp/qemu-$$-sdl-config.log ; then            _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`            if test "$_sdlversion" -lt 121 ; then                sdl_too_old=yes            else                if test "$cocoa" = "no" ; then                    sdl=yes                fi            fi            # static link with sdl ?            if test "$sdl" = "yes" ; then                aa="no"                `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"                sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`                if [ "$aa" = "yes" ] ; then                    sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"                fi                if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs 2> /dev/null; then                    sdl_static=yes                fi            fi # static link        fi # sdl compile test    fi # cross compilationelse    # Make sure to disable cocoa if sdl was set    if test "$sdl" = "yes" ; then       cocoa="no"       coreaudio="no"    fifi # -z $sdl########################################### VNC TLS detectionif test "$vnc_tls" = "yes" ; then  `pkg-config gnutls` || vnc_tls="no"fiif test "$vnc_tls" = "yes" ; then  vnc_tls_cflags=`pkg-config --cflags gnutls`  vnc_tls_libs=`pkg-config --libs gnutls`fi########################################### alsa sound support librariesif test "$alsa" = "yes" ; then  cat > $TMPC << EOF#include <alsa/asoundlib.h>int main(void) { snd_pcm_t **handle; return snd_pcm_close(*handle); }EOF  if $cc -o $TMPE $TMPC -lasound 2> /dev/null ; then    :  else    echo    echo "Error: Could not find alsa"    echo "Make sure to have the alsa libs and headers installed."    echo    exit 1  fifi# Check if tools are available to build documentation.if [ -x "`which texi2html 2>/dev/null`" ] && \   [ -x "`which pod2man 2>/dev/null`" ]; then  build_docs="yes"fiif test "$mingw32" = "yes" ; then  if test -z "$prefix" ; then      prefix="/c/Program Files/Qemu"  fi  mansuffix=""  datasuffix=""  docsuffix=""  binsuffix=""else  if test -z "$prefix" ; then      prefix="/usr/local"  fi  mansuffix="/share/man"  datasuffix="/share/qemu"  docsuffix="/share/doc/qemu"  binsuffix="/bin"fiecho "Install prefix    $prefix"echo "BIOS directory    $prefix$datasuffix"echo "binary directory  $prefix$binsuffix"if test "$mingw32" = "no" ; thenecho "Manual directory  $prefix$mansuffix"echo "ELF interp prefix $interp_prefix"fiecho "Source path       $source_path"echo "C compiler        $cc"echo "Host C compiler   $host_cc"echo "make              $make"echo "install           $install"echo "host CPU          $cpu"echo "host big endian   $bigendian"echo "target list       $target_list"echo "gprof enabled     $gprof"echo "profiler          $profiler"echo "static build      $static"echo "-Werror enabled   $werror"if test "$darwin" = "yes" ; then    echo "Cocoa support     $cocoa"fiecho "SDL support       $sdl"if test "$sdl" != "no" ; then    echo "SDL static link   $sdl_static"fiecho "mingw32 support   $mingw32"echo "Adlib support     $adlib"echo "CoreAudio support $coreaudio"echo "ALSA support      $alsa"echo "DSound support    $dsound"if test "$fmod" = "yes"; then    if test -z $fmod_lib || test -z $fmod_inc; then        echo        echo "Error: You must specify path to FMOD library and headers"        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"        echo        exit 1    fi    fmod_support=" (lib='$fmod_lib' include='$fmod_inc')"else    fmod_support=""fiecho "FMOD support      $fmod $fmod_support"echo "OSS support       $oss"echo "VNC TLS support   $vnc_tls"if test "$vnc_tls" = "yes" ; then    echo "    TLS CFLAGS    $vnc_tls_cflags"    echo "    TLS LIBS      $vnc_tls_libs"fiif test -n "$sparc_cpu"; then    echo "Target Sparc Arch $sparc_cpu"fiecho "kqemu support     $kqemu"echo "Documentation     $build_docs"[ ! -z "$uname_release" ] && \echo "uname -r          $uname_release"if test $sdl_too_old = "yes"; thenecho "-> Your SDL version is too old - please upgrade to have SDL support"fiif [ -s /tmp/qemu-$$-sdl-config.log ]; then  echo "The error log from compiling the libSDL test is: "  cat /tmp/qemu-$$-sdl-config.logfirm -f /tmp/qemu-$$-sdl-config.log#if test "$sdl_static" = "no"; then#  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"#ficonfig_mak="config-host.mak"config_h="config-host.h"#echo "Creating $config_mak and $config_h"test -f $config_h && mv $config_h ${config_h}~echo "# Automatically generated by configure - do not modify" > $config_makecho "# Configured with: $0 $@" >> $config_makecho "/* Automatically generated by configure - do not modify */" > $config_hecho "prefix=$prefix" >> $config_makecho "bindir=\${prefix}$binsuffix" >> $config_makecho "mandir=\${prefix}$mansuffix" >> $config_makecho "datadir=\${prefix}$datasuffix" >> $config_makecho "docdir=\${prefix}$docsuffix" >> $config_makecho "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_hecho "MAKE=$make" >> $config_makecho "INSTALL=$install" >> $config_makecho "CC=$cc" >> $config_makecho "HOST_CC=$host_cc" >> $config_makecho "AR=$ar" >> $config_makecho "STRIP=$strip -s -R .comment -R .note" >> $config_makecho "OS_CFLAGS=$OS_CFLAGS" >> $config_makecho "OS_LDFLAGS=$OS_LDFLAGS" >> $config_makecho "VL_OS_LDFLAGS=$VL_OS_LDFLAGS" >> $config_makecho "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_makecho "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_makecho "CFLAGS=$CFLAGS" >> $config_makecho "LDFLAGS=$LDFLAGS" >> $config_makecho "EXESUF=$EXESUF" >> $config_makecho "AIOLIBS=$AIOLIBS" >> $config_makif test "$cpu" = "i386" ; then  echo "ARCH=i386" >> $config_mak  echo "#define HOST_I386 1" >> $config_helif test "$cpu" = "x86_64" ; then  echo "ARCH=x86_64" >> $config_mak  echo "#define HOST_X86_64 1" >> $config_helif test "$cpu" = "armv4b" ; then  echo "ARCH=arm" >> $config_mak  echo "#define HOST_ARM 1" >> $config_helif test "$cpu" = "armv4l" ; then  echo "ARCH=arm" >> $config_mak  echo "#define HOST_ARM 1" >> $config_helif test "$cpu" = "powerpc" ; then  echo "ARCH=ppc" >> $config_mak  echo "#define HOST_PPC 1" >> $config_helif test "$cpu" = "mips" ; then  echo "ARCH=mips" >> $config_mak

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃视频在线一区| 亚洲精品一区二区三区影院| 欧美日韩成人综合天天影院| 欧美一区二区三区电影| 久久久久久99精品| 亚洲欧美激情一区二区| 日韩激情视频网站| 国产91在线|亚洲| 欧美色图片你懂的| 精品国产精品网麻豆系列| 亚洲欧美在线观看| 喷水一区二区三区| 成人激情黄色小说| 日韩一级大片在线| 综合激情网...| 久久精品久久综合| 色综合天天综合色综合av| 日韩欧美国产精品一区| 国产精品不卡在线观看| 蜜臀精品一区二区三区在线观看| 成人av中文字幕| 日韩欧美一二区| 亚洲精品伦理在线| 国产一区二区在线看| 欧美羞羞免费网站| 日本一区二区三区在线不卡| 亚洲成av人片一区二区| 成人午夜碰碰视频| 日韩精品在线一区二区| 一区二区三区自拍| 国产乱一区二区| 5月丁香婷婷综合| 亚洲美女视频在线| 国产成人综合在线播放| 69久久99精品久久久久婷婷| 自拍视频在线观看一区二区| 韩国av一区二区三区在线观看| 欧美亚洲综合在线| 国产精品久久久久久久久图文区 | av午夜精品一区二区三区| 欧美精品成人一区二区三区四区| 中文字幕亚洲不卡| 国产黑丝在线一区二区三区| 91精品久久久久久久99蜜桃| 亚洲精品日产精品乱码不卡| 国产成人精品免费看| 日韩女同互慰一区二区| 亚洲成人资源网| 色久综合一二码| 国产精品久久久久久福利一牛影视| 极品美女销魂一区二区三区| 欧美精品视频www在线观看| 亚洲欧美日韩系列| 成人av资源下载| 国产精品嫩草影院com| 国产乱人伦偷精品视频不卡| 精品欧美乱码久久久久久| 日韩精品一区第一页| 精品1区2区3区| 亚洲综合丁香婷婷六月香| 91视频com| 成人欧美一区二区三区小说 | 亚洲天堂免费在线观看视频| 国产精品亚洲一区二区三区在线| 欧美成人精精品一区二区频| 日韩高清不卡一区二区| 欧美日韩成人在线| 日韩成人午夜精品| 91精品国产91久久综合桃花 | 精品国产sm最大网站免费看| 蜜臀av性久久久久蜜臀av麻豆| 欧美精三区欧美精三区| 天天影视网天天综合色在线播放| 欧美性大战久久久久久久蜜臀| 一区二区成人在线观看| 色欲综合视频天天天| 亚洲精品美国一| 欧美日韩一卡二卡| 丝袜a∨在线一区二区三区不卡| 欧美片网站yy| 日av在线不卡| xnxx国产精品| 国v精品久久久网| 中文字幕中文字幕在线一区| 97se亚洲国产综合在线| 亚洲男人的天堂av| 欧美日精品一区视频| 天天色综合成人网| 日韩欧美电影一区| 国产精品一区二区x88av| 国产精品三级av| 色婷婷av一区二区三区大白胸| 亚洲综合成人在线| 91精品国产麻豆| 国产精品1区2区3区| 国产精品天美传媒| 在线免费观看日本欧美| 日韩精品1区2区3区| 精品国产91洋老外米糕| 99免费精品视频| 亚洲一区二区三区小说| 日韩一区二区在线看片| 国产福利电影一区二区三区| 最新高清无码专区| 欧美一级专区免费大片| 国产成人免费视频网站 | 欧美天堂亚洲电影院在线播放| 午夜视频一区二区三区| 久久综合色8888| 色综合久久中文字幕综合网| 亚洲福利电影网| 久久亚洲精华国产精华液| 91小视频在线免费看| 日韩精品成人一区二区三区| 中文av一区二区| 欧美剧在线免费观看网站| 国产一区二区三区日韩| 亚洲精品成人天堂一二三| 日韩欧美第一区| 91在线视频18| 久久99久久精品欧美| 中文字幕永久在线不卡| 日韩一区二区三区免费看| 成人性生交大片免费看中文网站| 亚洲地区一二三色| 欧美国产禁国产网站cc| 欧美美女bb生活片| av动漫一区二区| 另类小说欧美激情| 亚洲激情成人在线| 久久综合av免费| 欧美日韩三级视频| 福利视频网站一区二区三区| 五月婷婷色综合| 国产精品亲子乱子伦xxxx裸| 91精品国产综合久久蜜臀| www.成人网.com| 国内外成人在线视频| 亚洲一区中文日韩| 国产精品免费看片| 欧美xxxxx牲另类人与| 日本福利一区二区| 成人在线综合网| 精品亚洲成a人| 偷偷要91色婷婷| 亚洲码国产岛国毛片在线| 久久亚洲精精品中文字幕早川悠里 | 精品免费99久久| 欧美婷婷六月丁香综合色| 99精品视频在线观看免费| 国产一区二区网址| 免费成人av资源网| 午夜视频一区二区| 亚洲一区在线观看免费观看电影高清| 国产精品久久久久久久久久久免费看 | 一区二区高清视频在线观看| 国产精品免费免费| 国产日韩欧美精品一区| 欧美不卡一二三| 91精品国产aⅴ一区二区| 欧美日韩国产乱码电影| 91激情五月电影| 一本色道a无线码一区v| eeuss鲁一区二区三区| 国产乱码精品一区二区三区av| 免费看日韩a级影片| 午夜电影网一区| 日日摸夜夜添夜夜添国产精品 | 91精品国产一区二区| 欧美色精品在线视频| 色成年激情久久综合| 91麻豆自制传媒国产之光| 9l国产精品久久久久麻豆| 成人一区二区三区中文字幕| 国产成人av影院| 国产成人综合视频| 国产成人精品免费网站| 懂色av一区二区在线播放| 国产成人精品免费看| 成人国产精品免费| 91最新地址在线播放| 91国模大尺度私拍在线视频| 在线精品视频免费播放| 欧美午夜一区二区| 欧美美女bb生活片| 欧美一区二区三区的| 精品乱人伦小说| 久久久五月婷婷| 国产日韩精品一区二区三区| 国产免费观看久久| 成人欧美一区二区三区白人| 亚洲美女区一区| 婷婷久久综合九色国产成人| 日韩综合小视频| 久久国产精品99久久久久久老狼| 精品综合久久久久久8888| 国产曰批免费观看久久久| 成人综合在线观看| 色8久久人人97超碰香蕉987| 欧美日本不卡视频|