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

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

?? ltmain.sh

?? 解壓縮chm格式文件的源代碼
?? SH
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
	-no-suppress)	  suppress_opt=no	  continue	  ;;	-Xcompiler)	  arg_mode=arg  #  the next one goes into the "base_compile" arg list	  continue      #  The current "srcfile" will either be retained or	  ;;            #  replaced later.  I would guess that would be a bug.	-Wc,*)	  args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`	  lastarg=	  save_ifs="$IFS"; IFS=',' 	  for arg in $args; do	    IFS="$save_ifs"	    # Double-quote args containing other shell metacharacters.	    # Many Bourne shells cannot handle close brackets correctly	    # in scan sets, so we specify it separately.	    case $arg in	      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	      arg="\"$arg\""	      ;;	    esac	    lastarg="$lastarg $arg"	  done	  IFS="$save_ifs"	  lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`	  # Add the arguments to base_compile.	  base_compile="$base_compile $lastarg"	  continue	  ;;	* )	  # Accept the current argument as the source file.	  # The previous "srcfile" becomes the current argument.	  #	  lastarg="$srcfile"	  srcfile="$arg"	  ;;	esac  #  case $arg	;;      esac    #  case $arg_mode      # Aesthetically quote the previous argument.      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`      case $lastarg in      # Double-quote args containing other shell metacharacters.      # Many Bourne shells cannot handle close brackets correctly      # in scan sets, so we specify it separately.      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	lastarg="\"$lastarg\""	;;      esac      base_compile="$base_compile $lastarg"    done # for arg    case $arg_mode in    arg)      $echo "$modename: you must specify an argument for -Xcompile"      exit $EXIT_FAILURE      ;;    target)      $echo "$modename: you must specify a target with \`-o'" 1>&2      exit $EXIT_FAILURE      ;;    *)      # Get the name of the library object.      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`      ;;    esac    # Recognize several different file suffixes.    # If the user specifies -o file.o, it is replaced with file.lo    xform='[cCFSifmso]'    case $libobj in    *.ada) xform=ada ;;    *.adb) xform=adb ;;    *.ads) xform=ads ;;    *.asm) xform=asm ;;    *.c++) xform=c++ ;;    *.cc) xform=cc ;;    *.ii) xform=ii ;;    *.class) xform=class ;;    *.cpp) xform=cpp ;;    *.cxx) xform=cxx ;;    *.f90) xform=f90 ;;    *.for) xform=for ;;    *.java) xform=java ;;    esac    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`    case $libobj in    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;    *)      $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2      exit $EXIT_FAILURE      ;;    esac    func_infer_tag $base_compile    for arg in $later; do      case $arg in      -static)	build_old_libs=yes	continue	;;      -prefer-pic)	pic_mode=yes	continue	;;      -prefer-non-pic)	pic_mode=no	continue	;;      esac    done    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`    if test "X$xdir" = "X$obj"; then      xdir=    else      xdir=$xdir/    fi    lobj=${xdir}$objdir/$objname    if test -z "$base_compile"; then      $echo "$modename: you must specify a compilation command" 1>&2      $echo "$help" 1>&2      exit $EXIT_FAILURE    fi    # Delete any leftover library objects.    if test "$build_old_libs" = yes; then      removelist="$obj $lobj $libobj ${libobj}T"    else      removelist="$lobj $libobj ${libobj}T"    fi    $run $rm $removelist    trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15    # On Cygwin there's no "real" PIC flag so we must build both object types    case $host_os in    cygwin* | mingw* | pw32* | os2*)      pic_mode=default      ;;    esac    if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then      # non-PIC code in shared libraries is not supported      pic_mode=default    fi    # Calculate the filename of the output object if compiler does    # not support -o with -c    if test "$compiler_c_o" = no; then      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}      lockfile="$output_obj.lock"      removelist="$removelist $output_obj $lockfile"      trap "$run $rm $removelist; exit $EXIT_FAILURE" 1 2 15    else      output_obj=      need_locks=no      lockfile=    fi    # Lock this critical section if it is needed    # We use this script file to make the link, it avoids creating a new file    if test "$need_locks" = yes; then      until $run ln "$progpath" "$lockfile" 2>/dev/null; do	$show "Waiting for $lockfile to be removed"	sleep 2      done    elif test "$need_locks" = warn; then      if test -f "$lockfile"; then	$echo "\*** ERROR, $lockfile exists and contains:`cat $lockfile 2>/dev/null`This indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      $echo $srcfile > "$lockfile"    fi    if test -n "$fix_srcfile_path"; then      eval srcfile=\"$fix_srcfile_path\"    fi    $run $rm "$libobj" "${libobj}T"    # Create a libtool object file (analogous to a ".la" file),    # but don't create it if we're doing a dry run.    test -z "$run" && cat > ${libobj}T <<EOF# $libobj - a libtool object file# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP## Please DO NOT delete this file!# It is necessary for linking the library.# Name of the PIC object.EOF    # Only build a PIC object if we are building libtool libraries.    if test "$build_libtool_libs" = yes; then      # Without this assignment, base_compile gets emptied.      fbsd_hideous_sh_bug=$base_compile      if test "$pic_mode" != no; then	command="$base_compile $srcfile $pic_flag"      else	# Don't build PIC code	command="$base_compile $srcfile"      fi      if test ! -d "${xdir}$objdir"; then	$show "$mkdir ${xdir}$objdir"	$run $mkdir ${xdir}$objdir	status=$?	if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then	  exit $status	fi      fi      if test -z "$output_obj"; then	# Place PIC objects in $objdir	command="$command -o $lobj"      fi      $run $rm "$lobj" "$output_obj"      $show "$command"      if $run eval "$command"; then :      else	test -n "$output_obj" && $run $rm $removelist	exit $EXIT_FAILURE      fi      if test "$need_locks" = warn &&	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then	$echo "\*** ERROR, $lockfile contains:`cat $lockfile 2>/dev/null`but it should contain:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      # Just move the object if needed, then go on to compile the next one      if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then	$show "$mv $output_obj $lobj"	if $run $mv $output_obj $lobj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Append the name of the PIC object to the libtool object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object='$objdir/$objname'EOF      # Allow error messages only from the first compilation.      if test "$suppress_opt" = yes; then        suppress_output=' >/dev/null 2>&1'      fi    else      # No PIC object so indicate it doesn't exist in the libtool      # object file.      test -z "$run" && cat >> ${libobj}T <<EOFpic_object=noneEOF    fi    # Only build a position-dependent object if we build old libraries.    if test "$build_old_libs" = yes; then      if test "$pic_mode" != yes; then	# Don't build PIC code	command="$base_compile $srcfile"      else	command="$base_compile $srcfile $pic_flag"      fi      if test "$compiler_c_o" = yes; then	command="$command -o $obj"      fi      # Suppress compiler output if we already did a PIC compilation.      command="$command$suppress_output"      $run $rm "$obj" "$output_obj"      $show "$command"      if $run eval "$command"; then :      else	$run $rm $removelist	exit $EXIT_FAILURE      fi      if test "$need_locks" = warn &&	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then	$echo "\*** ERROR, $lockfile contains:`cat $lockfile 2>/dev/null`but it should contain:$srcfileThis indicates that another process is trying to use the sametemporary object file, and libtool could not work around it becauseyour compiler does not support \`-c' and \`-o' together.  If yourepeat this compilation, it may succeed, by chance, but you had betteravoid parallel builds (make -j) in this platform, or get a bettercompiler."	$run $rm $removelist	exit $EXIT_FAILURE      fi      # Just move the object if needed      if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then	$show "$mv $output_obj $obj"	if $run $mv $output_obj $obj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object='$objname'EOF    else      # Append the name of the non-PIC object the libtool object file.      # Only append if the libtool object file exists.      test -z "$run" && cat >> ${libobj}T <<EOF# Name of the non-PIC object.non_pic_object=noneEOF    fi    $run $mv "${libobj}T" "${libobj}"    # Unlock the critical section if it was locked    if test "$need_locks" != no; then      $run $rm "$lockfile"    fi    exit $EXIT_SUCCESS    ;;  # libtool link mode  link | relink)    modename="$modename: link"    case $host in    *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)      # It is impossible to link a dll without this setting, and      # we shouldn't force the makefile maintainer to figure out      # which system we are compiling for in order to pass an extra      # flag for every libtool invocation.      # allow_undefined=no      # FIXME: Unfortunately, there are problems with the above when trying      # to make a dll which has undefined symbols, in which case not      # even a static library is built.  For now, we need to specify      # -no-undefined on the libtool link line when we can be certain      # that all symbols are satisfied, otherwise we get a static library.      allow_undefined=yes      ;;    *)      allow_undefined=yes      ;;    esac    libtool_args="$nonopt"    base_compile="$nonopt $@"    compile_command="$nonopt"    finalize_command="$nonopt"    compile_rpath=    finalize_rpath=    compile_shlibpath=    finalize_shlibpath=    convenience=    old_convenience=    deplibs=    old_deplibs=    compiler_flags=    linker_flags=    dllsearchpath=    lib_search_path=`pwd`    inst_prefix_dir=    avoid_version=no    dlfiles=    dlprefiles=    dlself=no    export_dynamic=no    export_symbols=    export_symbols_regex=    generated=    libobjs=    ltlibs=    module=no    no_install=no    objs=    non_pic_objects=    precious_files_regex=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    vinfo_number=no    func_infer_tag $base_compile    # We need to know -static, to get the right output filenames.    for arg    do      case $arg in      -all-static | -static)	if test "X$arg" = "X-all-static"; then	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2	  fi	  if test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	else	  if test -z "$pic_flag" && test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	fi	build_libtool_libs=no	build_old_libs=yes	prefer_static_libs=yes	break	;;      esac    done    # See if our shared archives depend on static archives.    test -n "$old_archive_from_new_cmds" && build_old_libs=yes    # Go through the arguments, transforming them on the way.    while test "$#" -gt 0; do      arg="$1"      shift      case $arg in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test	;;      *) qarg=$arg ;;      esac      libtool_args="$libtool_args $qarg"

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品国产高清久久伦理二区 | 国产精品伦一区| 国产真实乱对白精彩久久| 欧美一区二区高清| 久久精品国产久精国产爱| 日韩欧美aaaaaa| 国产成人免费视频一区| 国产精品剧情在线亚洲| 欧美在线|欧美| 午夜影院在线观看欧美| 日韩视频免费观看高清完整版| 麻豆成人在线观看| 欧美激情一区二区三区| 91看片淫黄大片一级在线观看| 一区二区三区视频在线看| 欧美高清视频在线高清观看mv色露露十八| 爽好久久久欧美精品| 久久亚洲一区二区三区四区| 成人av小说网| 亚洲mv大片欧洲mv大片精品| 日韩视频免费直播| 成人一级片网址| 亚洲不卡一区二区三区| 久久综合九色综合97_久久久 | 99久久精品免费| 日韩激情一区二区| 中文字幕一区二区三中文字幕| 91黄色激情网站| 国产一区二区影院| 亚洲一区二区欧美日韩| 久久先锋影音av| 欧美三级欧美一级| 丁香另类激情小说| 蜜桃av一区二区三区电影| 亚洲婷婷在线视频| 日韩精品一区二区三区四区 | 成人97人人超碰人人99| 免费高清在线视频一区·| 国产精品每日更新在线播放网址| 欧美精品18+| 91视频在线观看| 国产综合久久久久影院| 亚洲一区二区四区蜜桃| 国产女人18毛片水真多成人如厕 | 日韩av一区二区三区四区| 国产精品麻豆久久久| 日韩精品中文字幕在线一区| 在线看国产一区二区| 国产寡妇亲子伦一区二区| 日韩国产欧美一区二区三区| 一区在线观看视频| 亚洲精品在线免费观看视频| 欧美日韩一区在线观看| 成人av影院在线| 国产成人免费视| 免费成人在线视频观看| 亚洲成人www| 一区二区三区 在线观看视频 | 亚洲精品日日夜夜| 国产精品视频一二三区| 久久尤物电影视频在线观看| 制服丝袜亚洲播放| 欧美撒尿777hd撒尿| 色综合婷婷久久| 亚洲精品网站在线观看| 欧美日韩精品欧美日韩精品一| 成人不卡免费av| 国产iv一区二区三区| 九九在线精品视频| 亚洲成人一二三| 亚洲成人动漫精品| 午夜私人影院久久久久| 麻豆91在线播放免费| 久久久精品黄色| 欧美丝袜第三区| aa级大片欧美| 国产黄人亚洲片| 看片网站欧美日韩| 国v精品久久久网| 欧美变态tickling挠脚心| 日韩不卡免费视频| 欧美一区二区精品在线| 洋洋成人永久网站入口| thepron国产精品| av一区二区不卡| 欧美色国产精品| 一本久久a久久精品亚洲| 亚洲欧美日韩国产综合| 精品一区二区在线免费观看| 北条麻妃国产九九精品视频| 国产精品免费视频观看| 日本va欧美va瓶| 国产精品一二二区| 一区二区成人在线| 婷婷亚洲久悠悠色悠在线播放| 成人国产精品视频| 99久久伊人精品| 日韩av不卡一区二区| 亚洲视频在线观看一区| 日韩无一区二区| 国产精品一品二品| 国产综合色产在线精品| 国产风韵犹存在线视精品| 日本免费新一区视频| 久久国产欧美日韩精品| aaa亚洲精品| 8v天堂国产在线一区二区| 国产成人免费xxxxxxxx| 色婷婷国产精品| 欧美在线免费观看视频| 日本精品一区二区三区四区的功能| 欧美经典一区二区| 日韩一区和二区| 久久久亚洲精华液精华液精华液| 一区二区三区影院| 美腿丝袜亚洲一区| 欧美在线一区二区三区| 欧美日韩国产一级片| 欧美视频在线不卡| 777久久久精品| 国产欧美精品日韩区二区麻豆天美| 国产欧美一区二区精品忘忧草| 日韩一区二区三区在线观看| 国产欧美日韩麻豆91| 亚洲女人****多毛耸耸8| 精品在线一区二区| 国产成人自拍网| 在线电影国产精品| 久久福利资源站| 欧美日韩成人激情| 久久一日本道色综合| 亚洲日本va午夜在线影院| 国产一区在线看| www.日韩在线| 欧美一级日韩免费不卡| 亚洲欧洲精品成人久久奇米网| 韩国v欧美v日本v亚洲v| 香蕉久久夜色精品国产使用方法 | 国产成人在线视频免费播放| 欧美影院一区二区| 26uuu久久天堂性欧美| 亚洲一二三区视频在线观看| 国产不卡高清在线观看视频| 91精品办公室少妇高潮对白| 久久亚洲综合av| 精品在线播放免费| 欧美高清激情brazzers| 亚洲欧洲精品一区二区精品久久久| 精品一区二区在线免费观看| 欧美久久免费观看| 亚洲欧美另类图片小说| 成人午夜视频在线观看| 精品99一区二区三区| 亚洲福利视频一区| 在线观看一区二区视频| 成人免费视频在线观看| 成人av午夜电影| 国产日韩影视精品| 国产激情视频一区二区三区欧美| 日韩欧美国产一二三区| 亚洲成a人片综合在线| 日本道免费精品一区二区三区| 国产精品久线观看视频| eeuss鲁片一区二区三区在线看| 欧美一区二区三区小说| 免费看黄色91| 欧美不卡激情三级在线观看| 久久99精品久久久久久国产越南| 欧美另类久久久品| 日本va欧美va精品| 欧美一区二区三区免费| 麻豆成人综合网| 精品女同一区二区| 日韩av一区二区三区四区| 制服.丝袜.亚洲.中文.综合| 午夜av一区二区| 日韩一区二区免费在线电影| 蜜桃av一区二区三区电影| 精品国产制服丝袜高跟| 国产麻豆视频一区二区| 中文字幕欧美日韩一区| bt7086福利一区国产| 一区二区三区中文字幕电影| 欧美三级三级三级| 久久国产综合精品| 中文字幕 久热精品 视频在线| 波多野结衣中文字幕一区二区三区| 国产精品超碰97尤物18| 欧美日韩一区三区| 久久66热偷产精品| 欧美国产在线观看| 在线精品视频一区二区| 美女被吸乳得到大胸91| 欧美国产亚洲另类动漫| 91蝌蚪porny九色| 秋霞午夜鲁丝一区二区老狼| 精品电影一区二区三区| 99国产精品视频免费观看| 丝袜亚洲另类欧美| 国产欧美一区在线|