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

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

?? ltmain.sh

?? Ilibc 語音編解碼庫算法。語音質量高。接口簡單。
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    ;;  esacdoneif test -n "$prevopt"; then  $echo "$modename: option \`$prevopt' requires an argument" 1>&2  $echo "$help" 1>&2  exit $EXIT_FAILUREfi# If this variable is set in any of the actions, the command in it# will be execed at the end.  This prevents here-documents from being# left over by shells.exec_cmd=if test -z "$show_help"; then  # Infer the operation mode.  if test -z "$mode"; then    $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2    $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2    case $nonopt in    *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)      mode=link      for arg      do	case $arg in	-c)	   mode=compile	   break	   ;;	esac      done      ;;    *db | *dbx | *strace | *truss)      mode=execute      ;;    *install*|cp|mv)      mode=install      ;;    *rm)      mode=uninstall      ;;    *)      # If we have no mode, but dlfiles were specified, then do execute mode.      test -n "$execute_dlfiles" && mode=execute      # Just use the default operation mode.      if test -z "$mode"; then	if test -n "$nonopt"; then	  $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2	else	  $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2	fi      fi      ;;    esac  fi  # Only execute mode is allowed to have -dlopen flags.  if test -n "$execute_dlfiles" && test "$mode" != execute; then    $echo "$modename: unrecognized option \`-dlopen'" 1>&2    $echo "$help" 1>&2    exit $EXIT_FAILURE  fi  # Change the help message to a mode-specific one.  generic_help="$help"  help="Try \`$modename --help --mode=$mode' for more information."  # These modes are in order of execution frequency so that they run quickly.  case $mode in  # libtool compile mode  compile)    modename="$modename: compile"    # Get the compilation command and the source file.    base_compile=    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"    suppress_opt=yes    suppress_output=    arg_mode=normal    libobj=    later=    for arg    do      case $arg_mode in      arg  )	# do not "continue".  Instead, add this to base_compile	lastarg="$arg"	arg_mode=normal	;;      target )	libobj="$arg"	arg_mode=normal	continue	;;      normal )	# Accept any command-line options.	case $arg in	-o)	  if test -n "$libobj" ; then	    $echo "$modename: you cannot specify \`-o' more than once" 1>&2	    exit $EXIT_FAILURE	  fi	  arg_mode=target	  continue	  ;;	-static | -prefer-pic | -prefer-non-pic)	  later="$later $arg"	  continue	  ;;	-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, and some SunOS ksh mistreat backslash-escaping      # in scan sets (worked around with variable expansion),      # and furthermore cannot handle '|' '&' '(' ')' in scan sets       # at all, so we specify them 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    qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`    case $qlibobj in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	qlibobj="\"$qlibobj\"" ;;    esac    test "X$libobj" != "X$qlibobj" \	&& $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' 	&()|`$[]' \	&& $echo "$modename: libobj name \`$libobj' may not contain shell special characters."    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    qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"`    case $qsrcfile in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")      qsrcfile="\"$qsrcfile\"" ;;    esac    $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 $qsrcfile $pic_flag"      else	# Don't build PIC code	command="$base_compile $qsrcfile"      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 $qsrcfile"      else	command="$base_compile $qsrcfile $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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲香肠在线观看| 91精品国产综合久久精品麻豆| 亚洲成精国产精品女| 国产精品电影一区二区| 亚洲国产成人午夜在线一区| 精品女同一区二区| 久久久久国产成人精品亚洲午夜 | 欧美一级片免费看| 欧美日韩不卡在线| 日韩一区和二区| 欧美国产视频在线| 国产精品蜜臀在线观看| 国产欧美一区二区三区鸳鸯浴 | 中文天堂在线一区| 久久99国产精品麻豆| 91猫先生在线| 欧美在线观看视频一区二区| 在线视频国产一区| 欧美精品一区二区在线观看| 国产精品蜜臀在线观看| 青草国产精品久久久久久| 高清成人在线观看| 欧美日韩一区二区电影| 亚洲精品一区二区三区在线观看| 亚洲国产精品国自产拍av| 欧美激情综合五月色丁香| 国产精品久久毛片a| 亚洲最大的成人av| 欧美aaaaaa午夜精品| 国产成人精品午夜视频免费| eeuss影院一区二区三区| 欧美日韩国产在线播放网站| 久久一区二区视频| 亚洲免费在线电影| 久久99精品国产91久久来源| 99国产欧美久久久精品| 91精品久久久久久久久99蜜臂| 亚洲精品在线电影| 夜夜精品视频一区二区| 国产一区三区三区| 欧美性大战xxxxx久久久| 精品99999| 天堂资源在线中文精品| 国产成人免费在线观看不卡| 欧美探花视频资源| 国产精品久久久久久久久免费相片| 亚洲成人动漫av| 国产999精品久久久久久绿帽| 欧美美女一区二区三区| 亚洲同性gay激情无套| 麻豆91免费看| 欧美日韩视频专区在线播放| 国产精品美女视频| 久久av资源网| 在线播放亚洲一区| 亚洲精品你懂的| 国产99久久久国产精品| 精品国产乱码久久久久久浪潮 | 在线成人午夜影院| 日韩毛片视频在线看| 国产激情精品久久久第一区二区| 久久综合九色综合欧美就去吻| 一区二区免费看| 另类人妖一区二区av| 久久精品欧美一区二区三区麻豆| 国产一级精品在线| 一区二区三区欧美在线观看| 91精品国产色综合久久不卡蜜臀 | 国产不卡一区视频| 亚洲欧美日韩一区二区三区在线观看| 欧美午夜在线观看| 蜜乳av一区二区| 成人性生交大片免费看在线播放| 美国三级日本三级久久99| 欧美美女bb生活片| 亚洲成人av福利| 欧美日本一区二区在线观看| 亚洲在线视频网站| 欧美这里有精品| 亚洲裸体在线观看| 久久99精品一区二区三区三区| 欧美一级二级三级蜜桃| 免费观看在线综合色| 91精品在线免费观看| 免费的成人av| 久久免费偷拍视频| gogogo免费视频观看亚洲一| 国产精品高潮呻吟| 欧美在线视频你懂得| 亚洲国产成人tv| 日韩一级大片在线观看| 国产精品中文字幕日韩精品| 久久精品网站免费观看| 91香蕉视频污| 亚洲大片精品永久免费| 正在播放亚洲一区| 国产麻豆精品95视频| 亚洲欧美日韩在线播放| 欧美美女一区二区在线观看| 九色porny丨国产精品| 国产精品三级在线观看| 91福利视频在线| 美女一区二区三区| 国产精品久久精品日日| 欧美丝袜丝交足nylons| 久久99国产精品久久99果冻传媒| 国产精品入口麻豆原神| 欧美人妖巨大在线| 国产成人精品影视| 亚洲午夜在线视频| 精品日韩欧美一区二区| www.综合网.com| 日韩—二三区免费观看av| 久久婷婷国产综合精品青草| 色哟哟国产精品| 国内精品伊人久久久久av影院 | 久久久精品影视| 欧美自拍偷拍午夜视频| 韩国午夜理伦三级不卡影院| 亚洲精品亚洲人成人网| 精品欧美一区二区在线观看| 91激情五月电影| 国产盗摄精品一区二区三区在线| 亚洲亚洲精品在线观看| 国产精品久久久久久久久快鸭 | 亚洲国产精品一区二区久久| 久久久亚洲高清| 制服丝袜中文字幕一区| 成人黄色片在线观看| 久久精品国产网站| 亚洲最大成人综合| 成人欧美一区二区三区白人| 精品成人在线观看| 日韩一区二区三区三四区视频在线观看| 成人福利电影精品一区二区在线观看| 免费在线观看成人| 日本不卡123| 午夜精品123| 亚洲在线中文字幕| 亚洲精品伦理在线| 亚洲欧洲99久久| 日本一区二区成人在线| 精品99一区二区三区| 欧美va亚洲va在线观看蝴蝶网| 欧美色偷偷大香| 欧美午夜精品一区| 91黄色在线观看| 色网站国产精品| 91成人免费在线视频| 91麻豆.com| 91高清视频免费看| 精品视频一区二区不卡| 色94色欧美sute亚洲13| 色综合久久久久网| 91在线精品一区二区| 99re8在线精品视频免费播放| 国产成人免费视频网站 | 五月天网站亚洲| 天堂影院一区二区| 日韩av不卡在线观看| 轻轻草成人在线| 免费观看日韩电影| 国内欧美视频一区二区| 国产高清成人在线| 99久久久久免费精品国产 | 欧美唯美清纯偷拍| 91麻豆精品国产自产在线| 欧美久久久久免费| 日韩欧美一区二区视频| 日韩精品一区二区三区在线 | 中文字幕在线不卡国产视频| 国产精品国产三级国产a| 夜夜嗨av一区二区三区网页 | 久久精品在这里| 欧美国产视频在线| 亚洲午夜一二三区视频| 免费精品99久久国产综合精品| 国产精品乡下勾搭老头1| 波多野结衣中文字幕一区| 一本到一区二区三区| 777欧美精品| 久久理论电影网| 18涩涩午夜精品.www| 亚洲精品菠萝久久久久久久| 亚洲视频香蕉人妖| 亚洲图片激情小说| 日韩美女一区二区三区四区| 精品国免费一区二区三区| 欧美精品一区男女天堂| 亚洲女女做受ⅹxx高潮| 亚洲成年人影院| 成人va在线观看| 日韩一区二区在线看片| 国产亚洲人成网站| 亚洲国产精品精华液网站| 国产精品综合二区| 欧美专区日韩专区| 亚洲成年人网站在线观看| 国产精品久久久久久久浪潮网站| 一区二区三区日韩欧美精品|