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

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

?? ltmain.sh

?? 機器人足球AI設計比賽
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    else      $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 ;;  --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    qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`    case $qlibobj in      *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	qlibobj="\"$qlibobj\"" ;;    esac    if test "X$libobj" != "X$qlibobj"; then	$echo "$modename: libobj name \`$libobj' may not contain shell special characters."	exit $EXIT_FAILURE    fi    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 "$srcfile" "$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      *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")      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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一级片网址| 91色porny蝌蚪| 粗大黑人巨茎大战欧美成人| 成人激情av网| 欧美日韩一级二级| 亚洲精品一线二线三线| 国产精品久久久久久久久果冻传媒 | 国产精品卡一卡二| 亚洲一区二区av在线| 国内成人自拍视频| 日本韩国欧美三级| 亚洲精品一线二线三线无人区| 日韩理论片一区二区| 日产欧产美韩系列久久99| 成人黄色软件下载| 91精品国产综合久久精品| 国产精品少妇自拍| 热久久国产精品| 99视频一区二区三区| 欧美一级夜夜爽| 亚洲三级在线看| 精品一区二区三区日韩| 色欲综合视频天天天| 久久综合色8888| 亚洲香肠在线观看| 成人中文字幕合集| 精品少妇一区二区三区在线视频| 亚洲免费观看视频| 国产精品亚洲人在线观看| 欧美日韩国产天堂| 国产精品久久久久久久久晋中| 久久疯狂做爰流白浆xx| 欧美日韩国产区一| 综合精品久久久| 国产麻豆视频精品| 777a∨成人精品桃花网| 一级特黄大欧美久久久| 国产91精品一区二区麻豆网站 | 日韩电影在线看| 一本一道久久a久久精品| 久久久久久久免费视频了| 天天做天天摸天天爽国产一区 | 亚洲国产视频直播| av成人老司机| 国产亚洲一区二区三区四区 | 精品少妇一区二区三区在线播放| 亚洲综合激情网| eeuss鲁一区二区三区| 欧美精品一区二区蜜臀亚洲| 日韩1区2区3区| 欧美电影在线免费观看| 伊人开心综合网| www.综合网.com| 中文字幕欧美日韩一区| 国产成人综合亚洲91猫咪| 久久伊99综合婷婷久久伊| 日韩**一区毛片| 这里是久久伊人| 天天av天天翘天天综合网色鬼国产| 日本二三区不卡| 亚洲日本青草视频在线怡红院| 大尺度一区二区| 中文字幕免费不卡在线| 成人自拍视频在线观看| 国产偷国产偷亚洲高清人白洁 | 国产精品毛片久久久久久久| 国产传媒日韩欧美成人| 国产亚洲精久久久久久| 国产成人av一区二区三区在线观看| 2024国产精品| 国产福利一区二区三区视频| 国产亚洲精久久久久久| 成人高清在线视频| 国产精品欧美久久久久无广告 | 亚洲欧美视频在线观看视频| 91网站在线播放| 亚洲精品国产品国语在线app| 色婷婷亚洲综合| 亚洲成人免费在线| 欧美一区二区三区性视频| 奇米综合一区二区三区精品视频| 日韩午夜电影在线观看| 国产综合色产在线精品 | 91在线观看下载| 亚洲激情成人在线| 欧美日韩国产综合视频在线观看 | 久久亚洲捆绑美女| 粉嫩蜜臀av国产精品网站| 国产精品久久二区二区| 亚洲最新在线观看| 欧美xxxx在线观看| 日av在线不卡| 国产校园另类小说区| 欧美日韩在线播放| 色美美综合视频| 美女视频免费一区| 亚洲综合一区二区| 亚洲三级在线看| 亚瑟在线精品视频| 一区二区三区中文在线| 国产女同性恋一区二区| 成人黄色小视频| 亚洲第一av色| 精品久久久久久最新网址| 国产成人高清在线| 一区二区久久久久| 日韩欧美电影一区| 99久久国产综合精品女不卡| 偷窥国产亚洲免费视频| 欧美电视剧免费观看| 99久久99久久久精品齐齐| 亚洲va国产天堂va久久en| 精品第一国产综合精品aⅴ| www.在线成人| 日产国产欧美视频一区精品| 日本一区二区三区四区在线视频 | 久久夜色精品一区| 色综合一个色综合亚洲| 裸体健美xxxx欧美裸体表演| 自拍视频在线观看一区二区| 欧美一级二级三级蜜桃| av福利精品导航| 日本午夜一区二区| 最新中文字幕一区二区三区| 91精品中文字幕一区二区三区| 国产成人一区在线| 视频在线观看91| 中文字幕中文字幕一区二区| 欧美一级片在线看| 色综合咪咪久久| 国产一区二区三区免费看| 亚洲国产aⅴ成人精品无吗| 国产亚洲美州欧州综合国| 777久久久精品| 91蜜桃在线免费视频| 国产在线不卡一卡二卡三卡四卡| 一区二区三区中文在线| 国产色一区二区| 在线不卡a资源高清| 91香蕉视频mp4| 国产999精品久久久久久绿帽| 日本亚洲天堂网| 亚洲一区二区三区自拍| 亚洲欧洲日韩av| 久久久久九九视频| 91精品国产综合久久久蜜臀粉嫩| 色狠狠色狠狠综合| 粉嫩在线一区二区三区视频| 久久精品av麻豆的观看方式| 亚洲午夜免费视频| 亚洲视频资源在线| 国产人成亚洲第一网站在线播放| 欧美一级片在线| 欧美日韩成人在线一区| 91麻豆精品一区二区三区| 成人小视频在线观看| 黄色资源网久久资源365| 日韩一区精品字幕| 亚洲愉拍自拍另类高清精品| 国产精品福利av| 国产欧美日韩视频在线观看| 精品欧美一区二区在线观看| 欧美精品一卡二卡| 欧美吻胸吃奶大尺度电影| 色悠悠亚洲一区二区| 99久久综合精品| 福利91精品一区二区三区| 国产麻豆精品95视频| 韩国av一区二区三区四区| 麻豆精品视频在线观看免费| 日韩影视精彩在线| 日本三级亚洲精品| 午夜天堂影视香蕉久久| 亚洲国产欧美在线| 亚洲福利视频三区| 婷婷国产v国产偷v亚洲高清| 亚洲成人先锋电影| 视频一区视频二区中文| 爽好久久久欧美精品| 日韩在线a电影| 日日嗨av一区二区三区四区| 天堂蜜桃一区二区三区| 奇米一区二区三区av| 蜜桃av一区二区| 国内国产精品久久| 国产a级毛片一区| 成人动漫av在线| 一本高清dvd不卡在线观看| 91蜜桃视频在线| 欧美日韩一区二区三区四区 | 精品综合免费视频观看| 久久精品99久久久| 国产在线一区二区| 成人免费高清在线| 99精品视频中文字幕| 色88888久久久久久影院野外 | 日韩av电影免费观看高清完整版在线观看 | 国产经典欧美精品| 99视频精品在线| 在线亚洲人成电影网站色www|