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

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

?? ltmain.sh

?? 機器人足球AI設計比賽
?? SH
?? 第 1 頁 / 共 5 頁
字號:
      # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*      # so, if we see these flags be careful not to treat them like -L      -L[A-Z][A-Z]*:*)	case $with_gcc/$host in	no/*-*-irix* | /*-*-irix*)	  compile_command="$compile_command $arg"	  finalize_command="$finalize_command $arg"	  ;;	esac	continue	;;      -L*)	dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`	# We need an absolute path.	case $dir in	[\\/]* | [A-Za-z]:[\\/]*) ;;	*)	  absdir=`cd "$dir" && pwd`	  if test -z "$absdir"; then	    $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2	    exit $EXIT_FAILURE	  fi	  dir="$absdir"	  ;;	esac	case "$deplibs " in	*" -L$dir "*) ;;	*)	  deplibs="$deplibs -L$dir"	  lib_search_path="$lib_search_path $dir"	  ;;	esac	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)	  case :$dllsearchpath: in	  *":$dir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$dir";;	  esac	  ;;	esac	continue	;;      -l*)	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then	  case $host in	  *-*-cygwin* | *-*-pw32* | *-*-beos*)	    # These systems don't actually have a C or math library (as such)	    continue	    ;;	  *-*-mingw* | *-*-os2*)	    # These systems don't actually have a C library (as such)	    test "X$arg" = "X-lc" && continue	    ;;	  *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)	    # Do not include libc due to us having libc/libc_r.	    test "X$arg" = "X-lc" && continue	    ;;	  *-*-rhapsody* | *-*-darwin1.[012])	    # Rhapsody C and math libraries are in the System framework	    deplibs="$deplibs -framework System"	    continue	  esac	elif test "X$arg" = "X-lc_r"; then	 case $host in	 *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)	   # Do not include libc_r directly, use -pthread flag.	   continue	   ;;	 esac	fi	deplibs="$deplibs $arg"	continue	;;      # Tru64 UNIX uses -model [arg] to determine the layout of C++      # classes, name mangling, and exception handling.      -model)	compile_command="$compile_command $arg"	compiler_flags="$compiler_flags $arg"	finalize_command="$finalize_command $arg"	prev=xcompiler	continue	;;     -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)	compiler_flags="$compiler_flags $arg"	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"	continue	;;      -module)	module=yes	continue	;;      # -64, -mips[0-9] enable 64-bit mode on the SGI compiler      # -r[0-9][0-9]* specifies the processor on the SGI compiler      # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler      # +DA*, +DD* enable 64-bit mode on the HP compiler      # -q* pass through compiler args for the IBM compiler      # -m* pass through architecture-specific compiler args for GCC      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*)	# Unknown arguments in both finalize_command and compile_command need	# to be aesthetically quoted because they are evaled later.	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`	case $arg in	*$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	  arg="\"$arg\""	  ;;	esac        compile_command="$compile_command $arg"        finalize_command="$finalize_command $arg"        if test "$with_gcc" = "yes" ; then          compiler_flags="$compiler_flags $arg"        fi        continue        ;;      -shrext)	prev=shrext	continue	;;      -no-fast-install)	fast_install=no	continue	;;      -no-install)	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)	  # The PATH hackery in wrapper scripts is required on Windows	  # in order for the loader to find any dlls it needs.	  $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2	  $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2	  fast_install=no	  ;;	*) no_install=yes ;;	esac	continue	;;      -no-undefined)	allow_undefined=no	continue	;;      -objectlist)	prev=objectlist	continue	;;      -o) prev=output ;;      -precious-files-regex)	prev=precious_regex	continue	;;      -release)	prev=release	continue	;;      -rpath)	prev=rpath	continue	;;      -R)	prev=xrpath	continue	;;      -R*)	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`	# We need an absolute path.	case $dir in	[\\/]* | [A-Za-z]:[\\/]*) ;;	*)	  $echo "$modename: only absolute run-paths are allowed" 1>&2	  exit $EXIT_FAILURE	  ;;	esac	case "$xrpath " in	*" $dir "*) ;;	*) xrpath="$xrpath $dir" ;;	esac	continue	;;      -static)	# The effects of -static are defined in a previous loop.	# We used to do the same as -all-static on platforms that	# didn't have a PIC flag, but the assumption that the effects	# would be equivalent was wrong.  It would break on at least	# Digital Unix and AIX.	continue	;;      -thread-safe)	thread_safe=yes	continue	;;      -version-info)	prev=vinfo	continue	;;      -version-number)	prev=vinfo	vinfo_number=yes	continue	;;      -Wc,*)	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`	arg=	save_ifs="$IFS"; IFS=','	for flag in $args; do	  IFS="$save_ifs"	  case $flag in	    *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	    flag="\"$flag\""	    ;;	  esac	  arg="$arg $wl$flag"	  compiler_flags="$compiler_flags $flag"	done	IFS="$save_ifs"	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`	;;      -Wl,*)	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`	arg=	save_ifs="$IFS"; IFS=','	for flag in $args; do	  IFS="$save_ifs"	  case $flag in	    *$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	    flag="\"$flag\""	    ;;	  esac	  arg="$arg $wl$flag"	  compiler_flags="$compiler_flags $wl$flag"	  linker_flags="$linker_flags $flag"	done	IFS="$save_ifs"	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`	;;      -Xcompiler)	prev=xcompiler	continue	;;      -Xlinker)	prev=xlinker	continue	;;      -XCClinker)	prev=xcclinker	continue	;;      -Kthread | -mthreads | -mt | -pthread | -pthreads | -threads | -qthreaded | -kthread )        compiler_flags="$compiler_flags $arg"        continue        ;;      # Some other compiler flag.      -* | +*)	# Unknown arguments in both finalize_command and compile_command need	# to be aesthetically quoted because they are evaled later.	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`	case $arg in	*$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	  arg="\"$arg\""	  ;;	esac	;;      *.$objext)	# A standard object.	objs="$objs $arg"	;;      *.lo)	# A libtool-controlled object.	# Check to see that this really is a libtool object.	if (${SED} -e '2q' $arg | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then	  pic_object=	  non_pic_object=	  # Read the .lo file	  # If there is no directory component, then add one.	  case $arg in	  */* | *\\*) . $arg ;;	  *) . ./$arg ;;	  esac	  if test -z "$pic_object" || \	     test -z "$non_pic_object" ||	     test "$pic_object" = none && \	     test "$non_pic_object" = none; then	    $echo "$modename: cannot find name of object for \`$arg'" 1>&2	    exit $EXIT_FAILURE	  fi	  # Extract subdirectory from the argument.	  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`	  if test "X$xdir" = "X$arg"; then	    xdir= 	  else	    xdir="$xdir/"	  fi	  if test "$pic_object" != none; then	    # Prepend the subdirectory the object is found in.	    pic_object="$xdir$pic_object"	    if test "$prev" = dlfiles; then	      if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then		dlfiles="$dlfiles $pic_object"		prev=		continue	      else		# If libtool objects are unsupported, then we need to preload.		prev=dlprefiles	      fi	    fi	    # CHECK ME:  I think I busted this.  -Ossama	    if test "$prev" = dlprefiles; then	      # Preload the old-style object.	      dlprefiles="$dlprefiles $pic_object"	      prev=	    fi	    # A PIC object.	    libobjs="$libobjs $pic_object"	    arg="$pic_object"	  fi	  # Non-PIC object.	  if test "$non_pic_object" != none; then	    # Prepend the subdirectory the object is found in.	    non_pic_object="$xdir$non_pic_object"	    # A standard non-PIC object	    non_pic_objects="$non_pic_objects $non_pic_object"	    if test -z "$pic_object" || test "$pic_object" = none ; then	      arg="$non_pic_object"	    fi	  fi	else	  # Only an error if not doing a dry-run.	  if test -z "$run"; then	    $echo "$modename: \`$arg' is not a valid libtool object" 1>&2	    exit $EXIT_FAILURE	  else	    # Dry-run case.	    # Extract subdirectory from the argument.	    xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`	    if test "X$xdir" = "X$arg"; then	      xdir=	    else	      xdir="$xdir/"	    fi	    pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`	    non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`	    libobjs="$libobjs $pic_object"	    non_pic_objects="$non_pic_objects $non_pic_object"	  fi	fi	;;      *.$libext)	# An archive.	deplibs="$deplibs $arg"	old_deplibs="$old_deplibs $arg"	continue	;;      *.la)	# A libtool-controlled library.	if test "$prev" = dlfiles; then	  # This library was specified with -dlopen.	  dlfiles="$dlfiles $arg"	  prev=	elif test "$prev" = dlprefiles; then	  # The library was specified with -dlpreopen.	  dlprefiles="$dlprefiles $arg"	  prev=	else	  deplibs="$deplibs $arg"	fi	continue	;;      # Some other compiler argument.      *)	# Unknown arguments in both finalize_command and compile_command need	# to be aesthetically quoted because they are evaled later.	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`	case $arg in	*$quote_scanset* | *]* | *\|* | *\&* | *\(* | *\)* | "")	  arg="\"$arg\""	  ;;	esac	;;      esac # arg      # Now actually substitute the argument into the commands.      if test -n "$arg"; then	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"      fi    done # argument parsing loop    if test -n "$prev"; then      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE    fi    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then      eval arg=\"$export_dynamic_flag_spec\"      compile_command="$compile_command $arg"      finalize_command="$finalize_command $arg"    fi    oldlibs=    # calculate the name of the file, without its directory    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`    libobjs_save="$libobjs"    if test -n "$shlibpath_var"; then      # get the directories listed in $shlibpath_var      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`    else      shlib_search_path=    fi    eval sys_lib_search_path=\"$sys_lib_search_path_spec\"    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`    if test "X$output_objdir" = "X$output"; then      output_objdir="$objdir"    else      output_objdir="$output_objdir/$objdir"    fi    # Create the object directory.    if test ! -d "$output_objdir"; then      $show "$mkdir $output_objdir"      $run $mkdir $output_objdir      status=$?      if test "$status" -ne 0 && test ! -d "$output_objdir"; then	exit $status      fi    fi    # Determine the type of output    case $output in    "")      $echo "$modename: you must specify an output file" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE      ;;    *.$libext) linkmode=oldlib ;;    *.lo | *.$objext) linkmode=obj ;;    *.la) linkmode=lib ;;    *) linkmode=prog ;; # Anything else should be a program.    esac    case $host in    *cygwin* | *mingw* | *pw32*)      # don't eliminate duplications in $postdeps and $predeps

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲午夜一二三区视频| 成人激情校园春色| 欧美亚洲综合另类| 亚洲欧美日韩国产另类专区| 国产精品资源在线观看| 7777女厕盗摄久久久| 天天影视涩香欲综合网| 欧美性感一类影片在线播放| 亚洲欧美日本在线| 在线视频国内自拍亚洲视频| 国产精品国产三级国产专播品爱网 | 一本色道亚洲精品aⅴ| 国产精品久久久久久亚洲伦| 成熟亚洲日本毛茸茸凸凹| 国产女主播一区| 成人性视频免费网站| 在线综合亚洲欧美在线视频| 中文字幕精品一区| 91免费观看视频在线| 亚洲小说欧美激情另类| 欧美一级理论性理论a| 国产在线乱码一区二区三区| 国产精品久久久久一区二区三区共| 91香蕉视频在线| 日韩激情av在线| 国产精品高清亚洲| 欧美日韩色综合| 久久99国内精品| 中文字幕一区av| 欧美精品久久一区| www.亚洲色图.com| 婷婷丁香激情综合| 欧美国产激情一区二区三区蜜月| 欧美亚男人的天堂| 国产乱码精品一区二区三| 亚洲黄色尤物视频| 精品国产欧美一区二区| 97久久精品人人澡人人爽| 日本不卡123| 亚洲欧洲av色图| 亚洲精品一区二区三区精华液| 99re成人精品视频| 精品无码三级在线观看视频| 亚洲精品久久久久久国产精华液| 精品奇米国产一区二区三区| 在线观看视频一区| 成人综合在线视频| 免费看日韩a级影片| 一区二区久久久久久| 国产日韩精品一区二区三区在线| 欧美日韩aaa| 色婷婷综合久久久久中文| 韩国理伦片一区二区三区在线播放| 亚洲情趣在线观看| 欧美经典一区二区| 日韩精品一区二区三区swag| 色噜噜狠狠成人网p站| 国产成+人+日韩+欧美+亚洲| 日本成人在线看| 午夜伊人狠狠久久| 亚洲天堂av一区| 国产欧美精品一区二区色综合| 91精品国产91综合久久蜜臀| 色欧美片视频在线观看在线视频| 国产激情一区二区三区桃花岛亚洲| 五月综合激情网| 一区二区三区不卡视频| 国产精品国产三级国产普通话三级 | 日韩欧美亚洲一区二区| 精品婷婷伊人一区三区三| 色综合天天性综合| 99在线精品一区二区三区| 成人av午夜电影| 成人av免费在线| 成人高清免费观看| 不卡电影免费在线播放一区| 国产成人久久精品77777最新版本| 精品一区二区三区免费毛片爱| 亚洲不卡av一区二区三区| 亚洲成a人片综合在线| 蜜臀av在线播放一区二区三区 | 日韩一区二区高清| 在线播放欧美女士性生活| 欧美午夜电影网| 欧美日韩国产另类不卡| 欧美手机在线视频| 欧美在线影院一区二区| 在线欧美小视频| 欧美亚洲一区二区三区四区| 欧美性一级生活| 欧美高清一级片在线| 日韩欧美一区二区在线视频| 欧美一区二区三区喷汁尤物| 欧美一级夜夜爽| 欧美精品一区二区三区蜜桃视频| 久久无码av三级| 国产精品的网站| 亚洲精品免费播放| 日韩精品每日更新| 蓝色福利精品导航| 国产91精品精华液一区二区三区| 色综合久久中文字幕综合网| 91久久免费观看| 欧美剧情片在线观看| 精品国产伦一区二区三区观看体验| 精品美女一区二区| 国产精品久久久久久妇女6080| 亚洲男人电影天堂| 偷窥国产亚洲免费视频| 精品无人区卡一卡二卡三乱码免费卡| 国产白丝网站精品污在线入口| 97久久超碰精品国产| 欧美丰满一区二区免费视频| 久久综合久色欧美综合狠狠| 日韩一区欧美一区| 日韩专区中文字幕一区二区| 国产高清精品在线| 91免费看`日韩一区二区| 欧美一区二区在线观看| 欧美国产一区视频在线观看| 亚洲国产视频在线| 激情深爱一区二区| 91黄色小视频| 久久蜜桃香蕉精品一区二区三区| 国产精品久久久久9999吃药| 偷拍一区二区三区| 97精品久久久午夜一区二区三区| 欧美高清视频在线高清观看mv色露露十八| 久久午夜色播影院免费高清| 亚洲美女视频一区| 国产精品一区二区在线观看不卡| 欧美色中文字幕| 国产精品久久久一区麻豆最新章节| 日日骚欧美日韩| 99久久精品国产毛片| 久久综合色鬼综合色| 婷婷夜色潮精品综合在线| 99九九99九九九视频精品| 欧美大片免费久久精品三p| 悠悠色在线精品| 国产激情一区二区三区桃花岛亚洲| 欧美日本在线播放| 中文字幕乱码日本亚洲一区二区 | 久草这里只有精品视频| 在线影视一区二区三区| 国产欧美一区二区精品性色超碰| 日本亚洲电影天堂| 欧美视频一区二区三区| 国产精品久久久久久妇女6080 | 视频在线观看一区| 色屁屁一区二区| 亚洲欧美在线视频观看| 国产一区二区精品久久91| 欧美一级日韩一级| 香蕉久久一区二区不卡无毒影院| 91久久国产综合久久| 亚洲va欧美va人人爽| 91美女片黄在线观看91美女| 中文一区二区在线观看| 国产精品中文欧美| 精品国产伦一区二区三区免费| 日本午夜一区二区| 日韩一卡二卡三卡四卡| 图片区小说区区亚洲影院| 欧美综合视频在线观看| 依依成人精品视频| 丁香激情综合五月| 国产欧美日韩亚州综合| 国产福利一区二区三区视频在线 | 日韩欧美国产一区在线观看| 午夜精品一区二区三区电影天堂 | 久久9热精品视频| 欧美一级二级三级乱码| 奇米影视一区二区三区| 日韩欧美一区二区久久婷婷| 欧美96一区二区免费视频| 欧美一级搡bbbb搡bbbb| 久久爱www久久做| 久久免费电影网| 成人国产精品免费| 一区二区免费看| 欧美日本韩国一区| 久久精品国产精品亚洲红杏| 日韩欧美国产一区二区在线播放| 国内外成人在线| 久久久天堂av| fc2成人免费人成在线观看播放| 亚洲欧美在线aaa| 欧美日韩久久久一区| 美女久久久精品| 国产日产欧美一区| 色综合久久综合| 免费看欧美美女黄的网站| 久久久精品影视| 99vv1com这只有精品| 亚洲高清中文字幕| 欧美大白屁股肥臀xxxxxx| 国产精品99久久久久久似苏梦涵 | 久久九九久精品国产免费直播| 国产高清成人在线|