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

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

?? ltmain.sh

?? 用來編寫 unix 環境下的守護程序的工具庫
?? 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一区二区三区免费野_久草精品视频
亚洲精品在线免费观看视频| 制服丝袜亚洲网站| 色综合天天综合在线视频| 成人视屏免费看| 成人丝袜18视频在线观看| 91精品国产色综合久久不卡蜜臀| 欧美综合天天夜夜久久| 91精品免费观看| 久久久久久久久久久久久女国产乱 | 日本亚洲免费观看| 丁香六月综合激情| 欧美日韩一区小说| 2017欧美狠狠色| 亚洲日本丝袜连裤袜办公室| 奇米四色…亚洲| 91亚洲精品一区二区乱码| 91精品国产欧美一区二区| 欧美国产禁国产网站cc| 亚欧色一区w666天堂| 成年人国产精品| 日韩欧美黄色影院| 午夜伊人狠狠久久| 97久久精品人人爽人人爽蜜臀| 日韩女同互慰一区二区| 亚洲一区二区三区在线看| 成人av网址在线| 久久久99精品免费观看| 免费看欧美美女黄的网站| 日本韩国欧美国产| 中文字幕二三区不卡| 久久不见久久见免费视频1| 91麻豆精品国产91久久久更新时间| 亚洲欧洲国产日本综合| www.99精品| 国产精品久久久久久亚洲毛片 | 久久综合久久鬼色中文字| 男男gaygay亚洲| 日韩欧美一级特黄在线播放| 亚洲国产精品久久久久秋霞影院 | 亚洲理论在线观看| 成人av电影在线| 国产精品色噜噜| 99久久精品免费精品国产| 亚洲视频一二三区| 91成人网在线| 视频一区二区三区中文字幕| 666欧美在线视频| 麻豆成人久久精品二区三区红 | 国产一区二区三区四区五区入口| 精品国产乱码久久久久久闺蜜 | 欧美国产日本韩| 一本一本久久a久久精品综合麻豆| 一区二区三区不卡在线观看| 欧洲在线/亚洲| 狠狠色综合播放一区二区| 国产日韩欧美不卡| 欧美伦理视频网站| 国产专区综合网| 悠悠色在线精品| 久久美女艺术照精彩视频福利播放| 粉嫩一区二区三区性色av| 亚洲综合一区二区| 日本一区二区三区电影| 欧美精品在线一区二区| 不卡一区二区中文字幕| 日本v片在线高清不卡在线观看| 欧美激情一二三区| 欧美一级片在线| 欧美日韩精品一区二区三区蜜桃| 国产精品自拍av| 狠狠久久亚洲欧美| 日日摸夜夜添夜夜添国产精品| 国产精品电影一区二区| 久久久亚洲综合| 日韩欧美一区二区不卡| 4438x亚洲最大成人网| 色呦呦网站一区| 色域天天综合网| 一本一道久久a久久精品综合蜜臀| 久久国产福利国产秒拍| 日本女人一区二区三区| 亚洲成av人片| 日本不卡视频一二三区| 亚洲小说春色综合另类电影| 亚洲欧美日韩中文字幕一区二区三区 | 日韩三级视频中文字幕| 欧美日韩国产三级| 在线不卡欧美精品一区二区三区| 欧美日本精品一区二区三区| 欧美私模裸体表演在线观看| 欧美精品在线视频| 久久综合九色综合97婷婷女人 | 制服丝袜日韩国产| 精品少妇一区二区三区视频免付费 | 亚洲久本草在线中文字幕| **网站欧美大片在线观看| 亚洲国产精品一区二区www| 日韩精品一区第一页| 国产精品一区免费在线观看| 91在线porny国产在线看| 欧美性猛片aaaaaaa做受| 久久在线免费观看| 亚洲免费av网站| 老汉av免费一区二区三区| 91在线观看美女| 精品国精品国产| 亚洲自拍都市欧美小说| 国模娜娜一区二区三区| 91小视频免费观看| 久久久久久久综合色一本| 亚洲人成网站精品片在线观看| 丝袜国产日韩另类美女| 成人av在线播放网址| 精品精品国产高清一毛片一天堂| 亚洲三级视频在线观看| 国产一区二区免费在线| 欧美日韩一级黄| 亚洲三级视频在线观看| 成人久久18免费网站麻豆| 日韩免费在线观看| 午夜欧美电影在线观看| 91久久精品一区二区| 亚洲色图20p| av一区二区三区四区| 欧美国产乱子伦| www.66久久| 国产精品视频看| 91视频在线看| 一区二区三区四区五区视频在线观看 | 国产成a人亚洲| 国产精品视频麻豆| 日本韩国欧美在线| 舔着乳尖日韩一区| 日韩欧美成人午夜| 美女网站在线免费欧美精品| 欧美tk丨vk视频| 国产精品一品视频| 亚洲免费三区一区二区| 91香蕉视频黄| 蜜桃视频一区二区三区在线观看| 日韩欧美在线一区二区三区| 国产精品一区二区三区四区| √…a在线天堂一区| 欧美日韩一卡二卡| 大陆成人av片| 亚洲成精国产精品女| 亚洲精品在线电影| 欧美无砖专区一中文字| 国产在线视频一区二区| 亚洲电影欧美电影有声小说| 久久久91精品国产一区二区三区| 一本到一区二区三区| 日韩av在线免费观看不卡| 精品国产一区二区精华| 成人av电影观看| 午夜精品久久久久影视| 国产日本亚洲高清| 精品污污网站免费看| 水蜜桃久久夜色精品一区的特点 | 国产亚洲精品aa| 精品视频在线免费| 成人动漫在线一区| 五月婷婷久久丁香| 久久久综合视频| 欧美人体做爰大胆视频| 久久精品国产99国产精品| 国产精品久久久久久户外露出 | 国产在线精品免费| 亚洲午夜羞羞片| 久久久亚洲国产美女国产盗摄| 欧美视频中文字幕| 国产福利精品一区| 久久99精品久久久久久动态图| 亚洲免费色视频| 国产精品福利一区| 国产精品超碰97尤物18| 国产欧美一区二区精品性色超碰| 91精品国产综合久久久蜜臀图片| 国产成人午夜精品影院观看视频| 日韩av成人高清| 石原莉奈一区二区三区在线观看| 亚洲欧美在线高清| 国产精品你懂的在线| 国产精品久久久久久久久晋中| 久久久久高清精品| 久久综合色一综合色88| 日韩一区二区精品葵司在线| 日韩欧美电影一区| 日韩美女视频一区二区在线观看| 欧美一区二区在线不卡| 日韩精品在线看片z| 欧美日韩夫妻久久| 欧美成人高清电影在线| 欧美精品一区男女天堂| 国产精品久久久久永久免费观看| 国产精品少妇自拍| 日韩精品一级二级| 国产高清在线精品| 欧美日韩一级大片网址| 精品国产一区二区三区不卡|