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

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

?? ltmain.sh

?? exosip
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	  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)	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      # -m*, -t[45]*, -txscale* pass through architecture-specific      # compiler args for GCC      # -pg pass through profiling flag for GCC      # @file GCC response files      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \      -t[45]*|-txscale*|@*)	# 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*)	  # 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	    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	    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	;;      *.$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	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	  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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色婷婷综合视频在线观看| 在线看不卡av| av电影在线观看完整版一区二区| 成人激情视频网站| 日本精品裸体写真集在线观看| 激情文学综合网| 国产在线不卡视频| 色婷婷综合久久久久中文| 日韩一区二区三区电影| 欧美激情中文字幕| 五月激情综合网| 国产91丝袜在线18| 欧美精品v国产精品v日韩精品| 久久久久久久综合色一本| 亚洲精品国产无天堂网2021| 青青国产91久久久久久 | 欧美一区二区三区在| 精品久久久久一区二区国产| 自拍偷拍亚洲欧美日韩| 九色综合狠狠综合久久| 欧美性生交片4| 国产亚洲欧美日韩在线一区| 亚洲国产精品一区二区久久 | 午夜欧美电影在线观看| 成人h动漫精品一区二区| 69p69国产精品| 18涩涩午夜精品.www| 免费观看日韩电影| 欧美在线免费视屏| 国产精品久久久久久久浪潮网站 | 成人av资源站| 久久综合久久99| 日韩精品电影在线| 91麻豆蜜桃一区二区三区| 久久伊99综合婷婷久久伊| 亚洲成a人在线观看| 91视频com| 亚洲欧美偷拍卡通变态| 国产91精品免费| 久久天天做天天爱综合色| 麻豆精品视频在线观看| 欧美日韩日日摸| 亚洲午夜一二三区视频| 在线区一区二视频| 亚洲欧美日韩小说| 99久久免费精品高清特色大片| 久久影视一区二区| 国产一区二区免费看| 日韩一二三区不卡| 蜜臀av性久久久久蜜臀av麻豆| 欧美福利一区二区| 亚洲.国产.中文慕字在线| 欧美性大战久久久久久久蜜臀| **欧美大码日韩| 色婷婷国产精品| 亚洲一区二区三区三| 欧美日韩精品三区| 日本一不卡视频| 欧美大尺度电影在线| 国产一区在线精品| 欧美激情综合五月色丁香小说| 成人午夜电影网站| 亚洲裸体在线观看| 欧美视频在线一区| 麻豆视频一区二区| 久久嫩草精品久久久精品 | 亚洲一级二级三级| 精品视频免费在线| 亚洲va韩国va欧美va| 91精品国产欧美日韩| 强制捆绑调教一区二区| 久久久久97国产精华液好用吗| 国产成人精品一区二区三区四区| 国产精品色眯眯| 日本精品一级二级| 开心九九激情九九欧美日韩精美视频电影| 欧美三级日韩在线| 韩国理伦片一区二区三区在线播放| 日韩欧美一区二区免费| 国产在线观看一区二区| 亚洲人成网站精品片在线观看| 欧美性猛交xxxx黑人交| 开心九九激情九九欧美日韩精美视频电影 | 国产精品视频免费看| 91网站最新地址| 久久综合综合久久综合| 国产日韩欧美麻豆| 欧美视频精品在线观看| 加勒比av一区二区| 亚洲青青青在线视频| 日韩一二三四区| 91啪九色porn原创视频在线观看| 亚洲成人黄色影院| 欧美激情资源网| 欧美一区二区视频在线观看2022| 国产成人一级电影| 日韩高清一区在线| 中文字幕亚洲在| 精品日韩一区二区三区 | 色偷偷久久一区二区三区| 免费在线观看一区| 亚洲欧美怡红院| 日韩美女一区二区三区| 99久久免费国产| 精品一区二区三区影院在线午夜 | 亚洲欧美一区二区三区久本道91| 日韩三级.com| 在线观看不卡视频| 国产99精品国产| 久久国内精品视频| 亚洲美女免费在线| 亚洲国产精品传媒在线观看| 欧美一个色资源| 91久久免费观看| 91亚洲永久精品| 成人听书哪个软件好| 国产综合色产在线精品| 奇米影视一区二区三区小说| 亚洲精品videosex极品| 欧美激情中文不卡| 久久精品人人做人人综合| 日韩欧美国产一区在线观看| 欧美三级在线看| 在线中文字幕一区二区| 91在线视频网址| 99久久精品国产观看| 成人性生交大片免费看在线播放 | 精品电影一区二区| 欧美一区二区日韩一区二区| 欧美日韩一级二级| 在线免费av一区| 91成人免费网站| 欧美三级在线播放| 欧美午夜电影网| 97精品超碰一区二区三区| 国产精品亚洲视频| 国产激情一区二区三区四区 | 欧美高清精品3d| 91精品国产丝袜白色高跟鞋| 7777精品伊人久久久大香线蕉完整版| 欧美亚洲一区三区| 欧美日韩一级大片网址| 91精品久久久久久久91蜜桃 | 国产精品免费久久| 国产精品福利影院| 国产精品久99| 一区二区三区波多野结衣在线观看| 综合电影一区二区三区 | 亚洲精品欧美专区| 亚洲一区二区三区国产| 亚洲成av人片一区二区梦乃| 全国精品久久少妇| 国产一区不卡视频| av激情亚洲男人天堂| 色女孩综合影院| 欧美日本在线一区| 欧美成人一区二区三区片免费| 久久亚洲春色中文字幕久久久| 久久一区二区视频| 最新不卡av在线| 日韩精品视频网| 国产激情精品久久久第一区二区 | 亚洲欧美电影一区二区| 亚洲国产精品久久久久婷婷884| 日本成人中文字幕| 国产高清成人在线| 91亚洲国产成人精品一区二区三| 在线精品视频一区二区三四 | 日本vs亚洲vs韩国一区三区| 精品一区免费av| 91在线视频免费91| 日韩一区二区影院| 国产精品美女久久久久高潮| 亚洲福利视频导航| 国产精品一区二区视频| 91免费版在线| 精品入口麻豆88视频| 亚洲精品国产高清久久伦理二区| 五月天久久比比资源色| 国产成人高清在线| 欧美日韩欧美一区二区| 国产欧美一区二区精品性色| 亚洲成在人线免费| 成人网男人的天堂| 欧美一级淫片007| 亚洲欧美另类小说| 国产精品亚洲午夜一区二区三区| 欧美日韩国产天堂| 亚洲欧洲日产国码二区| 精品一区二区三区在线播放视频 | 91黄色在线观看| 国产日韩欧美不卡| 蜜臀久久久久久久| 在线免费观看日本欧美| 国产欧美日韩在线看| 麻豆视频一区二区| 91精彩视频在线观看| 国产欧美一区二区精品久导航| 美女诱惑一区二区| 6080日韩午夜伦伦午夜伦|