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

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

?? ltmain.sh

?? JSON(JavaScript Object Notation) 是一種輕量級的數據交換格式。易于人閱讀和編寫。同時也易于機器解析和生成。它基于JavaScript(Standard ECMA-262
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	$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 <<EOF
pic_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 <<EOF
pic_object=none

EOF
    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:
$srcfile

This indicates that another process is trying to use the same
temporary object file, and libtool could not work around it because
your compiler does not support \`-c' and \`-o' together.  If you
repeat this compilation, it may succeed, by chance, but you had better
avoid parallel builds (make -j) in this platform, or get a better
compiler."

	$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=none

EOF
    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=
    notinst_path= # paths that contain not-installed libtool libraries
    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
	  prefer_static_libs=yes
	else
	  if test -z "$pic_flag" && test -n "$link_static_flag"; then
	    dlopen_self=$dlopen_self_static
	  fi
	  prefer_static_libs=built
	fi
	build_libtool_libs=no
	build_old_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"

      # If the previous option needs an argument, assign it.
      if test -n "$prev"; then
	case $prev in
	output)
	  compile_command="$compile_command @OUTPUT@"
	  finalize_command="$finalize_command @OUTPUT@"
	  ;;
	esac

	case $prev in
	dlfiles|dlprefiles)
	  if test "$preload" = no; then
	    # Add the symbol object into the linking commands.
	    compile_command="$compile_command @SYMFILE@"
	    finalize_command="$finalize_command @SYMFILE@"
	    preload=yes
	  fi
	  case $arg in
	  *.la | *.lo) ;;  # We handle these cases below.
	  force)
	    if test "$dlself" = no; then
	      dlself=needless
	      export_dynamic=yes
	    fi
	    prev=
	    continue
	    ;;
	  self)
	    if test "$prev" = dlprefiles; then
	      dlself=yes
	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
	      dlself=yes
	    else
	      dlself=needless
	      export_dynamic=yes
	    fi
	    prev=
	    continue
	    ;;
	  *)
	    if test "$prev" = dlfiles; then
	      dlfiles="$dlfiles $arg"
	    else
	      dlprefiles="$dlprefiles $arg"
	    fi
	    prev=
	    continue
	    ;;
	  esac
	  ;;
	expsyms)
	  export_symbols="$arg"
	  if test ! -f "$arg"; then
	    $echo "$modename: symbol file \`$arg' does not exist"
	    exit $EXIT_FAILURE
	  fi
	  prev=
	  continue
	  ;;
	expsyms_regex)
	  export_symbols_regex="$arg"
	  prev=
	  continue
	  ;;
	inst_prefix)
	  inst_prefix_dir="$arg"
	  prev=
	  continue
	  ;;
	precious_regex)
	  precious_files_regex="$arg"
	  prev=
	  continue
	  ;;
	release)
	  release="-$arg"
	  prev=
	  continue
	  ;;
	objectlist)
	  if test -f "$arg"; then
	    save_arg=$arg
	    moreargs=
	    for fil in `cat $save_arg`
	    do
#	      moreargs="$moreargs $fil"
	      arg=$fil
	      # 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
	    done
	  else
	    $echo "$modename: link input file \`$save_arg' does not exist"
	    exit $EXIT_FAILURE
	  fi
	  arg=$save_arg
	  prev=
	  continue
	  ;;
	rpath | xrpath)
	  # We need an absolute path.
	  case $arg in
	  [\\/]* | [A-Za-z]:[\\/]*) ;;
	  *)
	    $echo "$modename: only absolute run-paths are allowed" 1>&2
	    exit $EXIT_FAILURE
	    ;;
	  esac
	  if test "$prev" = rpath; then
	    case "$rpath " in
	    *" $arg "*) ;;
	    *) rpath="$rpath $arg" ;;
	    esac
	  else
	    case "$xrpath " in
	    *" $arg "*) ;;
	    *) xrpath="$xrpath $arg" ;;
	    esac
	  fi
	  prev=
	  continue
	  ;;
	xcompiler)
	  compiler_flags="$compiler_flags $qarg"
	  prev=
	  compile_command="$compile_command $qarg"
	  finalize_command="$finalize_command $qarg"
	  continue
	  ;;
	xlinker)
	  linker_flags="$linker_flags $qarg"
	  compiler_flags="$compiler_flags $wl$qarg"
	  prev=
	  compile_command="$compile_command $wl$qarg"
	  finalize_command="$finalize_command $wl$qarg"
	  continue
	  ;;
	xcclinker)
	  linker_flags="$linker_flags $qarg"
	  compiler_flags="$compiler_flags $qarg"
	  prev=
	  compile_command="$compile_command $qarg"
	  finalize_command="$finalize_command $qarg"
	  continue
	  ;;
	shrext)
  	  shrext_cmds="$arg"
	  prev=
	  continue
	  ;;
	darwin_framework|darwin_framework_skip)
	  test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags $arg"
	  compile_command="$compile_command $arg"
	  finalize_command="$finalize_command $arg"
	  prev=
	  continue
	  ;;
	*)
	  eval "$prev=\"\$arg\""
	  prev=
	  continue
	  ;;
	esac
      fi # test -n "$prev"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕日本乱码精品影院| 青青草原综合久久大伊人精品 | 国产精品入口麻豆原神| 国产乱子轮精品视频| 欧美xxxx在线观看| 国产精品亚洲第一| 国产精品传媒入口麻豆| 欧美精选在线播放| 久久精品国产久精国产| 欧美精品一区二区三区很污很色的| 国产成人精品aa毛片| 亚洲三级久久久| www一区二区| 精品视频一区 二区 三区| 国产一区激情在线| 五月天亚洲婷婷| 亚洲女同ⅹxx女同tv| 久久综合网色—综合色88| 91原创在线视频| 精品亚洲porn| 偷拍一区二区三区四区| 国产精品久久久久9999吃药| 久久综合九色综合97婷婷| 欧美日韩三级视频| 91色.com| 91香蕉视频污| 成年人国产精品| 成人免费毛片高清视频| 国内精品嫩模私拍在线| 久久精品国产澳门| 麻豆国产91在线播放| 精品一区二区在线看| 黄页视频在线91| 国产一区二区视频在线| 激情综合五月婷婷| 国产麻豆一精品一av一免费| 国产黄人亚洲片| 福利一区二区在线| www.日本不卡| 欧美一区午夜视频在线观看| 91精品国产一区二区三区| 欧美大片一区二区| 精品国产免费视频| 精品国精品国产| 中文字幕第一区综合| 亚洲欧美日韩综合aⅴ视频| 中文字幕欧美激情一区| 视频一区在线播放| 国产91精品在线观看| 欧美色视频一区| 精品蜜桃在线看| 亚洲一区二区三区中文字幕| 美国三级日本三级久久99| 国产成人福利片| 欧美揉bbbbb揉bbbbb| 欧洲一区在线观看| 欧美日韩在线电影| 中文av一区特黄| 美女mm1313爽爽久久久蜜臀| 日本在线播放一区二区三区| 国产福利精品一区二区| 91极品视觉盛宴| 国产精品久久久久久久岛一牛影视| 亚洲大片一区二区三区| 国产精品一二三四五| 欧美久久一区二区| 亚洲视频你懂的| 99视频在线观看一区三区| 久久免费美女视频| 精品一区二区三区在线观看 | 国产丝袜美腿一区二区三区| 麻豆成人综合网| www国产精品av| 黑人巨大精品欧美黑白配亚洲| 91麻豆精品国产91久久久更新时间| 亚洲综合激情另类小说区| 91免费看视频| 一级中文字幕一区二区| 欧美性猛交xxxx黑人交| 一区二区欧美国产| 色婷婷综合中文久久一本| 亚洲香蕉伊在人在线观| 欧美午夜片在线看| 国产在线乱码一区二区三区| 久久香蕉国产线看观看99| 高清shemale亚洲人妖| 亚洲美女视频在线观看| 欧美一卡2卡3卡4卡| av资源网一区| 看片的网站亚洲| 亚洲三级小视频| 日韩欧美一二区| 99精品视频在线播放观看| 亚洲成人综合网站| 欧美激情综合五月色丁香 | 韩国av一区二区三区四区| 国产片一区二区三区| 欧美精品在欧美一区二区少妇| 国产夫妻精品视频| 午夜精品aaa| 中文字幕一区二区三区在线播放 | 99免费精品视频| 精品在线播放免费| 婷婷久久综合九色综合绿巨人 | 亚洲视频综合在线| 久久久精品黄色| 欧美一区二区精品在线| 日本高清不卡一区| 99久久久免费精品国产一区二区| 久久国产精品99精品国产 | 国产精品久久久久9999吃药| 91精品国产福利| 精品国产伦一区二区三区观看体验 | 欧美日韩专区在线| 色综合一个色综合亚洲| 色婷婷亚洲精品| 色播五月激情综合网| 欧美性色综合网| 色婷婷综合久久久| 5月丁香婷婷综合| 欧美成人午夜电影| 久久这里只有精品视频网| 久久五月婷婷丁香社区| 中文字幕五月欧美| 亚洲人成人一区二区在线观看| 亚洲日本韩国一区| 午夜精品视频一区| 美女视频第一区二区三区免费观看网站| 爽好久久久欧美精品| 韩国av一区二区| 94-欧美-setu| 777亚洲妇女| 国产精品超碰97尤物18| 《视频一区视频二区| 日韩电影免费一区| 成人sese在线| 在线不卡欧美精品一区二区三区| 精品国产乱码久久久久久闺蜜| 国产精品亲子伦对白| 午夜激情一区二区| jvid福利写真一区二区三区| 欧美色欧美亚洲另类二区| 精品少妇一区二区三区在线视频| 欧美激情一区二区三区四区| 亚洲大片一区二区三区| 色欧美片视频在线观看| 久久青草国产手机看片福利盒子 | 欧美激情一区二区三区在线| 男男视频亚洲欧美| 欧美性大战xxxxx久久久| 国产精品高潮呻吟| 精品一区二区三区免费毛片爱| 欧美色图12p| 亚洲成人手机在线| 欧美视频在线播放| 亚洲综合小说图片| 欧美综合一区二区三区| 1024成人网| 91福利精品视频| 亚洲第一福利一区| 7777精品伊人久久久大香线蕉完整版 | 国产精品无遮挡| 国产揄拍国内精品对白| 欧美va亚洲va国产综合| 蜜臀av一区二区| 国产人成亚洲第一网站在线播放 | 中文字幕一区二区三区精华液| 国产一区二区福利| 欧美成人国产一区二区| 激情五月激情综合网| 中文字幕av不卡| 欧美日韩精品一区二区三区四区 | 九九精品视频在线看| 久久久精品综合| 91视频观看免费| 美女在线一区二区| 欧美韩日一区二区三区四区| 色八戒一区二区三区| 欧美96一区二区免费视频| 国产三级一区二区三区| 日本久久一区二区三区| 蜜桃久久久久久久| 亚洲精品欧美激情| 国产女主播一区| 欧美一区二区三区思思人| 国产精品一线二线三线精华| 午夜国产不卡在线观看视频| 久久夜色精品国产噜噜av | 欧美日韩视频在线观看一区二区三区 | 日韩欧美一卡二卡| 88在线观看91蜜桃国自产| 91麻豆免费在线观看| 成人精品gif动图一区| 久久精品免费观看| 美女视频黄a大片欧美| 日韩不卡一区二区| 午夜欧美大尺度福利影院在线看| 一区二区三区精品视频在线| √…a在线天堂一区| 亚洲精品v日韩精品|