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

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

?? ltmain.sh

?? jrtplib3.3.0的實現
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    ;;  --tag) prevopt="--tag" prev=tag ;;  --tag=*)    set tag "$optarg" ${1+"$@"}    shift    prev=tag    preserve_args="$preserve_args --tag"    ;;  -dlopen)    prevopt="-dlopen"    prev=execute_dlfiles    ;;  -*)    $echo "$modename: unrecognized option \`$arg'" 1>&2    $echo "$help" 1>&2    exit $EXIT_FAILURE    ;;  *)    nonopt="$arg"    break    ;;  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	      *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	      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.      *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产精品久久不卡毛片| 色综合久久天天| 一道本成人在线| 日韩免费看的电影| 亚洲视频一区二区在线| 美女网站视频久久| 日本精品免费观看高清观看| 欧美精品一区二区在线观看| 亚洲综合自拍偷拍| 91色.com| 国产精品婷婷午夜在线观看| 久久精品国产免费看久久精品| 91亚洲永久精品| 国产亚洲精品免费| 久久精品国产精品亚洲精品| 欧美在线色视频| 亚洲婷婷国产精品电影人久久| 国产精品一区二区久久精品爱涩 | 日韩精品综合一本久道在线视频| 亚洲欧美综合网| 高清shemale亚洲人妖| 日韩免费观看2025年上映的电影| 亚洲国产成人tv| 欧美在线观看一二区| 亚洲欧美日韩国产中文在线| 国产成a人亚洲精品| 精品国产污网站| 乱中年女人伦av一区二区| 51精品久久久久久久蜜臀| 性感美女久久精品| 7777精品伊人久久久大香线蕉经典版下载 | 亚洲激情校园春色| 91美女福利视频| 一区二区三区在线观看网站| 91国偷自产一区二区三区观看| 亚洲人成精品久久久久| 94-欧美-setu| 一区二区三区成人| 欧美亚洲愉拍一区二区| 亚洲韩国精品一区| 欧美日韩国产免费一区二区| 婷婷久久综合九色综合伊人色| 欧美疯狂做受xxxx富婆| 欧美a一区二区| 久久久99精品久久| av在线不卡电影| 亚洲午夜在线电影| 日韩美女天天操| 色视频成人在线观看免| 亚洲一区二区影院| 欧美日韩国产高清一区| 久久国产精品72免费观看| 久久综合狠狠综合久久综合88| 国产一区在线观看麻豆| 国产精品不卡视频| 欧美性极品少妇| 男人的天堂亚洲一区| 国产三级欧美三级日产三级99| 欧美一级欧美一级在线播放| 久久99国产精品尤物| 国产精品传媒视频| 欧美三级电影网站| 精品一区二区三区在线视频| 中文字幕一区二区三区四区| 欧美日韩精品三区| 国产精品一卡二| 一区二区三区中文字幕在线观看| 欧美日韩一区二区三区视频| 狠狠色丁香婷婷综合| 亚洲精品视频在线看| 欧美一区二区黄| 9人人澡人人爽人人精品| 午夜激情综合网| 国产精品天美传媒沈樵| 欧美日韩综合色| 成人黄色小视频| 麻豆久久久久久久| 亚洲免费看黄网站| 久久久久亚洲蜜桃| 欧美日韩黄视频| 成人动漫在线一区| 麻豆国产精品一区二区三区| 亚洲欧美另类久久久精品2019| 日韩欧美色综合网站| 色屁屁一区二区| k8久久久一区二区三区| 久久精品二区亚洲w码| 一区二区三区四区五区视频在线观看| 亚洲精品一区二区三区蜜桃下载 | 91精品国产91热久久久做人人 | 国产又黄又大久久| 午夜久久久久久| 亚洲另类在线一区| 国产欧美一区二区三区沐欲| 在线不卡免费av| 久久久国产午夜精品| 在线成人av网站| 欧美性色综合网| av在线不卡电影| 成人激情av网| 国产美女精品在线| 美脚の诱脚舐め脚责91 | 亚洲乱码国产乱码精品精的特点 | 一本色道a无线码一区v| 丁香一区二区三区| 国产精品一二三区| 国产美女一区二区| 国产经典欧美精品| 国产在线看一区| 国产在线不卡一区| 国模一区二区三区白浆| 免费看日韩精品| 麻豆国产精品777777在线| 婷婷综合五月天| 免费在线观看日韩欧美| 蜜桃视频一区二区| 精品中文字幕一区二区 | 日韩av中文字幕一区二区| 亚洲国产成人av好男人在线观看| 亚洲午夜成aⅴ人片| 午夜不卡在线视频| 日产精品久久久久久久性色| 欧美aaa在线| 国产一区在线观看视频| 成人看片黄a免费看在线| 成人黄色电影在线| 91免费观看视频| 欧美日韩三级一区二区| 日韩一区二区在线观看视频| 亚洲精品一线二线三线无人区| 精品不卡在线视频| 国产精品三级视频| 一区二区三区蜜桃| 日韩avvvv在线播放| 韩国精品主播一区二区在线观看| 成人午夜在线播放| 欧美中文字幕一区二区三区亚洲| 欧美三级欧美一级| 26uuu久久综合| 中文字幕一区二区三区色视频| 一区二区三区四区高清精品免费观看| 亚洲高清久久久| 国产精品一区二区久激情瑜伽| 99视频有精品| 91精品国产综合久久小美女| 久久色.com| 亚洲无人区一区| 国产高清成人在线| 欧美日韩国产精品成人| 久久久久久久网| 亚洲成人综合在线| 国产精品一级二级三级| 欧美日韩一区久久| 国产亚洲欧美激情| 丝袜诱惑亚洲看片| 国产不卡视频在线播放| 欧美人动与zoxxxx乱| 国产婷婷一区二区| 日韩 欧美一区二区三区| 成人app网站| 欧美变态tickling挠脚心| 中文字幕一区免费在线观看| 五月综合激情网| hitomi一区二区三区精品| 日韩一区二区免费高清| 国产精品久久二区二区| 99在线热播精品免费| 制服丝袜在线91| 中文字幕一区二区三区色视频| 久久er99热精品一区二区| 91久久精品一区二区三| 国产欧美日韩在线看| 蜜臀va亚洲va欧美va天堂| 91在线精品一区二区三区| 久久久久久97三级| 亚洲mv大片欧洲mv大片精品| 成人app软件下载大全免费| 精品国产第一区二区三区观看体验| 洋洋成人永久网站入口| 国产91精品露脸国语对白| 欧美大度的电影原声| 视频一区免费在线观看| 欧美中文字幕亚洲一区二区va在线 | 亚洲国产电影在线观看| 蜜臀av一级做a爰片久久| 欧美日韩在线亚洲一区蜜芽| 亚洲欧美日韩小说| av在线这里只有精品| 亚洲欧洲韩国日本视频 | 九九精品一区二区| 91精品国产91久久综合桃花| 亚洲成人免费av| 欧美在线不卡视频| 亚洲一区二区综合| 欧美三级在线播放| 亚洲午夜久久久| 欧美日韩国产系列| 日本不卡一区二区三区高清视频| 欧美视频一区二区在线观看| 亚洲高清免费在线|