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

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

?? ltmain.sh

?? 語音壓縮和解壓縮源代碼。
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    # 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 1      ;;    esac    # Infer tagged configuration to use if any are available and    # if one wasn't chosen via the "--tag" command line option.    # Only attempt this if the compiler in the base compile    # command doesn't match the default compiler.    if test -n "$available_tags" && test -z "$tagname"; then      case $base_compile in      # Blanks in the command may have been stripped by the calling shell,      # but not from the CC environment variable when configure was run.      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "*) ;;      # Blanks at the start of $base_compile will cause this to fail      # if we don't check for them as well.      *)	for z in $available_tags; do	  if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$0" > /dev/null; then	    # Evaluate the configuration.	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $0`"	    case "$base_compile " in	    "$CC "* | " $CC "* | "`$echo $CC` "* | " `$echo $CC` "*)	      # The compiler in the base compile command matches	      # the one in the tagged configuration.	      # Assume this is the tagged configuration we want.	      tagname=$z	      break	      ;;	    esac	  fi	done	# If $tagname still isn't set, then no tagged configuration	# was found and let the user know that the "--tag" command	# line option must be used.	if test -z "$tagname"; then	  $echo "$modename: unable to infer tagged configuration"	  $echo "$modename: specify a tag with \`--tag'" 1>&2	  exit 1#        else#          $echo "$modename: using $tagname tagged configuration"	fi	;;      esac    fi    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 1    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 1" 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 1" 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 "$0" "$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 1      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 1      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 1      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.      suppress_output=' >/dev/null 2>&1'    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 1      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 1      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 0    ;;  # 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=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    vinfo_number=no    # 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"      base_compile="$base_compile $arg"      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"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
波多野结衣的一区二区三区| 久久久99免费| 精品粉嫩超白一线天av| 中文字幕一区三区| av中文字幕在线不卡| 欧美日韩午夜在线视频| 中文字幕免费观看一区| 蜜臀av性久久久久蜜臀av麻豆 | 亚洲在线观看免费| 国产精品456| 欧美一级生活片| 亚洲一区二区三区四区五区黄| 国产xxx精品视频大全| 91精品国产欧美一区二区18| 亚洲免费色视频| 成人av在线资源网站| 精品久久免费看| 欧美aaaaaa午夜精品| 欧美日本免费一区二区三区| 亚洲精品成a人| 色综合天天性综合| 国产精品美女久久久久久久 | 51久久夜色精品国产麻豆| 亚洲黄色录像片| 91在线免费视频观看| 国产日韩欧美麻豆| 国产成人精品影视| 国产欧美一区二区三区沐欲| 国产一区二区精品久久99| 日韩欧美国产综合在线一区二区三区| 一区2区3区在线看| 欧美在线观看视频一区二区三区| 日本欧美韩国一区三区| 欧美精品久久天天躁| 日日夜夜精品视频天天综合网| 在线视频欧美精品| 午夜欧美大尺度福利影院在线看 | 欧美天天综合网| 亚洲综合丝袜美腿| 欧美三级韩国三级日本一级| 亚洲成人精品一区二区| 欧美日韩二区三区| 青青草国产精品亚洲专区无| 欧美一区欧美二区| 国产精品18久久久久久久网站| 国产视频一区二区在线观看| 成人精品免费视频| 一区二区三区在线视频免费观看| 精品视频一区二区不卡| 日本不卡视频在线观看| 精品欧美一区二区在线观看| 国产精品一区二区x88av| 国产精品国产三级国产普通话99 | 国产精品毛片大码女人| 成年人国产精品| 夜夜爽夜夜爽精品视频| 欧美一区二区视频免费观看| 国产精品69毛片高清亚洲| 亚洲精品写真福利| 日韩精品一区二区在线观看| 国产高清久久久久| 亚洲资源中文字幕| 精品粉嫩aⅴ一区二区三区四区| 国产91在线观看丝袜| 亚洲一区二区美女| 久久伊人蜜桃av一区二区| 99久久久无码国产精品| 性做久久久久久| 久久精品夜色噜噜亚洲aⅴ| 91麻豆国产福利精品| 老司机午夜精品| 亚洲欧洲中文日韩久久av乱码| 欧美日韩视频在线一区二区| 狠狠色综合日日| 亚洲成人一二三| 日本一区二区免费在线| 欧美日本视频在线| 成人短视频下载| 蜜桃一区二区三区在线观看| 亚洲色图制服丝袜| 久久美女艺术照精彩视频福利播放| 色综合天天天天做夜夜夜夜做| 六月丁香婷婷色狠狠久久| 亚洲精选一二三| 中文字幕欧美日韩一区| 欧美一级一级性生活免费录像| 91日韩在线专区| 风间由美一区二区三区在线观看 | 日韩精品每日更新| 亚洲欧洲韩国日本视频| 久久影院午夜论| 欧美一区二区福利视频| 色婷婷精品久久二区二区蜜臀av| 国产一区二区三区久久久| 日本视频一区二区| 亚洲综合色自拍一区| 国产精品免费观看视频| 久久久久国产精品免费免费搜索| 欧美日韩国产bt| 91福利视频久久久久| 成人avav影音| 大白屁股一区二区视频| 国产麻豆成人传媒免费观看| 麻豆传媒一区二区三区| 调教+趴+乳夹+国产+精品| 一区二区三区欧美| 亚洲在线成人精品| 亚洲在线视频免费观看| 亚洲老司机在线| 一区二区三区四区高清精品免费观看| 中文字幕乱码日本亚洲一区二区| 久久网站最新地址| 2020国产精品| 国产亚洲成aⅴ人片在线观看| 精品女同一区二区| 久久综合色婷婷| 久久只精品国产| 欧美国产一区二区| 国产精品萝li| 亚洲男人的天堂av| 粉嫩av亚洲一区二区图片| 狠狠久久亚洲欧美| 国产电影精品久久禁18| 高清国产一区二区| 99国产精品国产精品久久| 91免费国产在线| 欧美色男人天堂| 91精品国产91久久久久久一区二区 | 久久精品无码一区二区三区| 久久综合国产精品| 中文字幕不卡一区| 亚洲视频在线一区观看| 亚洲一区二区影院| 日本欧美韩国一区三区| 国产一区二区不卡老阿姨| 床上的激情91.| 欧美私模裸体表演在线观看| 9191精品国产综合久久久久久| 精品国产网站在线观看| 欧美国产激情二区三区| 一区二区高清视频在线观看| 日本欧美久久久久免费播放网| 国产毛片精品视频| 一本到不卡免费一区二区| 欧美日韩你懂的| 欧美精品一区二区三区四区 | 精品日韩欧美一区二区| 国产清纯在线一区二区www| 日韩码欧中文字| 日本中文字幕一区| 成人黄色国产精品网站大全在线免费观看 | 岛国精品在线播放| 91精品办公室少妇高潮对白| 日韩欧美一区二区在线视频| 国产精品美女一区二区三区| 亚洲第一二三四区| 丁香激情综合国产| 欧美疯狂做受xxxx富婆| 国产精品萝li| 另类小说一区二区三区| 色av成人天堂桃色av| 精品国产污污免费网站入口| 一区二区三区在线观看欧美| 国模一区二区三区白浆| 欧美无乱码久久久免费午夜一区 | 国产精品美女久久久久aⅴ| 丝袜美腿亚洲一区二区图片| 国产91精品一区二区| 91精品国产一区二区三区 | 婷婷六月综合亚洲| 99国产精品国产精品毛片| 精品国产三级电影在线观看| 怡红院av一区二区三区| 国产电影精品久久禁18| 日韩女优电影在线观看| 国产黑丝在线一区二区三区| 欧美日韩三级一区二区| 国产精品少妇自拍| 国产精品亚洲综合一区在线观看| 欧美高清视频一二三区 | 欧美成人一区二区三区在线观看| 亚洲素人一区二区| 国产成人综合在线观看| 日韩美女一区二区三区四区| 日日噜噜夜夜狠狠视频欧美人 | 欧美日韩一级片网站| 亚洲色图欧美偷拍| 成人v精品蜜桃久久一区| 国产日韩av一区二区| 国产综合色精品一区二区三区| 91精品久久久久久久91蜜桃 | 欧美日韩精品一区二区三区| 最新不卡av在线| av中文字幕在线不卡| 国产精品久久久久久户外露出| 福利一区二区在线| 欧美国产激情一区二区三区蜜月| 国产一区二区在线观看免费| 精品国产91久久久久久久妲己| 久久精品国产**网站演员|