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

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

?? libtool

?? libnxml-no-curl-簡化版2007-07-01,一個別很不錯的XML生成和解析程序。
??
?? 第 1 頁 / 共 5 頁
字號:
    arg_mode=normal    libobj=    later=    for arg    do      case $arg_mode in      arg  )	# do not "continue".  Instead, add this to base_compile	lastarg="$arg"	arg_mode=normal	;;      target )	libobj="$arg"	arg_mode=normal	continue	;;      normal )	# Accept any command-line options.	case $arg in	-o)	  if test -n "$libobj" ; then	    $echo "$modename: you cannot specify \`-o' more than once" 1>&2	    exit $EXIT_FAILURE	  fi	  arg_mode=target	  continue	  ;;	-static | -prefer-pic | -prefer-non-pic)	  later="$later $arg"	  continue	  ;;	-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, and some SunOS ksh mistreat backslash-escaping      # in scan sets (worked around with variable expansion),      # and furthermore cannot handle '|' '&' '(' ')' in scan sets       # at all, so we specify them 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    qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`    case $qlibobj in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")	qlibobj="\"$qlibobj\"" ;;    esac    test "X$libobj" != "X$qlibobj" \	&& $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' 	&()|`$[]' \	&& $echo "$modename: libobj name \`$libobj' may not contain shell special characters."    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    qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"`    case $qsrcfile in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")      qsrcfile="\"$qsrcfile\"" ;;    esac    $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 $qsrcfile $pic_flag"      else	# Don't build PIC code	command="$base_compile $qsrcfile"      fi      if test ! -d "${xdir}$objdir"; then	$show "$mkdir ${xdir}$objdir"	$run $mkdir ${xdir}$objdir	exit_status=$?	if test "$exit_status" -ne 0 && test ! -d "${xdir}$objdir"; then	  exit $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 $qsrcfile"      else	command="$base_compile $qsrcfile $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=

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
玖玖九九国产精品| 精品国产电影一区二区| 中文字幕一区在线观看| 国产成人亚洲综合色影视| 精品免费日韩av| 久久国产尿小便嘘嘘尿| 日韩欧美一二三| 高清av一区二区| 综合网在线视频| 欧美日韩视频第一区| 亚洲www啪成人一区二区麻豆| 欧美日韩精品三区| 日韩av一区二区在线影视| 日韩三区在线观看| 国产精品一区在线观看乱码| 欧美变态凌虐bdsm| 丁香五精品蜜臀久久久久99网站 | 不卡的电影网站| 亚洲素人一区二区| 欧美日韩精品一区视频| 麻豆传媒一区二区三区| 国产欧美日本一区视频| 91网站最新地址| 日韩有码一区二区三区| 精品国一区二区三区| av一区二区三区四区| 亚洲影视在线播放| 精品久久久久一区二区国产| caoporen国产精品视频| 亚洲国产精品一区二区久久| 日韩欧美国产午夜精品| 成人av一区二区三区| 亚洲一区二区三区四区在线观看 | 欧美影院一区二区| 久久se精品一区精品二区| 国产精品美女视频| 欧美日韩高清在线| 粉嫩嫩av羞羞动漫久久久| 一区二区三区小说| 国产午夜亚洲精品不卡| 欧美性videosxxxxx| 国产成人在线视频网站| 五月婷婷另类国产| 18欧美乱大交hd1984| 日韩午夜电影av| 91蝌蚪porny九色| 激情综合网av| 天堂在线一区二区| 亚洲丝袜另类动漫二区| 精品国产三级电影在线观看| 在线免费精品视频| 成人性生交大片免费看中文网站| 日本伊人午夜精品| 亚洲激情五月婷婷| 中文字幕乱码亚洲精品一区| 欧美一区2区视频在线观看| 99综合电影在线视频| 激情综合网av| 久久精品国产一区二区| 亚洲一级片在线观看| 国产精品剧情在线亚洲| 精品国产一区二区三区久久影院| 欧美亚洲高清一区二区三区不卡| 国产一区二区女| 老鸭窝一区二区久久精品| 亚洲一区二区三区三| 亚洲视频 欧洲视频| 欧美激情在线看| 日本一区二区三区在线不卡| 日韩欧美一区二区视频| 91精品国产综合久久久蜜臀图片| 91成人国产精品| 99久久精品一区二区| 不卡欧美aaaaa| 暴力调教一区二区三区| 成人手机在线视频| 粉嫩欧美一区二区三区高清影视| 国产乱子伦视频一区二区三区| 日本视频免费一区| 日韩vs国产vs欧美| 日韩精品91亚洲二区在线观看 | 蜜桃视频在线观看一区二区| 亚洲已满18点击进入久久| 亚洲日本免费电影| 最新不卡av在线| 亚洲激情网站免费观看| 亚洲综合另类小说| 日韩和的一区二区| 久久av中文字幕片| 国产一区激情在线| 国产成人av电影在线| 黄色小说综合网站| 国产成人av影院| 波多野结衣在线aⅴ中文字幕不卡| 99视频国产精品| 日本精品视频一区二区| 欧美三级日韩在线| 欧美一区二区三区四区在线观看 | 成人av午夜电影| 91毛片在线观看| 欧美日韩三级视频| 日韩一二三四区| 久久日韩粉嫩一区二区三区| 国产女同互慰高潮91漫画| 国产精品网友自拍| 亚洲免费在线观看| 日韩在线一二三区| 国产精品综合视频| 91农村精品一区二区在线| 欧美日韩国产一二三| 日韩一级片网址| 国产精品私人影院| 一区二区三区成人在线视频| 天天色 色综合| 国产成人在线视频免费播放| 91麻豆精品在线观看| 欧美一区二区视频观看视频| 26uuu久久天堂性欧美| 国产精品久久久久婷婷| 香蕉久久一区二区不卡无毒影院| 玖玖九九国产精品| 91亚洲国产成人精品一区二区三| 在线成人av网站| 国产女主播视频一区二区| 亚洲线精品一区二区三区| 九色综合国产一区二区三区| av午夜一区麻豆| 精品国产百合女同互慰| 国产精品久久久久久妇女6080| 午夜精品福利在线| av不卡一区二区三区| 欧美精品精品一区| 日韩美女啊v在线免费观看| 奇米精品一区二区三区四区 | 午夜精品福利久久久| 丁香啪啪综合成人亚洲小说| 欧美另类久久久品| 日韩码欧中文字| 国产乱码字幕精品高清av| 欧美性一二三区| 亚洲天堂av老司机| 粉嫩在线一区二区三区视频| 日韩一卡二卡三卡四卡| 一区二区三区在线不卡| 成人高清视频免费观看| 日韩欧美123| 日韩va亚洲va欧美va久久| 91激情在线视频| 中文字幕一区二区三中文字幕| 麻豆成人在线观看| 91精品麻豆日日躁夜夜躁| 亚洲精品乱码久久久久久日本蜜臀| 国产一区二区影院| 欧美成人精品二区三区99精品| 亚洲国产日韩a在线播放| 91麻豆国产自产在线观看| 国产精品区一区二区三| 国产福利一区二区三区视频在线| 欧美一卡二卡三卡| 蜜桃一区二区三区在线| 欧美日韩精品电影| 亚洲成人福利片| 欧美色视频在线| 亚洲第一久久影院| 色狠狠综合天天综合综合| 中文字幕不卡三区| 国产激情精品久久久第一区二区 | 久久这里只精品最新地址| 亚洲精品视频在线观看免费| 青青草成人在线观看| 色婷婷久久综合| 国产精品三级在线观看| 久久爱另类一区二区小说| 欧美私人免费视频| 一区二区三区四区不卡视频| 国产99一区视频免费| 久久综合成人精品亚洲另类欧美 | 亚洲欧美日韩中文播放 | 奇米影视一区二区三区小说| 欧美四级电影网| 青青草国产精品亚洲专区无| 欧美在线观看视频在线| 亚洲人成伊人成综合网小说| 成人午夜私人影院| 中文字幕一区在线观看视频| 丁香五精品蜜臀久久久久99网站 | 色视频成人在线观看免| 成人免费一区二区三区视频| 色综合天天做天天爱| 中文字幕一区二区5566日韩| 波多野结衣一区二区三区| 国产精品久久久久久久久免费桃花| 97久久超碰国产精品| 中文子幕无线码一区tr| 成人丝袜高跟foot| 玉米视频成人免费看| 91精品国产综合久久小美女| 蜜臀av一区二区在线观看| 日韩欧美第一区| 蜜臂av日日欢夜夜爽一区|