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

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

?? ltmain.sh

?? exosip
?? SH
?? 第 1 頁 / 共 5 頁
字號:
      $echo "disable static libraries"    fi    exit $?    ;;  --finish) mode="finish" ;;  --mode) prevopt="--mode" prev=mode ;;  --mode=*) mode="$optarg" ;;  --preserve-dup-deps) duplicate_deps="yes" ;;  --quiet | --silent)    show=:    preserve_args="$preserve_args $arg"    ;;  --tag)    prevopt="--tag"    prev=tag    preserve_args="$preserve_args --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_FAILUREficase $disable_libs inno)   ;;shared)  build_libtool_libs=no  build_old_libs=yes  ;;static)  build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`  ;;esac# 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	exit_status=$?	if test "$exit_status" -ne 0 && test ! -d "${xdir}$objdir"; then	  exit $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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品久久国产字幕高潮| 久久99精品国产麻豆婷婷| 亚洲老妇xxxxxx| 一个色妞综合视频在线观看| 欧美日本精品一区二区三区| 五月婷婷色综合| 欧美国产一区二区| 欧美视频第二页| 风间由美性色一区二区三区| 久久99国产精品久久| 日韩专区中文字幕一区二区| 欧美日韩久久一区| 欧美午夜不卡视频| 7777精品伊人久久久大香线蕉超级流畅 | 日本乱码高清不卡字幕| 激情综合亚洲精品| 麻豆高清免费国产一区| 久久女同性恋中文字幕| 91天堂素人约啪| 美女网站在线免费欧美精品| 欧美a级理论片| 亚洲欧美色一区| 制服丝袜日韩国产| 国产欧美一区二区三区沐欲| 欧美剧情电影在线观看完整版免费励志电影 | 91网站在线播放| 欧美中文字幕久久| 成人午夜伦理影院| 韩国午夜理伦三级不卡影院| 午夜精品久久久久久不卡8050| 日韩av电影免费观看高清完整版 | 在线亚洲人成电影网站色www| 欧美午夜电影在线播放| 精品美女一区二区| 18欧美亚洲精品| 国产精品日产欧美久久久久| 久久亚洲精品小早川怜子| 欧美一级片在线看| 91精品综合久久久久久| 国产日韩欧美精品综合| 亚洲在线一区二区三区| 亚洲日本欧美天堂| 亚洲精品视频在线观看网站| 久久国产三级精品| 久久国产欧美日韩精品| 日本精品视频一区二区三区| 精品国产乱码久久久久久影片| 日韩免费成人网| 久久人人97超碰com| 亚洲一区在线视频观看| 成人激情av网| 色综合久久天天| 在线观看国产一区二区| 国产人伦精品一区二区| 日韩avvvv在线播放| 色综合久久综合中文综合网| 久久久一区二区三区捆绑**| 亚洲成av人**亚洲成av**| 日韩精品亚洲一区二区三区免费| 成人av电影在线| 久久综合狠狠综合久久激情| 亚洲成人av免费| 在线观看一区不卡| 中文字幕一区三区| 丁香另类激情小说| 国产欧美一区二区精品秋霞影院 | 日韩三级在线观看| 久久久久亚洲综合| 精品亚洲成av人在线观看| 91麻豆精品国产| 日韩和欧美一区二区三区| 欧美最新大片在线看| 亚洲免费在线视频一区 二区| 从欧美一区二区三区| 久久久夜色精品亚洲| 国产麻豆成人传媒免费观看| 成人的网站免费观看| 国产亚洲精品资源在线26u| 亚洲黄一区二区三区| 91网站在线观看视频| 亚洲日本va午夜在线电影| av一区二区三区四区| 欧美精品在线观看一区二区| 亚洲 欧美综合在线网络| 在线观看网站黄不卡| 亚洲小少妇裸体bbw| 国产综合久久久久久鬼色| 久久尤物电影视频在线观看| 激情久久久久久久久久久久久久久久| 欧美成人艳星乳罩| 国产精品一区专区| 在线电影院国产精品| 免费观看久久久4p| 久久久国产精品麻豆| 国产91精品久久久久久久网曝门| 国产精品久久久久精k8| 久久精品国产精品亚洲精品| 久久久蜜桃精品| 成人动漫视频在线| 性欧美疯狂xxxxbbbb| 日韩视频在线你懂得| 国产精品中文字幕日韩精品| 一区二区中文字幕在线| 欧美做爰猛烈大尺度电影无法无天| 天堂精品中文字幕在线| 欧美精品一区二区在线播放| av福利精品导航| 香蕉成人伊视频在线观看| 精品日韩一区二区| 色婷婷av一区二区| 麻豆视频一区二区| 亚洲日本中文字幕区| 欧美zozozo| 色综合色狠狠天天综合色| 天堂久久久久va久久久久| 国产偷国产偷亚洲高清人白洁| 一本色道a无线码一区v| 久久 天天综合| 一区二区在线免费| 久久久久久久综合日本| 欧美视频一区二区| 成人av免费在线观看| 午夜精品久久久久| 国产精品理伦片| 日韩精品一区国产麻豆| 欧美性xxxxxx少妇| 成人美女视频在线看| 久久精品国产久精国产| 亚洲电影你懂得| 国产精品国产三级国产| www国产精品av| 欧美剧情电影在线观看完整版免费励志电影| 国产精品一区二区三区四区| 亚洲v中文字幕| 一区二区三区四区在线播放 | 国产美女一区二区| 视频一区视频二区中文字幕| 亚洲欧美二区三区| 中文在线免费一区三区高中清不卡| 4438x成人网最大色成网站| 99精品欧美一区二区三区综合在线| 国产精品久久久久婷婷| 精品国产污网站| 日韩欧美国产麻豆| 欧美日韩成人综合在线一区二区| 91网站最新地址| 99精品久久只有精品| 成人国产精品免费网站| 国产一区二区主播在线| 精品一区二区三区久久久| 麻豆精品一区二区综合av| 日本在线不卡视频| 日本欧美一区二区在线观看| 性欧美疯狂xxxxbbbb| 亚洲成a人片在线不卡一二三区| 亚洲激情图片小说视频| 亚洲欧美日韩中文播放 | 亚洲国产一区视频| 亚洲妇熟xx妇色黄| 丝袜亚洲另类丝袜在线| 日韩**一区毛片| 麻豆成人av在线| 国产制服丝袜一区| 国产69精品久久久久777| 风间由美一区二区av101| 风间由美性色一区二区三区| 99久久久国产精品免费蜜臀| 色噜噜偷拍精品综合在线| 在线看不卡av| 91精品国产乱码| 久久久久九九视频| 国产精品成人网| 亚洲成人三级小说| 毛片一区二区三区| 国产经典欧美精品| 免费在线一区观看| 国产一区二区电影| 97久久精品人人做人人爽| 欧美日韩中文精品| 91蝌蚪porny| 欧美日韩高清一区二区不卡| 欧美大片一区二区三区| 中文字幕+乱码+中文字幕一区| 亚洲乱码国产乱码精品精98午夜| 亚洲成人av在线电影| 国产精品亚洲视频| 欧美在线观看视频一区二区三区| 欧美日韩精品一区二区三区四区| 欧美精品一区二区三区一线天视频 | 99视频有精品| 91久久精品网| 久久综合久久99| 亚洲欧美日韩久久精品| 蜜桃视频第一区免费观看| 91蜜桃视频在线| 久久久久久久久伊人| 亚洲一二三四在线观看| 国产精品 欧美精品| 69堂精品视频| 一级特黄大欧美久久久|