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

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

?? ltmain.sh

?? affix是一個Open Source的藍牙協議棧
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	-no-suppress)	  suppress_opt=no	  continue	  ;;	-Xcompiler)	  arg_mode=arg  #  the next one goes into the "base_compile" arg list	  continue      #  The current "srcfile" will either be retained or	  ;;            #  replaced later.  I would guess that would be a bug.	-Wc,*)	  args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`	  lastarg=	  save_ifs="$IFS"; IFS=',' 	  for arg in $args; do	    IFS="$save_ifs"	    # Double-quote args containing other shell metacharacters.	    # Many Bourne shells cannot handle close brackets correctly	    # in scan sets, so we specify it separately.	    case $arg in	      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	      arg="\"$arg\""	      ;;	    esac	    lastarg="$lastarg $arg"	  done	  IFS="$save_ifs"	  lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`	  # Add the arguments to base_compile.	  base_compile="$base_compile $lastarg"	  continue	  ;;	* )	  # Accept the current argument as the source file.	  # The previous "srcfile" becomes the current argument.	  #	  lastarg="$srcfile"	  srcfile="$arg"	  ;;	esac  #  case $arg	;;      esac    #  case $arg_mode      # Aesthetically quote the previous argument.      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`      case $lastarg in      # Double-quote args containing other shell metacharacters.      # Many Bourne shells cannot handle close brackets correctly      # in scan sets, so we specify it separately.      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	lastarg="\"$lastarg\""	;;      esac      base_compile="$base_compile $lastarg"    done # for arg    case $arg_mode in    arg)      $echo "$modename: you must specify an argument for -Xcompile"      exit $EXIT_FAILURE      ;;    target)      $echo "$modename: you must specify a target with \`-o'" 1>&2      exit $EXIT_FAILURE      ;;    *)      # Get the name of the library object.      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`      ;;    esac    # Recognize several different file suffixes.    # If the user specifies -o file.o, it is replaced with file.lo    xform='[cCFSifmso]'    case $libobj in    *.ada) xform=ada ;;    *.adb) xform=adb ;;    *.ads) xform=ads ;;    *.asm) xform=asm ;;    *.c++) xform=c++ ;;    *.cc) xform=cc ;;    *.ii) xform=ii ;;    *.class) xform=class ;;    *.cpp) xform=cpp ;;    *.cxx) xform=cxx ;;    *.f90) xform=f90 ;;    *.for) xform=for ;;    *.java) xform=java ;;    esac    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`    case $libobj in    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;    *)      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2      exit $EXIT_FAILURE      ;;    esac    func_infer_tag $base_compile    for arg in $later; do      case $arg in      -static)	build_old_libs=yes	continue	;;      -prefer-pic)	pic_mode=yes	continue	;;      -prefer-non-pic)	pic_mode=no	continue	;;      esac    done    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`    if test "X$xdir" = "X$obj"; then      xdir=    else      xdir=$xdir/    fi    lobj=${xdir}$objdir/$objname    if test -z "$base_compile"; then      $echo "$modename: you must specify a compilation command" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE    fi    # Delete any leftover library objects.    if test "$build_old_libs" = yes; then      removelist="$obj $lobj $libobj ${libobj}T"    else      removelist="$lobj $libobj ${libobj}T"    fi    $run $rm $removelist    trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15    # On Cygwin there's no "real" PIC flag so we must build both object types    case $host_os in    cygwin* | mingw* | pw32* | os2*)      pic_mode=default      ;;    esac    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then      # non-PIC code in shared libraries is not supported      pic_mode=default    fi    # Calculate the filename of the output object if compiler does    # not support -o with -c    if test "$compiler_c_o" = no; then      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}      lockfile="$output_obj.lock"      removelist="$removelist $output_obj $lockfile"      trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15    else      output_obj=      need_locks=no      lockfile=    fi    # Lock this critical section if it is needed    # We use this script file to make the link, it avoids creating a new file    if test "$need_locks" = yes; then      until $run ln "$progpath" "$lockfile" 2>/dev/null; do	$show "Waiting for $lockfile to be removed"	sleep 2      done    elif test "$need_locks" = warn; then      if test -f "$lockfile"; then	$echo "\*** ERROR, $lockfile exists and contains:`cat $lockfile 2>/dev/null`This indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      $echo $srcfile > "$lockfile"    fi    if test -n "$fix_srcfile_path"; then      eval srcfile=\"$fix_srcfile_path\"    fi    $run $rm "$libobj" "${libobj}T"    # Create a libtool object file (analogous to a ".la" file),    # but don't create it if we're doing a dry run.    test -z "$run" && cat > ${libobj}T <<EOF# $libobj - a libtool object file# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP## Please DO NOT delete this file!# It is necessary for linking the library.# Name of the PIC object.EOF    # Only build a PIC object if we are building libtool libraries.    if test "$build_libtool_libs" = yes; then      # Without this assignment, base_compile gets emptied.      fbsd_hideous_sh_bug=$base_compile      if test "$pic_mode" != no; then	command="$base_compile $srcfile $pic_flag"      else	# Don't build PIC code	command="$base_compile $srcfile"      fi      if test ! -d "${xdir}$objdir"; then	$show "$mkdir ${xdir}$objdir"	$run $mkdir ${xdir}$objdir	status=$?	if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then	  exit $status	fi      fi      if test -z "$output_obj"; then	# Place PIC objects in $objdir	command="$command -o $lobj"      fi      $run $rm "$lobj" "$output_obj"      $show "$command"      if $run eval "$command"; then :      else	test -n "$output_obj" && $run $rm $removelist	exit $EXIT_FAILURE      fi      if test "$need_locks" = warn &&	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then	$echo "\*** ERROR, $lockfile contains:`cat $lockfile 2>/dev/null`but it should contain:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      # Just move the object if needed, then go on to compile the next one      if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then	$show "$mv $output_obj $lobj"	if $run $mv $output_obj $lobj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Append the name of the PIC object to the libtool object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object='$objdir/$objname'EOF      # Allow error messages only from the first compilation.      if test "$suppress_opt" = yes; then        suppress_output=' >/dev/null 2>&1'      fi    else      # No PIC object so indicate it doesn't exist in the libtool      # object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object=noneEOF    fi    # Only build a position-dependent object if we build old libraries.    if test "$build_old_libs" = yes; then      if test "$pic_mode" != yes; then	# Don't build PIC code	command="$base_compile $srcfile"      else	command="$base_compile $srcfile $pic_flag"      fi      if test "$compiler_c_o" = yes; then	command="$command -o $obj"      fi      # Suppress compiler output if we already did a PIC compilation.      command="$command$suppress_output"      $run $rm "$obj" "$output_obj"      $show "$command"      if $run eval "$command"; then :      else	$run $rm $removelist	exit $EXIT_FAILURE      fi      if test "$need_locks" = warn &&	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then	$echo "\*** ERROR, $lockfile contains:`cat $lockfile 2>/dev/null`but it should contain:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      # Just move the object if needed      if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then	$show "$mv $output_obj $obj"	if $run $mv $output_obj $obj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object='$objname'EOF    else      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object=noneEOF    fi    $run $mv "${libobj}T" "${libobj}"    # Unlock the critical section if it was locked    if test "$need_locks" != no; then      $run $rm "$lockfile"    fi    exit $EXIT_SUCCESS    ;;  # libtool link mode  link | relink)    modename="$modename: link"    case $host in    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)      # It is impossible to link a dll without this setting, and      # we shouldn't force the makefile maintainer to figure out      # which system we are compiling for in order to pass an extra      # flag for every libtool invocation.      # allow_undefined=no      # FIXME: Unfortunately, there are problems with the above when trying      # to make a dll which has undefined symbols, in which case not      # even a static library is built.  For now, we need to specify      # -no-undefined on the libtool link line when we can be certain      # that all symbols are satisfied, otherwise we get a static library.      allow_undefined=yes      ;;    *)      allow_undefined=yes      ;;    esac    libtool_args="$nonopt"    base_compile="$nonopt $@"    compile_command="$nonopt"    finalize_command="$nonopt"    compile_rpath=    finalize_rpath=    compile_shlibpath=    finalize_shlibpath=    convenience=    old_convenience=    deplibs=    old_deplibs=    compiler_flags=    linker_flags=    dllsearchpath=    lib_search_path=`pwd`    inst_prefix_dir=    avoid_version=no    dlfiles=    dlprefiles=    dlself=no    export_dynamic=no    export_symbols=    export_symbols_regex=    generated=    libobjs=    ltlibs=    module=no    no_install=no    objs=    non_pic_objects=    precious_files_regex=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    vinfo_number=no    func_infer_tag $base_compile    # We need to know -static, to get the right output filenames.    for arg    do      case $arg in      -all-static | -static)	if test "X$arg" = "X-all-static"; then	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2	  fi	  if test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	else	  if test -z "$pic_flag" && test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	fi	build_libtool_libs=no	build_old_libs=yes	prefer_static_libs=yes	break	;;      esac    done    # See if our shared archives depend on static archives.    test -n "$old_archive_from_new_cmds" && build_old_libs=yes    # Go through the arguments, transforming them on the way.    while test "$#" -gt 0; do      arg="$1"      shift      case $arg in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test	;;      *) qarg=$arg ;;      esac      libtool_args="$libtool_args $qarg"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美综合在线| 欧美不卡一区二区三区| 国产一区二区三区不卡在线观看| 五月激情综合色| 免费看黄色91| 狠狠狠色丁香婷婷综合久久五月| 国产一区二三区好的| 国产专区欧美精品| 国产91高潮流白浆在线麻豆| 成人综合在线视频| 91视频在线观看| 欧美日韩电影在线| 欧美变态凌虐bdsm| 欧美激情中文字幕一区二区| 亚洲美女淫视频| 免费xxxx性欧美18vr| 国产做a爰片久久毛片| zzijzzij亚洲日本少妇熟睡| 日本电影欧美片| 欧美美女网站色| 2020国产成人综合网| 国产精品乱码人人做人人爱| 亚洲日本在线看| 亚洲在线视频免费观看| 久久精品国产亚洲aⅴ| 国产91丝袜在线观看| 欧美在线观看一区二区| 欧美一级日韩一级| 国产欧美精品在线观看| 亚洲gay无套男同| 久久超级碰视频| 色综合色狠狠天天综合色| 4hu四虎永久在线影院成人| 久久久久久久免费视频了| 一区二区三区四区不卡视频| 激情久久五月天| 色猫猫国产区一区二在线视频| 精品日韩在线观看| 亚洲精品综合在线| 国产91富婆露脸刺激对白 | 欧美mv日韩mv国产网站| 欧美激情综合网| 日韩电影免费在线| 日本乱人伦一区| 国产午夜精品福利| 另类的小说在线视频另类成人小视频在线| 成人av午夜影院| 日韩精品在线网站| 五月激情丁香一区二区三区| 99精品视频一区| 中文字幕av资源一区| 男女性色大片免费观看一区二区 | 精品美女一区二区| 亚洲午夜久久久久中文字幕久| 韩国精品在线观看| 欧美二区在线观看| 亚洲一二三四区不卡| 色噜噜偷拍精品综合在线| 欧美激情一区二区三区在线| 国产一二精品视频| 久久久精品蜜桃| 久久99精品国产.久久久久| 91精品福利在线一区二区三区| 夜夜爽夜夜爽精品视频| 94-欧美-setu| 亚洲欧美另类小说视频| 成人av在线资源网站| 欧美国产精品劲爆| 国产精品1区二区.| 国产午夜精品福利| 成人午夜在线免费| 国产精品免费人成网站| 成人国产在线观看| 亚洲色图一区二区三区| 色999日韩国产欧美一区二区| 成人欧美一区二区三区视频网页| 成人性生交大片免费| 亚洲丝袜精品丝袜在线| 日本黄色一区二区| 一区二区高清在线| 欧美日韩国产首页| 三级影片在线观看欧美日韩一区二区| 欧美天堂一区二区三区| 日韩激情一二三区| 国产精品视频免费看| 99久久综合精品| 一区二区理论电影在线观看| 欧美午夜精品久久久久久超碰| 亚洲午夜激情网站| 精品国产欧美一区二区| 国产aⅴ精品一区二区三区色成熟| 国产精品久久久久影视| 91偷拍与自偷拍精品| 亚洲成av人片观看| 26uuu久久天堂性欧美| 成人免费av网站| 婷婷一区二区三区| 国产视频视频一区| 欧美无砖砖区免费| 麻豆国产精品777777在线| 国产精品免费丝袜| 在线不卡中文字幕播放| 国产一区二区三区在线观看免费视频| 亚洲国产高清aⅴ视频| 欧美色电影在线| 高清不卡在线观看av| 亚洲一区二区视频在线观看| 精品日韩一区二区| 色素色在线综合| 国产一区二区三区久久悠悠色av| 亚洲免费观看高清完整版在线 | 国产乱码精品一区二区三区av | 91精品国产欧美日韩| 黄色精品一二区| 亚洲一区二区三区小说| 国产视频在线观看一区二区三区 | 久久亚洲精品国产精品紫薇| 91免费观看在线| 国产自产高清不卡| 天天综合天天综合色| 1024精品合集| 日本一区二区免费在线| 日韩精品中文字幕在线不卡尤物| 色综合久久99| 国产99久久久国产精品潘金网站| 亚洲一级二级在线| 亚洲欧美一区二区三区孕妇| 国产亚洲婷婷免费| 日韩欧美资源站| 欧美日本国产视频| 欧美中文一区二区三区| 成人黄色777网| 国产成人精品午夜视频免费| 蜜桃一区二区三区在线| 亚洲福利视频一区二区| 亚洲欧美成人一区二区三区| 国产精品欧美一区喷水| 久久综合国产精品| 欧美videos中文字幕| 91麻豆精品91久久久久同性| 在线视频一区二区免费| 在线视频亚洲一区| 在线免费亚洲电影| 一本大道久久a久久精二百| 99久久er热在这里只有精品66| 国产成人在线视频网址| 国产高清亚洲一区| 成人综合婷婷国产精品久久蜜臀| 国产精品影视天天线| 国产精品1区二区.| 成人午夜激情在线| 成人午夜激情影院| www.欧美精品一二区| 不卡的av电影在线观看| 97久久精品人人做人人爽50路| 成人亚洲一区二区一| av电影在线观看一区| 99re这里只有精品6| 色婷婷av一区二区| 欧美美女网站色| 日韩精品一区二区三区老鸭窝| 精品久久久久久综合日本欧美 | 一区二区三区在线视频观看58| 综合久久一区二区三区| 一区二区三区不卡视频| 日韩高清欧美激情| 国产一区二区精品久久91| 国产不卡视频一区| 在线视频欧美精品| 日韩欧美成人午夜| 中文字幕第一区第二区| 亚洲少妇屁股交4| 日产欧产美韩系列久久99| 国产精品亚洲专一区二区三区| www.日韩av| 9191久久久久久久久久久| 精品人伦一区二区色婷婷| 国产精品热久久久久夜色精品三区| 最新国产成人在线观看| 婷婷久久综合九色综合伊人色| 国产精品白丝jk黑袜喷水| 欧美在线观看视频在线| 精品久久久久久久久久久久包黑料 | 国产欧美精品一区二区色综合 | 日本va欧美va欧美va精品| 国产成人欧美日韩在线电影| 色国产综合视频| 久久精品一区二区三区四区| 亚洲激情自拍视频| 国产一区二区看久久| 欧美专区在线观看一区| 久久影院午夜论| 亚洲精品久久久久久国产精华液| 免费观看日韩av| 91国产成人在线| 日本一区二区免费在线观看视频 | 亚洲欧美视频在线观看视频| 美女被吸乳得到大胸91| 在线看不卡av| 国产精品久久久久久一区二区三区|