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

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

?? ltmain.sh

?? memory test check for embeded linux
?? SH
?? 第 1 頁 / 共 5 頁
字號:
      esac      libtool_args="$libtool_args $qarg"      # If the previous option needs an argument, assign it.      if test -n "$prev"; then	case $prev in	output)	  compile_command="$compile_command @OUTPUT@"	  finalize_command="$finalize_command @OUTPUT@"	  ;;	esac	case $prev in	dlfiles|dlprefiles)	  if test "$preload" = no; then	    # Add the symbol object into the linking commands.	    compile_command="$compile_command @SYMFILE@"	    finalize_command="$finalize_command @SYMFILE@"	    preload=yes	  fi	  case $arg in	  *.la | *.lo) ;;  # We handle these cases below.	  force)	    if test "$dlself" = no; then	      dlself=needless	      export_dynamic=yes	    fi	    prev=	    continue	    ;;	  self)	    if test "$prev" = dlprefiles; then	      dlself=yes	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then	      dlself=yes	    else	      dlself=needless	      export_dynamic=yes	    fi	    prev=	    continue	    ;;	  *)	    if test "$prev" = dlfiles; then	      dlfiles="$dlfiles $arg"	    else	      dlprefiles="$dlprefiles $arg"	    fi	    prev=	    continue	    ;;	  esac	  ;;	expsyms)	  export_symbols="$arg"	  if test ! -f "$arg"; then	    $echo "$modename: symbol file \`$arg' does not exist"	    exit $EXIT_FAILURE	  fi	  prev=	  continue	  ;;	expsyms_regex)	  export_symbols_regex="$arg"	  prev=	  continue	  ;;	inst_prefix)	  inst_prefix_dir="$arg"	  prev=	  continue	  ;;	precious_regex)	  precious_files_regex="$arg"	  prev=	  continue	  ;;	release)	  release="-$arg"	  prev=	  continue	  ;;	objectlist)	  if test -f "$arg"; then	    save_arg=$arg	    moreargs=	    for fil in `cat $save_arg`	    do#	      moreargs="$moreargs $fil"	      arg=$fil	      # 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	    done	  else	    $echo "$modename: link input file \`$save_arg' does not exist"	    exit $EXIT_FAILURE	  fi	  arg=$save_arg	  prev=	  continue	  ;;	rpath | xrpath)	  # We need an absolute path.	  case $arg in	  [\\/]* | [A-Za-z]:[\\/]*) ;;	  *)	    $echo "$modename: only absolute run-paths are allowed" 1>&2	    exit $EXIT_FAILURE	    ;;	  esac	  if test "$prev" = rpath; then	    case "$rpath " in	    *" $arg "*) ;;	    *) rpath="$rpath $arg" ;;	    esac	  else	    case "$xrpath " in	    *" $arg "*) ;;	    *) xrpath="$xrpath $arg" ;;	    esac	  fi	  prev=	  continue	  ;;	xcompiler)	  compiler_flags="$compiler_flags $qarg"	  prev=	  compile_command="$compile_command $qarg"	  finalize_command="$finalize_command $qarg"	  continue	  ;;	xlinker)	  linker_flags="$linker_flags $qarg"	  compiler_flags="$compiler_flags $wl$qarg"	  prev=	  compile_command="$compile_command $wl$qarg"	  finalize_command="$finalize_command $wl$qarg"	  continue	  ;;	xcclinker)	  linker_flags="$linker_flags $qarg"	  compiler_flags="$compiler_flags $qarg"	  prev=	  compile_command="$compile_command $qarg"	  finalize_command="$finalize_command $qarg"	  continue	  ;;	shrext)  	  shrext_cmds="$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	;;      -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	    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*)	    # 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*)	   # Do not include libc_r directly, use -pthread flag.	   continue	   ;;	 esac	fi	deplibs="$deplibs $arg"	continue	;;     -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)	deplibs="$deplibs $arg"	continue	;;      -module)	module=yes	continue	;;      # gcc -m* arguments should be passed to the linker via $compiler_flags      # in order to pass architecture information to the linker      # (e.g. 32 vs 64-bit).  This may also be accomplished via -Wl,-mfoo      # but this is not reliable with gcc because gcc may use -mfoo to      # select a different linker, different libraries, etc, while      # -Wl,-mfoo simply passes -mfoo to the linker.      -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	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜久久久久久久久| 国内精品久久久久影院色| 丝袜国产日韩另类美女| 国产成人午夜高潮毛片| 欧美人与z0zoxxxx视频| 国产精品无人区| 九九精品视频在线看| 欧美性感一类影片在线播放| 亚洲精品一区二区三区蜜桃下载| 亚洲人成人一区二区在线观看| 久久精品国产精品青草| 欧美影院午夜播放| 中文字幕免费不卡| 国内久久精品视频| 欧美成人a∨高清免费观看| 亚洲一区二区三区四区在线| 成人免费va视频| 久久综合久久鬼色中文字| 日韩av中文字幕一区二区 | 国产日韩欧美不卡| 免费美女久久99| 欧美另类变人与禽xxxxx| 亚洲欧美成aⅴ人在线观看| 国产成人午夜99999| 精品国产成人在线影院| 美日韩黄色大片| 日韩一卡二卡三卡| 蜜臀久久99精品久久久画质超高清| 在线观看av一区二区| 亚洲精品第一国产综合野| 91亚洲国产成人精品一区二区三| 国产精品久久久久久久第一福利| 国产成人综合在线观看| 国产日韩欧美精品综合| 成人性色生活片免费看爆迷你毛片| 欧美成人三级电影在线| 久久99精品久久久久久国产越南| 日韩欧美国产精品| 精一区二区三区| 久久先锋影音av| 成人激情综合网站| 亚洲日本va午夜在线影院| 成人av在线看| 一区二区三区四区视频精品免费 | 国产色91在线| av中文字幕亚洲| 亚洲精品免费在线| 欧美日韩第一区日日骚| 日本不卡的三区四区五区| 欧美草草影院在线视频| 国产成人精品一区二区三区四区| 中文字幕欧美日本乱码一线二线| 99精品国产热久久91蜜凸| 一区二区三区中文字幕在线观看| 欧美欧美欧美欧美首页| 久草中文综合在线| 国产精品三级av| 一本色道久久综合精品竹菊| 亚洲一区二区三区四区五区黄 | 国产不卡免费视频| 亚洲免费看黄网站| 欧美一区二区二区| av成人老司机| 日本大胆欧美人术艺术动态| 欧美国产视频在线| 欧美群妇大交群中文字幕| 久久99国产精品久久| 亚洲丝袜自拍清纯另类| 日韩一级完整毛片| av在线不卡电影| 美女视频一区在线观看| 亚洲婷婷在线视频| 日韩一区国产二区欧美三区| 高清成人免费视频| 日韩av不卡一区二区| 国产精品卡一卡二| 欧美大片顶级少妇| 在线观看网站黄不卡| 国产黑丝在线一区二区三区| 一区二区三区四区精品在线视频| 日韩欧美高清dvd碟片| 91国模大尺度私拍在线视频| 国产在线国偷精品产拍免费yy| 亚洲美女视频在线| 国产欧美一二三区| 日韩免费观看2025年上映的电影| 91丨porny丨户外露出| 国产麻豆精品在线观看| 亚洲成人一区二区在线观看| 亚洲国产精品黑人久久久| 91精品国产欧美一区二区18| 色综合激情久久| 国产69精品久久久久777| 开心九九激情九九欧美日韩精美视频电影| 中文字幕一区二区视频| 久久久久9999亚洲精品| 欧美大片顶级少妇| 91麻豆精品国产91久久久| 一本久久a久久精品亚洲| 成人自拍视频在线观看| 国产最新精品免费| 九九九久久久精品| 免费欧美在线视频| 奇米影视在线99精品| 亚洲成人av资源| 一区二区三区中文字幕在线观看| 亚洲欧洲av一区二区三区久久| 国产日韩精品久久久| www激情久久| 精品国产乱码久久久久久久久| 91精品国产综合久久久久久漫画| 欧美揉bbbbb揉bbbbb| 欧洲一区二区三区免费视频| 91亚洲永久精品| caoporn国产精品| 91日韩精品一区| 91视频国产资源| 欧美综合色免费| 欧美日韩小视频| 69成人精品免费视频| 欧美一三区三区四区免费在线看| 7777精品伊人久久久大香线蕉| 欧美久久一区二区| 欧美一区二区三区视频免费播放| 欧美一区二区黄色| 日韩精品一区二区在线观看| 久久伊99综合婷婷久久伊| 久久亚区不卡日本| 国产精品欧美久久久久无广告| 91毛片在线观看| 精品国产一区久久| 欧美不卡一区二区三区四区| 91精品欧美久久久久久动漫| 91精品国产综合久久香蕉麻豆| 欧美一区二区视频在线观看2020 | 国产精品久久久久久久久搜平片| 中文字幕久久午夜不卡| 中文字幕一区二区三区不卡在线 | 国产欧美一区二区三区在线看蜜臀| 久久色在线观看| 国产精品成人免费精品自在线观看| 亚洲免费观看高清在线观看| 亚洲成av人综合在线观看| 免费视频最近日韩| 高清国产午夜精品久久久久久| 一道本成人在线| 日韩一区二区在线看| 国产欧美精品一区二区三区四区| 亚洲天堂2016| 久久精品国产**网站演员| 国产91色综合久久免费分享| 在线观看一区二区精品视频| 欧美一级xxx| 亚洲欧洲av色图| 捆绑调教一区二区三区| av综合在线播放| 欧美α欧美αv大片| 亚洲三级理论片| 黄色小说综合网站| 欧美在线免费观看亚洲| 久久日韩精品一区二区五区| 亚洲欧洲综合另类| 国产一区美女在线| 欧美精品99久久久**| 国产午夜一区二区三区| 日韩精品亚洲一区二区三区免费| 国产99久久久国产精品潘金| 欧美久久久久久久久| 国产精品久久久久久久第一福利| 男女性色大片免费观看一区二区| 91免费国产视频网站| 国产日产精品一区| 麻豆一区二区三区| 欧美三区在线视频| 亚洲欧美日韩国产手机在线| 国产电影精品久久禁18| 欧美一区三区二区| 亚洲国产日产av| 一本色道久久综合亚洲精品按摩| 久久久无码精品亚洲日韩按摩| 亚洲第一激情av| 91国偷自产一区二区使用方法| 国产喷白浆一区二区三区| 黄页网站大全一区二区| 日韩免费电影一区| 日本不卡在线视频| 欧美午夜精品免费| 亚洲天堂免费看| 99re6这里只有精品视频在线观看| 欧美xfplay| 精品一区二区国语对白| 日韩欧美一级二级| 日韩一区精品字幕| 欧美一级黄色录像| 蜜芽一区二区三区| 欧美一区二区三区视频免费 | 欧美夫妻性生活| 亚洲成av人片在线| 欧美日韩精品一区二区三区| 婷婷中文字幕一区三区|