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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ltmain.sh

?? speech echo cancellation library
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	  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      exit_status=$?      if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then	exit $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      duplicate_compiler_generated_deps=yes      ;;    *)      duplicate_compiler_generated_deps=$duplicate_deps      ;;    esac    specialdeplibs=    libs=    # Find all interdependent deplibs by searching for libraries    # that are linked more than once (e.g. -la -lb -la)    for deplib in $deplibs; do      if test "X$duplicate_deps" = "Xyes" ; then	case "$libs " in	*" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	esac      fi      libs="$libs $deplib"    done    if test "$linkmode" = lib; then      libs="$predeps $libs $compiler_lib_search_path $postdeps"      # Compute libraries that are listed more than once in $predeps      # $postdeps and mark them as special (i.e., whose duplicates are      # not to be eliminated).      pre_post_deps=      if test "X$duplicate_compiler_generated_deps" = "Xyes" ; then	for pre_post_dep in $predeps $postdeps; do	  case "$pre_post_deps " in	  *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;	  esac	  pre_post_deps="$pre_post_deps $pre_post_dep"	done      fi      pre_post_deps=    fi    deplibs=    newdependency_libs=    newlib_search_path=    need_relink=no # whether we're linking any uninstalled libtool libraries    notinst_deplibs= # not-installed libtool libraries    case $linkmode in    lib)	passes="conv link"	for file in $dlfiles $dlprefiles; do	  case $file in	  *.la) ;;	  *)	    $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2	    exit $EXIT_FAILURE	    ;;	  esac	done	;;    prog)	compile_deplibs=	finalize_deplibs=	alldeplibs=no	newdlfiles=	newdlprefiles=	passes="conv scan dlopen dlpreopen link"	;;    *)  passes="conv"	;;    esac    for pass in $passes; do      if test "$linkmode,$pass" = "lib,link" ||	 test "$linkmode,$pass" = "prog,scan"; then	libs="$deplibs"	deplibs=      fi      if test "$linkmode" = prog; then	case $pass in	dlopen) libs="$dlfiles" ;;	dlpreopen) libs="$dlprefiles" ;;	link)	  libs="$deplibs %DEPLIBS%"	  test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs"	  ;;	esac      fi      if test "$pass" = dlopen; then	# Collect dlpreopened libraries	save_deplibs="$deplibs"	deplibs=      fi      for deplib in $libs; do	lib=	found=no	case $deplib in	-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)	  if test "$linkmode,$pass" = "prog,link"; then	    compile_deplibs="$deplib $compile_deplibs"	    finalize_deplibs="$deplib $finalize_deplibs"	  else	    compiler_flags="$compiler_flags $deplib"	  fi	  continue	  ;;	-l*)	  if test "$linkmode" != lib && test "$linkmode" != prog; then	    $echo "$modename: warning: \`-l' is ignored for archives/objects" 1>&2	    continue	  fi	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do	    for search_ext in .la $std_shrext .so .a; do	      # Search the libtool library	      lib="$searchdir/lib${name}${search_ext}"	      if test -f "$lib"; then		if test "$search_ext" = ".la"; then		  found=yes		else		  found=no		fi		break 2	      fi	    done	  done	  if test "$found" != yes; then	    # deplib doesn't seem to be a libtool library	    if test "$linkmode,$pass" = "prog,link"; then	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    else	      deplibs="$deplib $deplibs"	      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"	    fi	    continue	  else # deplib is a libtool library	    # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib,	    # We need to do some special things here, and not later.	    if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then	      case " $predeps $postdeps " in	      *" $deplib "*)		if (${SED} -e '2q' $lib |                    grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then		  library_names=		  old_library=		  case $lib in		  */* | *\\*) . $lib ;;		  *) . ./$lib ;;		  esac		  for l in $old_library $library_names; do		    ll="$l"		  done		  if test "X$ll" = "X$old_library" ; then # only static version available		    found=no		    ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`		    test "X$ladir" = "X$lib" && ladir="."		    lib=$ladir/$old_library		    if test "$linkmode,$pass" = "prog,link"; then		      compile_deplibs="$deplib $compile_deplibs"		      finalize_deplibs="$deplib $finalize_deplibs"		    else		      deplibs="$deplib $deplibs"		      test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"		    fi		    continue		  fi		fi	        ;;	      *) ;;	      esac	    fi	  fi	  ;; # -l	-L*)	  case $linkmode in	  lib)	    deplibs="$deplib $deplibs"	    test "$pass" = conv && continue	    newdependency_libs="$deplib $newdependency_libs"	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`	    ;;	  prog)	    if test "$pass" = conv; then	      deplibs="$deplib $deplibs"	      continue	    fi	    if test "$pass" = scan; then	      deplibs="$deplib $deplibs"	    else	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    fi	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`	    ;;	  *)	    $echo "$modename: warning: \`-L' is ignored for archives/objects" 1>&2	    ;;	  esac # linkmode	  continue	  ;; # -L	-R*)	  if test "$pass" = link; then	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`	    # Make sure the xrpath contains only unique directories.	    case "$xrpath " in	    *" $dir "*) ;;	    *) xrpath="$xrpath $dir" ;;	    esac	  fi	  deplibs="$deplib $deplibs"	  continue	  ;;	*.la) lib="$deplib" ;;	*.$libext)	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	    continue	  fi	  case $linkmode in	  lib)	    valid_a_lib=no	    case $deplibs_check_method in	      match_pattern*)		set dummy $deplibs_check_method	        match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`		if eval $echo \"$deplib\" 2>/dev/null \		    | $SED 10q \		    | $EGREP "$match_pattern_regex" > /dev/null; then		  valid_a_lib=yes		fi		;;	      pass_all)		valid_a_lib=yes		;;            esac	    if test "$valid_a_lib" != yes; then	      $echo	      $echo "*** Warning: Trying to link with static lib archive $deplib."	      $echo "*** I have the capability to make that library automatically link in when"	      $echo "*** you link to this library.  But I can only do this if you have a"	      $echo "*** shared version of the library, which you do not appear to have"	      $echo "*** because the file extensions .$libext of this argument makes me believe"	      $echo "*** that it is just a static archive that I should not used here."	    else	      $echo	      $echo "*** Warning: Linking the shared library $output against the"	      $echo "*** static library $deplib is not portable!"	      deplibs="$deplib $deplibs"	    fi	    continue	    ;;	  prog)	    if test "$pass" != link; then	      deplibs="$deplib $deplibs"	    else	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    fi	    continue	    ;;	  esac # linkmode	  ;; # *.$libext	*.lo | *.$objext)	  if test "$pass" = conv; then	    deplibs="$deplib $deplibs"	  elif test "$linkmode" = prog; then	    if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then	      # If there is no dlopen support or we're linking statically,	      # we need to preload.	      newdlprefiles="$newdlprefiles $deplib"	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    else	      newdlfiles="$newdlfiles $deplib"	    fi	  fi	  continue	  ;;	%DEPLIBS%)	  alldeplibs=yes	  continue	  ;;	esac # case $deplib	if test "$found" = yes || test -f "$lib"; then :	else	  $echo "$modename: cannot find the library \`$lib' or unhandled argument \`$deplib'" 1>&2	  exit $EXIT_FAILURE	fi	# Check to see that this really is a libtool archive.	if (${SED} -e '2q' $lib | grep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :	else	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2	  exit $EXIT_FAILURE	fi	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`	test "X$ladir" = "X$lib" && ladir="."	dlname=	dlopen=	dlpreopen=	libdir=	library_names=	old_library=	# If the library was installed with an old release of libtool,	# it will not redefine variables installed, or shouldnotlink	installed=yes	shouldnotlink=no	avoidtemprpath=	# Read the .la file	case $lib in	*/* | *\\*) . $lib ;;	*) . ./$lib ;;	esac	if test "$linkmode,$pass" = "lib,link" ||	   test "$linkmode,$pass" = "prog,scan" ||	   { test "$linkmode" != prog && test "$linkmode" != lib; }; then	  test -n "$dlopen" && dlfiles="$dlfiles $dlopen"	  test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"	fi	if test "$pass" = conv; then	  # Only check for convenience libraries	  deplibs="$lib $deplibs"	  if test -z "$libdir"; then	    if test -z "$old_library"; then	      $echo "$modename: cannot find name of link library for \`$lib'" 1>&2	      exit $EXIT_FAILURE	    fi	    # It is a libtool convenience library, so add in its objects.	    convenience="$convenience $ladir/$objdir/$old_library"	    old_convenience="$old_convenience $ladir/$objdir/$old_library"	    tmp_libs=	    for deplib in $dependency_libs; do	      deplibs="$deplib $deplibs"              if test "X$duplicate_deps" = "Xyes" ; then	        case "$tmp_libs " in	        *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	        esac              fi	      tmp_libs="$tmp_libs $deplib"	    done	  elif test "$linkmode" != prog && test "$linkmode" != lib; then	    $echo "$modename: \`$lib' is not a convenience library" 1>&2	    exit $EXIT_FAILURE	  fi	  continue	fi # $pass = conv	# 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 \`$lib'" 1>&2	  exit $EXIT_FAILURE	fi	# This library was specified with -dlopen.	if test "$pass" = dlopen; then	  if test -z "$libdir"; then	    $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2	    exit $EXIT_FAILURE	  fi	  if test -z "$dlname" ||	     test "$dlopen_support" != yes ||	     test "$build_libtool_libs" = no; then	    # If there is no dlname, no dlopen support or we're linking	    # statically, we need to preload.  We also need to preload any	    # dependent libraries so libltdl's deplib preloader doesn't	    # bomb out in the load deplibs phase.	    dlprefiles="$dlprefiles $lib $dependency_libs"	  else	    newdlfiles="$newdlfiles $lib"	  fi	  continue	fi # $pass = dlopen	# We need an absolute path.	case $ladir in	[\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;	*)	  abs_ladir=`cd "$ladir" && pwd`	  if test -z "$abs_ladir"; then	    $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2	    $echo "$modename: passing it literally to the linker, although it might fail" 1>&2	    abs_ladir="$ladir"	  fi	  ;;	esac	laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`	# Find the relevant object directory and library name.	if test "X$installed" = Xyes; then	  if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then	    $echo "$modename: warning: library \`$lib' was moved." 1>&2	    dir="$ladir"	    absdir="$abs_ladir"	    libdir="$abs_ladir"	  else	    dir="$libdir"	    absdir="$libdir"	  fi	  test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes	else	  if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then	    dir="$ladir"	    absdir="$abs_ladir"	    # Remove this search path later	    notinst_path="$notinst_path $abs_ladir"	  else	    dir="$ladir/$objdir"	    absdir="$abs_ladir/$objdir"	    # Remove this search path later	    notinst_path="$notinst_path $abs_ladir"	  fi	fi # $installed = yes	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`	# This library was specified wi

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美在线免费观看亚洲| 日韩欧美在线网站| 麻豆精品一区二区av白丝在线| 国产婷婷一区二区| 欧美日韩美少妇| 91精品国产乱码| 91亚洲男人天堂| 精品制服美女丁香| 天天综合天天综合色| 亚洲六月丁香色婷婷综合久久 | 欧美一卡2卡3卡4卡| 99国产精品久久久久久久久久久| 狠狠色狠狠色合久久伊人| 亚洲第一电影网| 亚洲色图制服丝袜| 亚洲国产精品精华液ab| 精品粉嫩超白一线天av| 欧美一区二区在线看| 欧美网站一区二区| 日本久久一区二区| 91小视频免费看| 成人永久看片免费视频天堂| 精品一区二区三区免费播放| 天堂成人国产精品一区| 亚洲一区二区三区激情| 亚洲日本va在线观看| 国产精品狼人久久影院观看方式| 久久精品一区二区三区不卡| 欧美xxxx老人做受| 欧美一级欧美三级| 欧美一区二区三区视频| 欧美精品一二三| 欧美日韩午夜在线| 欧美日韩精品高清| 在线播放中文字幕一区| 欧美久久一二三四区| 欧美亚洲禁片免费| 欧美色偷偷大香| 欧美综合欧美视频| 欧美日韩在线观看一区二区 | 国产三级久久久| 久久综合九色综合久久久精品综合| 欧美精品vⅰdeose4hd| 成人爽a毛片一区二区免费| 亚洲午夜久久久| 亚洲成人你懂的| 亚洲国产精品自拍| 日韩成人一级片| 韩日欧美一区二区三区| 国产精品456| eeuss鲁一区二区三区| av不卡一区二区三区| 色视频欧美一区二区三区| 欧美日韩综合在线| 777午夜精品视频在线播放| 日韩视频免费直播| 久久精品一二三| 国产精品美女久久久久久久久| 韩国精品一区二区| 国产精品小仙女| 91在线你懂得| 欧美日本国产视频| 精品电影一区二区三区| 国产精品久久久久久久久久久免费看| 成人免费视频在线观看| 一区二区三区国产精华| 日本欧美韩国一区三区| 国产成人精品亚洲午夜麻豆| 99久久精品国产一区| 欧美精品日韩综合在线| 久久精品国产99国产| 日本在线不卡一区| 国产麻豆精品theporn| 成人h动漫精品一区二| 欧美亚洲综合久久| 精品久久久久99| 亚洲欧洲日产国产综合网| 午夜欧美视频在线观看| 国产一区美女在线| 色呦呦日韩精品| 日韩三级中文字幕| 国产精品电影院| 水野朝阳av一区二区三区| 高清国产一区二区三区| 欧美三级欧美一级| 欧美激情一区二区三区四区| av一区二区三区| 欧美日本一道本| 中文乱码免费一区二区| 日韩av不卡在线观看| 成人免费视频app| 666欧美在线视频| 国产精品久久久一本精品| 日韩精品视频网| 99r国产精品| 精品国偷自产国产一区| 亚洲国产美国国产综合一区二区| 国产精品久久久久久户外露出| 久久久亚洲精品石原莉奈| 一区二区三区欧美激情| 国产麻豆精品久久一二三| 欧美三级日韩三级| 国产精品成人一区二区三区夜夜夜| 日韩电影在线免费| 色综合欧美在线视频区| 久久亚洲综合色| 日韩和欧美的一区| 日本精品视频一区二区| 欧美国产97人人爽人人喊| 日本欧美久久久久免费播放网| 在线一区二区三区四区| 国产精品青草综合久久久久99| 激情五月婷婷综合网| 91超碰这里只有精品国产| 亚洲人成网站影音先锋播放| 国产精品白丝av| 日韩免费高清视频| 亚洲大片精品永久免费| 色八戒一区二区三区| 国产精品视频看| 国产精品系列在线播放| 精品国产sm最大网站免费看 | 五月天激情综合网| 日本高清不卡视频| 亚洲男女一区二区三区| 91在线视频网址| 中文字幕在线观看不卡| 成人午夜碰碰视频| 国产精品亲子伦对白| 成人蜜臀av电影| 国产精品三级视频| 成人高清视频在线观看| 国产欧美日韩在线看| 国产一区二区三区精品欧美日韩一区二区三区 | 日韩欧美电影一区| 免费久久精品视频| 欧美一区二区大片| 免费在线观看成人| 欧美成人精品3d动漫h| 麻豆精品一二三| 久久综合九色欧美综合狠狠| 国产美女一区二区| 国产人久久人人人人爽| 国产98色在线|日韩| 久久精品欧美日韩| 成a人片国产精品| 亚洲乱码国产乱码精品精小说| 亚洲一区二区三区国产| 91论坛在线播放| 亚洲人妖av一区二区| www.亚洲色图.com| 亚洲视频免费观看| 91成人看片片| 午夜电影久久久| 日韩视频一区二区在线观看| 国产综合色精品一区二区三区| 久久久www免费人成精品| 成人av网站在线观看| 亚洲色大成网站www久久九九| 日本久久电影网| 日产精品久久久久久久性色| 欧美精品一区二区三区久久久| 国产成人精品1024| 亚洲欧美色综合| 欧美日韩国产a| 久久精品国产99久久6| 久久久噜噜噜久久人人看| 国产一区二区三区香蕉| 国产精品看片你懂得| 色999日韩国产欧美一区二区| 亚洲成av人在线观看| 日韩欧美一区在线| 成人毛片在线观看| 午夜精品久久久久久久99水蜜桃| 欧美一激情一区二区三区| 国产精品综合一区二区三区| 亚洲免费观看高清在线观看| 欧美精品乱人伦久久久久久| 国产剧情av麻豆香蕉精品| 亚洲伦理在线免费看| 日韩欧美国产一区二区三区| 99在线精品视频| 青青草国产成人99久久| 亚洲欧美色图小说| 精品精品欲导航| 欧美午夜精品理论片a级按摩| 黑人巨大精品欧美一区| 亚洲第一电影网| 亚洲国产高清aⅴ视频| 在线播放中文一区| 波多野结衣的一区二区三区| 捆绑调教美女网站视频一区| 亚洲卡通欧美制服中文| 久久久久久久综合| 欧美日本一区二区在线观看| 99久久国产免费看| 国产精品资源网| 免费精品视频最新在线| 夜夜嗨av一区二区三区中文字幕| 精品国产一区二区三区忘忧草 |