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

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

?? ltmain.sh

?? 一套linux下的C++開發庫
?? SH
?? 第 1 頁 / 共 5 頁
字號:
      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: not more than one -exported-symbols argument allowed"	  exit 1	fi	if test "X$arg" = "X-export-symbols"; then	  prev=expsyms	else	  prev=expsyms_regex	fi	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 1	  fi	  dir="$absdir"	  ;;	esac	case " $deplibs " in	*" $arg "*) ;;	*) deplibs="$deplibs $arg";;	esac	case " $lib_search_path " in	*" $dir "*) ;;	*) lib_search_path="$lib_search_path $dir";;	esac	case "$host" in	*-*-cygwin* | *-*-mingw* | *-*-os2*)	  dllsearchdir=`cd "$dir" && pwd || echo "$dir"`	  case ":$dllsearchpath:" in	  ::) dllsearchpath="$dllsearchdir";;	  *":$dllsearchdir:"*) ;;	  *) dllsearchpath="$dllsearchpath:$dllsearchdir";;	  esac	  ;;	esac	;;      -l*)	if test "$arg" = "-lc"; then	  case "$host" in	  *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)	    # These systems don't actually have c library (as such)	    continue	    ;;	  esac	elif test "$arg" = "-lm"; then	  case "$host" in	  *-*-cygwin* | *-*-beos*)	    # These systems don't actually have math library (as such)	    continue	    ;;	  esac	fi	deplibs="$deplibs $arg"	;;      -module)	module=yes	continue	;;      -no-undefined)	allow_undefined=no	continue	;;      -o) prev=output ;;      -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 1	  ;;	esac	case "$xrpath " in	*" $dir "*) ;;	*) xrpath="$xrpath $dir" ;;	esac	continue	;;      -static)	# If we have no pic_flag, then this is the same as -all-static.	if test -z "$pic_flag" && test -n "$link_static_flag"; then	  compile_command="$compile_command $link_static_flag"	  finalize_command="$finalize_command $link_static_flag"	fi	continue	;;      -thread-safe)	thread_safe=yes	continue	;;      -version-info)	prev=vinfo	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	;;      *.o | *.obj | *.a | *.lib)	# A standard object.	objs="$objs $arg"	;;      *.lo)	# A library object.	if test "$prev" = dlfiles; then	  dlfiles="$dlfiles $arg"	  if test "$build_libtool_libs" = yes && test "$dlopen" = yes; then	    prev=	    continue	  else	    # If libtool objects are unsupported, then we need to preload.	    prev=dlprefiles	  fi	fi	if test "$prev" = dlprefiles; then	  # Preload the old-style object.	  dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`	  prev=	fi	libobjs="$libobjs $arg"	;;      *.la)	# A libtool-controlled library.	dlname=	libdir=	library_names=	old_library=	# Check to see that this really is a libtool archive.	if (sed -e '2q' $arg | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :	else	  $echo "$modename: \`$arg' is not a valid libtool archive" 1>&2	  exit 1	fi	# If the library was installed with an old release of libtool,	# it will not redefine variable installed.	installed=yes	# Read the .la file	# If there is no directory component, then add one.	case "$arg" in	*/* | *\\*) . $arg ;;	*) . ./$arg ;;	esac	# Get the name of the library we link against.	linklib=	for l in $old_library $library_names; do	  linklib="$l"	done	if test -z "$linklib"; then	  $echo "$modename: cannot find name of link library for \`$arg'" 1>&2	  exit 1	fi	# Find the relevant object directory and library name.	name=`$echo "X$arg" | $Xsed -e 's%^.*/%%' -e 's/\.la$//' -e 's/^lib//'`	if test "X$installed" = Xyes; then	  dir="$libdir"	else	  dir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`	  if test "X$dir" = "X$arg"; then	    dir="$objdir"	  else	    dir="$dir/$objdir"	  fi	fi	if test -n "$dependency_libs"; then	  # Extract -R from dependency_libs	  temp_deplibs=	  for deplib in $dependency_libs; do	    case "$deplib" in	    -R*) temp_xrpath=`$echo "X$deplib" | $Xsed -e 's/^-R//'`		 case " $rpath $xrpath " in		 *" $temp_xrpath "*) ;;		 *) xrpath="$xrpath $temp_xrpath";;		 esac;;	    -L*) case "$compile_command $temp_deplibs " in		 *" $deplib "*) ;;		 *) temp_deplibs="$temp_deplibs $deplib";;		 esac;;	    *) temp_deplibs="$temp_deplibs $deplib";;	    esac	  done	  dependency_libs="$temp_deplibs"	fi	if test -z "$libdir"; then	  # It is a libtool convenience library, so add in its objects.	  convenience="$convenience $dir/$old_library"	  old_convenience="$old_convenience $dir/$old_library"	  deplibs="$deplibs$dependency_libs"	  compile_command="$compile_command $dir/$old_library$dependency_libs"	  finalize_command="$finalize_command $dir/$old_library$dependency_libs"	  continue	fi	# This library was specified with -dlopen.	if test "$prev" = dlfiles; then	  dlfiles="$dlfiles $arg"	  if test -z "$dlname" || test "$dlopen" != yes || test "$build_libtool_libs" = no; then	    # If there is no dlname, no dlopen support or we're linking statically,	    # we need to preload.	    prev=dlprefiles	  else	    # We should not create a dependency on this library, but we	    # may need any libraries it requires.	    compile_command="$compile_command$dependency_libs"	    finalize_command="$finalize_command$dependency_libs"	    prev=	    continue	  fi	fi	# The library was specified with -dlpreopen.	if test "$prev" = dlprefiles; then	  # Prefer using a static library (so that no silly _DYNAMIC symbols	  # are required to link).	  if test -n "$old_library"; then	    dlprefiles="$dlprefiles $dir/$old_library"	  else	    dlprefiles="$dlprefiles $dir/$linklib"	  fi	  prev=	fi	if test -n "$library_names" &&	   { test "$prefer_static_libs" = no || test -z "$old_library"; }; then	  link_against_libtool_libs="$link_against_libtool_libs $arg"	  if test -n "$shlibpath_var"; then	    # Make sure the rpath contains only unique directories.	    case "$temp_rpath " in	    *" $dir "*) ;;	    *) temp_rpath="$temp_rpath $dir" ;;	    esac	  fi	  # We need an absolute path.	  case "$dir" in	  [\\/] | [A-Za-z]:[\\/]*) absdir="$dir" ;;	  *)	    absdir=`cd "$dir" && pwd`	    if test -z "$absdir"; then	      $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2	      exit 1	    fi	    ;;	  esac	  	  # This is the magic to use -rpath.	  # Skip directories that are in the system default run-time	  # search path, unless they have been requested with -R.	  case " $sys_lib_dlsearch_path " in	  *" $absdir "*) ;;	  *)	    case "$compile_rpath " in	    *" $absdir "*) ;;	    *) compile_rpath="$compile_rpath $absdir" 	    esac	    ;;	  esac	  case " $sys_lib_dlsearch_path " in	  *" $libdir "*) ;;	  *)	    case "$finalize_rpath " in	    *" $libdir "*) ;;	    *) finalize_rpath="$finalize_rpath $libdir"	    esac	    ;;	  esac	  lib_linked=yes	  case "$hardcode_action" in	  immediate | unsupported)	    if test "$hardcode_direct" = no; then	      compile_command="$compile_command $dir/$linklib"	      deplibs="$deplibs $dir/$linklib"	      case "$host" in	      *-*-cygwin* | *-*-mingw* | *-*-os2*)		dllsearchdir=`cd "$dir" && pwd || echo "$dir"`		if test -n "$dllsearchpath"; then		  dllsearchpath="$dllsearchpath:$dllsearchdir"		else		  dllsearchpath="$dllsearchdir"		fi		;;	      esac	    elif test "$hardcode_minus_L" = no; then	      case "$host" in	      *-*-sunos*)		compile_shlibpath="$compile_shlibpath$dir:"		;;	      esac	      case "$compile_command " in	      *" -L$dir "*) ;;	      *) compile_command="$compile_command -L$dir";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -L$dir -l$name"	    elif test "$hardcode_shlibpath_var" = no; then	      case ":$compile_shlibpath:" in	      *":$dir:"*) ;;	      *) compile_shlibpath="$compile_shlibpath$dir:";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -l$name"	    else	      lib_linked=no	    fi	    ;;	  relink)	    if test "$hardcode_direct" = yes; then	      compile_command="$compile_command $absdir/$linklib"	      deplibs="$deplibs $absdir/$linklib"	    elif test "$hardcode_minus_L" = yes; then	      case "$compile_command " in	      *" -L$absdir "*) ;;	      *) compile_command="$compile_command -L$absdir";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -L$absdir -l$name"	    elif test "$hardcode_shlibpath_var" = yes; then	      case ":$compile_shlibpath:" in	      *":$absdir:"*) ;;	      *) compile_shlibpath="$compile_shlibpath$absdir:";;	      esac	      compile_command="$compile_command -l$name"	      deplibs="$deplibs -l$name"	    else	      lib_linked=no	    fi	    ;;	  *)	    lib_linked=no	    ;;	  esac	  if test "$lib_linked" != yes; then	    $echo "$modename: configuration error: unsupported hardcode properties"	    exit 1	  fi	  # Finalize command for both is simple: just hardcode it.	  if test "$hardcode_direct" = yes; then	    finalize_command="$finalize_command $libdir/$linklib"	  elif test "$hardcode_minus_L" = yes; then	    case "$finalize_command " in	    *" -L$libdir "*) ;;	    *) finalize_command="$finalize_command -L$libdir";;	    esac	    finalize_command="$finalize_command -l$name"	  elif test "$hardcode_shlibpath_var" = yes; then	    case ":$finalize_shlibpath:" in	    *":$libdir:"*) ;;	    *) finalize_shlibpath="$finalize_shlibpath$libdir:";;	    esac	    finalize_command="$finalize_command -l$name"	  else	    # We cannot seem to hardcode it, guess we'll fake it.	    case "$finalize_command " in	    *" -L$dir "*) ;;	    *) finalize_command="$finalize_command -L$libdir";;	    esac	    finalize_command="$finalize_command -l$name"	  fi	else	  # Transform directly to old archives if we don't build new libraries.	  if test -n "$pic_flag" && test -z "$old_library"; then	    $echo "$modename: cannot find static library for \`$arg'" 1>&2	    exit 1	  fi	  # Here we assume that one of hardcode_direct or hardcode_minus_L	  # is not unsupported.  This is valid on all known static and	  # shared platforms.	  if test "$hardcode_direct" != unsupported; then	    test -n "$old_library" && linklib="$old_library"	    compile_command="$compile_command $dir/$linklib"	    finalize_command="$finalize_command $dir/$linklib"	  else	    case "$compile_command " in	    *" -L$dir "*) ;;	    *) compile_command="$compile_command -L$dir";;	    esac	    compile_command="$compile_command -l$name"	    case "$finalize_command " in	    *" -L$dir "*) ;;	    *) finalize_command="$finalize_command -L$dir";;	    esac	    finalize_command="$finalize_command -l$name"	  fi	fi

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产精品视频| 成人国产在线观看| 成人午夜视频在线观看| 欧美影院一区二区| 国产丝袜在线精品| 美腿丝袜亚洲综合| 色综合av在线| 国产精品毛片久久久久久久| 免费成人结看片| 欧美精品在线一区二区三区| 国产精品久久久久久久久果冻传媒| 水蜜桃久久夜色精品一区的特点 | 在线免费观看成人短视频| 精品国产不卡一区二区三区| 亚洲影院久久精品| 成人av动漫在线| 欧美韩国日本不卡| 国产精品一区二区不卡| 337p粉嫩大胆色噜噜噜噜亚洲| 亚洲一区在线电影| 99re这里只有精品6| 亚洲国产精品黑人久久久| 久久99久久精品| 日韩欧美国产wwwww| 日本三级韩国三级欧美三级| 欧美色男人天堂| 亚洲一区二区三区三| 日本道精品一区二区三区| 日本一二三不卡| 波多野结衣精品在线| 国产精品久久久久影院色老大| 粉嫩13p一区二区三区| 久久亚洲一区二区三区明星换脸 | 欧美成人video| 久久激情五月激情| 欧美tk丨vk视频| 国产成人啪午夜精品网站男同| 久久欧美中文字幕| 成人激情视频网站| 一区二区三区中文字幕在线观看| 95精品视频在线| 亚洲黄色尤物视频| 欧美剧情片在线观看| 美日韩一区二区三区| 久久综合九色综合97_久久久| 国产一区福利在线| 中文字幕在线观看一区二区| 91在线视频网址| 亚洲bt欧美bt精品777| 日韩丝袜美女视频| 国产99久久久精品| 一区二区国产视频| 日韩亚洲欧美在线| 成人美女视频在线观看| 亚洲免费电影在线| 日韩一区二区三区精品视频| 国产一区福利在线| 亚洲男人天堂av网| 欧美一区二区国产| 成人午夜电影网站| 亚洲图片欧美色图| 国产日韩精品视频一区| 91久久一区二区| 久久国产精品99精品国产| 国产精品视频观看| 欧美一区二区免费视频| 国产电影一区在线| 亚洲成人免费看| 国产欧美一区二区三区鸳鸯浴| 在线欧美日韩精品| 国产一区二区三区免费| 亚洲欧洲av色图| 日韩精品一区二区三区在线观看| 成人国产精品免费网站| 日韩在线一二三区| 亚洲少妇30p| 精品国产三级a在线观看| 色久综合一二码| 国产激情视频一区二区在线观看| 亚洲国产成人av好男人在线观看| 久久精品亚洲精品国产欧美kt∨| 欧美日韩激情一区二区三区| 国产福利精品导航| 全国精品久久少妇| 亚洲国产一区二区视频| 欧美激情中文字幕一区二区| 555夜色666亚洲国产免| 成人网页在线观看| 青青国产91久久久久久| 一区二区三区日韩欧美| 亚洲国产精品v| 精品国产一区久久| 欧美日韩三级在线| 日本精品视频一区二区| 国产精品亚洲视频| 精品亚洲aⅴ乱码一区二区三区| 午夜免费久久看| 亚洲欧美综合色| 国产精品久久久久一区| 久久久久久综合| 日韩欧美久久久| 欧美高清性hdvideosex| 欧美丝袜丝交足nylons图片| 91一区二区三区在线观看| 丰满白嫩尤物一区二区| 国产酒店精品激情| 国产毛片精品视频| 国产在线视频一区二区三区| 裸体健美xxxx欧美裸体表演| 一区二区三区在线视频播放| 亚洲女厕所小便bbb| 亚洲女子a中天字幕| 亚洲欧洲无码一区二区三区| 国产欧美一区二区精品秋霞影院| 久久色中文字幕| 久久先锋资源网| 久久久久久夜精品精品免费| 久久一区二区视频| 欧美国产在线观看| 亚洲日本成人在线观看| 亚洲欧洲无码一区二区三区| 亚洲欧美日韩综合aⅴ视频| 亚洲免费视频中文字幕| 亚洲精品一二三区| 亚洲国产毛片aaaaa无费看| 午夜国产不卡在线观看视频| 日韩中文字幕av电影| 久久99久久99| 国产成人三级在线观看| av男人天堂一区| 欧洲精品视频在线观看| 欧美三级午夜理伦三级中视频| 欧美日韩美少妇| 欧美大肚乱孕交hd孕妇| 久久精品一区二区三区不卡| 国产精品无人区| 一区二区三区波多野结衣在线观看 | 亚洲婷婷国产精品电影人久久| 亚洲男人的天堂在线aⅴ视频| 亚洲狠狠爱一区二区三区| 免费在线观看一区二区三区| 国产美女精品人人做人人爽 | 国产xxx精品视频大全| 97se亚洲国产综合自在线观| 欧美在线制服丝袜| 亚洲精品在线三区| 亚洲丝袜自拍清纯另类| 天堂在线一区二区| 国产成人免费视频网站| 色综合久久66| 久久综合色综合88| 一区二区三区四区不卡在线 | 天天综合天天做天天综合| 精品一区二区三区视频| 99久久综合色| 欧美一区二区在线视频| 中文在线一区二区| 日韩成人精品在线观看| 成人一级片网址| 欧美色偷偷大香| 国产精品免费人成网站| 日本午夜一本久久久综合| 成人少妇影院yyyy| 日韩精品一区二区三区swag| 中文字幕一区二区不卡| 久久精品国产久精国产爱| 91美女片黄在线| 久久久久久久久免费| 天堂久久久久va久久久久| 99久久99精品久久久久久| 精品福利一区二区三区 | 亚洲精品成人悠悠色影视| 国产在线日韩欧美| 69堂亚洲精品首页| 亚洲一区二区av在线| 成人app软件下载大全免费| 日韩视频中午一区| 日韩影院在线观看| 欧美日韩免费高清一区色橹橹| 国产精品久久久久久久久久久免费看 | youjizz国产精品| 久久亚洲精华国产精华液| 日韩制服丝袜av| 欧美乱熟臀69xxxxxx| 亚洲精品va在线观看| 91丨porny丨户外露出| 国产精品女主播av| 高清国产一区二区| 久久精品视频网| 韩国在线一区二区| 精品少妇一区二区三区免费观看| 日韩精品乱码av一区二区| 欧美亚洲高清一区| 一区二区三区国产豹纹内裤在线| 99re热这里只有精品视频| 中文字幕精品一区 | 久久国产夜色精品鲁鲁99| 欧美精品丝袜中出| 蜜桃一区二区三区在线观看| 日韩免费在线观看|