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

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

?? ltmain.sh

?? 2009 ROBOCUP 仿真2DSERVER 源碼
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	  ;;	darwin_framework|darwin_framework_skip)	  test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg"	  compile_command="$compile_command $arg"	  finalize_command="$finalize_command $arg"	  prev=	  continue	  ;;	*)	  eval "$prev=\"\$arg\""	  prev=	  continue	  ;;	esac      fi # test -n "$prev"      prevarg="$arg"      case $arg in      -all-static)	if test -n "$link_static_flag"; then	  compile_command="$compile_command $link_static_flag"	  finalize_command="$finalize_command $link_static_flag"	fi	continue	;;      -allow-undefined)	# FIXME: remove this flag sometime in the future.	$echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2	continue	;;      -avoid-version)	avoid_version=yes	continue	;;      -dlopen)	prev=dlfiles	continue	;;      -dlpreopen)	prev=dlprefiles	continue	;;      -export-dynamic)	export_dynamic=yes	continue	;;      -export-symbols | -export-symbols-regex)	if test -n "$export_symbols" || test -n "$export_symbols_regex"; then	  $echo "$modename: more than one -exported-symbols argument is not allowed"	  exit $EXIT_FAILURE	fi	if test "X$arg" = "X-export-symbols"; then	  prev=expsyms	else	  prev=expsyms_regex	fi	continue	;;      -framework|-arch|-isysroot)	case " $CC " in	  *" ${arg} ${1} "* | *" ${arg}	${1} "*) 		prev=darwin_framework_skip ;;	  *) compiler_flags="$compiler_flags $arg"	     prev=darwin_framework ;;	esac	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"	continue	;;      -inst-prefix-dir)	prev=inst_prefix	continue	;;      # 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	    absdir="$dir"	    notinst_path="$notinst_path $dir"	  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*)	  testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'`	  case :$dllsearchpath: in	  *":$dir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$dir";;	  esac	  case :$dllsearchpath: in	  *":$testbindir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$testbindir";;	  esac	  ;;	esac	continue	;;      -l*)	if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then	  case $host in	  *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*)	    # These systems don't actually have a C or math library (as such)	    continue	    ;;	  *-*-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	    ;;	  *-*-sco3.2v5* | *-*-sco5v6*)	    # Causes problems with __ctype	    test "X$arg" = "X-lc" && continue	    ;;	  *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)	    # Compiler inserts libc in the correct place for threads to work	    test "X$arg" = "X-lc" && 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|-threads)	compiler_flags="$compiler_flags $arg"	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"	continue	;;      -multi_module)	single_module="${wl}-multi_module"	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      # -m*, -t[45]*, -txscale* pass through architecture-specific      # compiler args for GCC      # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC      # -F/path gives path to uninstalled frameworks, gcc on darwin      # @file GCC response files      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \      -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*)	# 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	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  arg="\"$arg\""	  ;;	esac        compile_command="$compile_command $arg"        finalize_command="$finalize_command $arg"        compiler_flags="$compiler_flags $arg"        continue        ;;      -shrext)	prev=shrext	continue	;;      -no-fast-install)	fast_install=no	continue	;;      -no-install)	case $host in	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin*)	  # The PATH hackery in wrapper scripts is required on Windows	  # and Darwin 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 | -static-libtool-libs)	# 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	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	    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	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	    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	;;      # 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	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  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	  else	    # If the PIC object exists, use it instead.	    # $xdir was prepended to $pic_object above.	    non_pic_object="$pic_object"	    non_pic_objects="$non_pic_objects $non_pic_object"	  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	;;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区二区视频在线观看2022| 91在线精品一区二区| 亚洲一区二区中文在线| 国产精品美女久久久久aⅴ| www国产精品av| 久久人人爽爽爽人久久久| 精品裸体舞一区二区三区| 精品国产麻豆免费人成网站| 欧美xxxxxxxx| 国产精品久久毛片a| 中文字幕一区三区| 一区二区三区日韩精品视频| 亚洲国产视频一区| 日本少妇一区二区| 国产乱人伦偷精品视频不卡| 国产白丝网站精品污在线入口| 成人免费看片app下载| 一本一本大道香蕉久在线精品| 日本精品裸体写真集在线观看| 欧美日韩综合一区| 日韩免费福利电影在线观看| 日本一二三四高清不卡| 亚洲精品视频自拍| 麻豆91小视频| 91网站最新网址| 制服丝袜亚洲网站| 国产欧美一区二区精品秋霞影院| 亚洲免费视频中文字幕| 蜜臀av性久久久久蜜臀av麻豆| 国产一区日韩二区欧美三区| a4yy欧美一区二区三区| 91精品在线一区二区| 久久精品人人做| 亚洲国产精品一区二区久久恐怖片| 免费看欧美女人艹b| 成人99免费视频| 日韩欧美国产三级| 亚洲另类中文字| 国产乱码精品一区二区三| 色哟哟欧美精品| www一区二区| 午夜欧美2019年伦理| 国产99久久久国产精品潘金| 欧美三级一区二区| 中文字幕av一区 二区| 美女视频黄 久久| 在线观看亚洲专区| 国产精品视频免费看| 激情综合五月婷婷| 欧美人狂配大交3d怪物一区 | 一区二区欧美国产| 国产麻豆一精品一av一免费| 欧美日韩激情一区二区| 成人免费在线观看入口| 精品一区二区三区免费| 9191成人精品久久| 亚洲美女屁股眼交| 国产在线播放一区三区四| 欧美在线影院一区二区| 自拍偷拍亚洲欧美日韩| 处破女av一区二区| 337p日本欧洲亚洲大胆色噜噜| 亚洲在线一区二区三区| 97精品国产97久久久久久久久久久久| 精品1区2区在线观看| 秋霞av亚洲一区二区三| 欧美精品乱码久久久久久按摩| 亚洲精品中文字幕在线观看| 懂色av一区二区在线播放| 欧美va亚洲va国产综合| 免费成人小视频| 日韩欧美国产电影| 久久精品国产精品亚洲精品| 91精品在线观看入口| 美国三级日本三级久久99| 91麻豆精品国产91久久久| 奇米色一区二区| 91精品国产综合久久精品| 天堂在线一区二区| 日韩欧美一级二级| 精品在线观看免费| 国产视频亚洲色图| jizzjizzjizz欧美| 一区二区在线免费| 欧美剧在线免费观看网站| 性欧美疯狂xxxxbbbb| 91精品国产91久久久久久一区二区| 日本不卡免费在线视频| 日韩欧美二区三区| 懂色一区二区三区免费观看| 国产精品色眯眯| 欧美性xxxxx极品少妇| 日韩不卡免费视频| 国产偷v国产偷v亚洲高清| 99re热这里只有精品免费视频| 一区二区三区日韩欧美| 6080日韩午夜伦伦午夜伦| 极品少妇xxxx精品少妇| 国产欧美日韩卡一| 欧美亚洲国产一区二区三区va | 高清beeg欧美| 一区二区三区在线观看欧美| 欧美中文字幕一区二区三区| 麻豆专区一区二区三区四区五区| 久久久久久久久99精品| 日本精品视频一区二区三区| 久久99国产精品成人| 国产精品另类一区| 91精品在线一区二区| 成人永久aaa| 午夜不卡av在线| 国产精品美女久久久久久| 欧美日韩激情在线| 成人手机在线视频| 日韩不卡一二三区| 亚洲蜜臀av乱码久久精品| 日韩一区二区在线看片| 99精品欧美一区| 蜜桃传媒麻豆第一区在线观看| 中文字幕一区免费在线观看 | 一本色道久久综合亚洲精品按摩| 丝袜美腿亚洲综合| 国产精品久久久久aaaa| 欧美va亚洲va香蕉在线| 91成人免费在线视频| 国产成人综合在线播放| 免费成人小视频| 亚洲一区电影777| 国产精品理伦片| 久久网站热最新地址| 91精品久久久久久久91蜜桃 | 777欧美精品| 色一情一乱一乱一91av| 国产不卡在线一区| 国产在线播精品第三| 蜜乳av一区二区三区| 午夜精品免费在线| 亚洲精品欧美二区三区中文字幕| 日本一区二区免费在线观看视频| 欧美一区二区免费| 777奇米成人网| 欧美电影在线免费观看| 欧美亚洲国产怡红院影院| 91免费精品国自产拍在线不卡 | 欧美午夜一区二区三区免费大片| 粗大黑人巨茎大战欧美成人| 久久精品国产99国产| 奇米四色…亚洲| 日韩成人午夜电影| 日韩综合小视频| 蜜臀精品一区二区三区在线观看| 亚洲一区二区精品视频| 亚洲激情在线激情| 亚洲高清久久久| 轻轻草成人在线| 精品一区二区影视| 国产精品影视在线| 国产不卡视频在线播放| eeuss鲁片一区二区三区在线看| 国产伦精品一区二区三区免费迷| 国产资源精品在线观看| 国产精品夜夜爽| 99精品视频在线观看| 日本韩国欧美国产| 欧美日韩国产免费一区二区| 91精品国产综合久久精品图片| 欧美乱熟臀69xxxxxx| 欧美一级爆毛片| 欧美激情一区不卡| 亚洲欧美中日韩| 亚洲成人免费看| 韩国女主播一区| 91免费国产在线| 91精品久久久久久久99蜜桃| 亚洲精品在线网站| 亚洲色图在线播放| 美国三级日本三级久久99| 国产91露脸合集magnet| 色国产综合视频| 欧美一卡二卡三卡| 国产精品久久久久四虎| 亚洲综合激情网| 国产精品资源网站| 欧美在线视频日韩| 久久精品一区二区三区不卡| 亚洲欧美综合色| 久久激情综合网| 欧美中文字幕一区二区三区亚洲 | 99精品国产热久久91蜜凸| 制服丝袜亚洲网站| 欧美国产日产图区| 日韩成人伦理电影在线观看| 成人动漫一区二区| 日韩欧美一级特黄在线播放| ●精品国产综合乱码久久久久| 天天色天天操综合| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 亚洲国产精品久久久男人的天堂| 国内精品久久久久影院色| 亚洲午夜一区二区|