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

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

?? ltmain.sh

?? 這個是LINUX下的HFTP測試版本
?? SH
?? 第 1 頁 / 共 5 頁
字號:
repeat 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    # 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	# All platforms use -DPIC, to notify preprocessed assembler code.	command="$base_compile $srcfile $pic_flag -DPIC"      else	# Don't build PIC code	command="$base_compile $srcfile"      fi      if test "$build_old_libs" = yes; then	lo_libobj="$libobj"	dir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`	if test "X$dir" = "X$libobj"; then	  dir="$objdir"	else	  dir="$dir/$objdir"	fi	libobj="$dir/"`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`	if test -d "$dir"; then	  $show "$rm $libobj"	  $run $rm $libobj	else	  $show "$mkdir $dir"	  $run $mkdir $dir	  status=$?	  if test $status -ne 0 && test ! -d $dir; then	    exit $status	  fi	fi      fi      if test "$compiler_o_lo" = yes; then	output_obj="$libobj"	command="$command -o $output_obj"      elif test "$compiler_c_o" = yes; then	output_obj="$obj"	command="$command -o $output_obj"      fi      $run $rm "$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 x"$output_obj" != x"$libobj"; then	$show "$mv $output_obj $libobj"	if $run $mv $output_obj $libobj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # If we have no pic_flag, then copy the object into place and finish.      if (test -z "$pic_flag" || test "$pic_mode" != default) &&	 test "$build_old_libs" = yes; then	# Rename the .lo from within objdir to obj	if test -f $obj; then	  $show $rm $obj	  $run $rm $obj	fi	$show "$mv $libobj $obj"	if $run $mv $libobj $obj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi	xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`	if test "X$xdir" = "X$obj"; then	  xdir="."	else	  xdir="$xdir"	fi	baseobj=`$echo "X$obj" | $Xsed -e "s%.*/%%"`	libobj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`	# Now arrange that obj and lo_libobj become the same file	$show "(cd $xdir && $LN_S $baseobj $libobj)"	if $run eval '(cd $xdir && $LN_S $baseobj $libobj)'; then	  # Unlock the critical section if it was locked	  if test "$need_locks" != no; then	    $run $rm "$lockfile"	  fi	  exit 0	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi      # Allow error messages only from the first compilation.      suppress_output=' >/dev/null 2>&1'    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	# All platforms use -DPIC, to notify preprocessed assembler code.	command="$base_compile $srcfile $pic_flag -DPIC"      fi      if test "$compiler_c_o" = yes; then	command="$command -o $obj"	output_obj="$obj"      fi      # Suppress compiler output if we already did a PIC compilation.      command="$command$suppress_output"      $run $rm "$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 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      # Create an invalid libtool object if no PIC, so that we do not      # accidentally link it into a program.      if test "$build_libtool_libs" != yes; then	$show "echo timestamp > $libobj"	$run eval "echo timestamp > \$libobj" || exit $?      else	# Move the .lo from within objdir	$show "$mv $libobj $lo_libobj"	if $run $mv $libobj $lo_libobj; then :	else	  error=$?	  $run $rm $removelist	  exit $error	fi      fi    fi    # 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 invokation.      # 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"    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`    avoid_version=no    dlfiles=    dlprefiles=    dlself=no    export_dynamic=no    export_symbols=    export_symbols_regex=    generated=    libobjs=    ltlibs=    module=no    no_install=no    objs=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    # 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"      # 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 1	  fi	  prev=	  continue	  ;;	expsyms_regex)	  export_symbols_regex="$arg"	  prev=	  continue	  ;;	release)	  release="-$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 1	    ;;	  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	  ;;	*)	  eval "$prev=\"\$arg\""	  prev=	  continue	  ;;	esac      fi # test -n $prev      prevarg="$arg"      case $arg in      -all-static)	if test -n "$link_static_flag"; then	  compile_command="$compile_command $link_static_flag"	  finalize_command="$finalize_command $link_static_flag"	fi	continue	;;      -allow-undefined)	# FIXME: remove this flag sometime in the future.	$echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2	continue	;;      -avoid-version)	avoid_version=yes	continue	;;      -dlopen)	prev=dlfiles	continue	;;      -dlpreopen)	prev=dlprefiles	continue	;;      -export-dynamic)	export_dynamic=yes	continue	;;      -export-symbols | -export-symbols-regex)	if test -n "$export_symbols" || test -n "$export_symbols_regex"; then	  $echo "$modename: more than one -exported-symbols argument is not allowed"	  exit 1	fi	if test "X$arg" = "X-export-symbols"; then	  prev=expsyms	else	  prev=expsyms_regex	fi	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*)	  compile_command="$compile_command $arg"	  finalize_command="$finalize_command $arg"	  ;;	esac	continue	;;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一区一区三区| 亚洲国产成人av网| 丁香啪啪综合成人亚洲小说| 亚洲一区免费在线观看| 日本高清免费不卡视频| 亚洲乱码国产乱码精品精98午夜| 色婷婷亚洲精品| 亚洲成人一区在线| 日韩欧美精品三级| 国产高清精品久久久久| 欧美激情一区三区| 在线中文字幕不卡| 免费人成黄页网站在线一区二区| 久久欧美一区二区| 91在线国产福利| 日韩精品视频网| 国产亚洲污的网站| 色综合咪咪久久| 日韩黄色小视频| 国产精品少妇自拍| 欧美影院一区二区| 国产一区二区网址| 亚洲综合999| 精品电影一区二区三区 | 91福利区一区二区三区| 日韩主播视频在线| 欧美激情一二三区| 337p亚洲精品色噜噜| 国产成人亚洲精品青草天美 | 不卡免费追剧大全电视剧网站| 亚洲丝袜美腿综合| 91精品婷婷国产综合久久竹菊| 国产一区二区导航在线播放| 亚洲欧美另类在线| 日韩精品一区二区三区蜜臀| 91一区一区三区| 精品一区二区三区香蕉蜜桃 | 日韩欧美视频在线| 91色九色蝌蚪| 国产呦萝稀缺另类资源| 亚洲午夜电影在线观看| 国产婷婷色一区二区三区在线| 欧美伦理影视网| av电影在线观看完整版一区二区| 免费一级片91| 一区二区三区精品久久久| 久久久久久久免费视频了| 精品视频999| 99麻豆久久久国产精品免费| 精品一区免费av| 亚洲国产乱码最新视频| 中文字幕国产精品一区二区| 日韩欧美精品在线| 欧美日本一区二区在线观看| 99国产一区二区三精品乱码| 国产在线不卡一区| 青青草原综合久久大伊人精品| 亚洲欧美激情视频在线观看一区二区三区 | 亚洲特黄一级片| 久久精品免视看| 日韩欧美激情在线| 91精品国产一区二区三区香蕉| 在线观看日韩电影| 99久久国产免费看| thepron国产精品| 国产精品18久久久久久vr| 人人狠狠综合久久亚洲| 亚洲国产日韩在线一区模特| 亚洲天堂成人网| 亚洲欧洲美洲综合色网| 国产欧美精品一区二区色综合 | 天使萌一区二区三区免费观看| 一区二区三区四区高清精品免费观看 | 欧美艳星brazzers| 色成人在线视频| 日本韩国一区二区| 在线观看国产91| 欧美影院一区二区三区| 欧美日韩在线播放一区| 欧美性生活影院| 欧美色倩网站大全免费| 欧美久久久影院| 6080亚洲精品一区二区| 欧美高清视频一二三区| 欧美二区三区91| 日韩三级视频在线看| 日韩手机在线导航| 2023国产精品自拍| 日本一区二区视频在线观看| 中文字幕av一区二区三区高| 成人欧美一区二区三区白人 | 91精品国产品国语在线不卡| 91精品国产综合久久福利软件| 日韩亚洲电影在线| 久久久久久久久久美女| 国产欧美一区二区精品秋霞影院| 国产精品乱码人人做人人爱| 亚洲精品欧美激情| 丝瓜av网站精品一区二区| 毛片av一区二区三区| 国产麻豆一精品一av一免费| 成人涩涩免费视频| 色婷婷久久一区二区三区麻豆| 欧美性做爰猛烈叫床潮| 91精品在线一区二区| 精品精品国产高清a毛片牛牛| 国产日韩精品视频一区| 综合欧美亚洲日本| 三级影片在线观看欧美日韩一区二区| 美女视频免费一区| 成人在线视频一区| 欧美影视一区二区三区| 日韩美女视频在线| 中文字幕欧美激情| 午夜不卡av在线| 国产精品羞羞答答xxdd| 91极品美女在线| 精品人在线二区三区| 综合久久国产九一剧情麻豆| 亚洲成人免费av| 国产伦精品一区二区三区免费| 一本一本久久a久久精品综合麻豆| 这里是久久伊人| 日本一二三四高清不卡| 亚洲成av人片观看| 国产91精品精华液一区二区三区| 在线视频你懂得一区二区三区| 日韩欧美国产成人一区二区| 中文字幕一区二区三区蜜月| 免费精品视频在线| 91一区二区在线| 久久九九99视频| 日韩高清在线观看| 99视频精品免费视频| 日韩一级高清毛片| 亚洲精品菠萝久久久久久久| 国产一区二区三区在线观看免费视频| 91成人在线免费观看| 国产精品三级av| 久久精品国产一区二区三区免费看| 91麻豆高清视频| 国产女主播在线一区二区| 男人的天堂亚洲一区| 在线一区二区视频| 国产精品的网站| 国产在线不卡一卡二卡三卡四卡| 51久久夜色精品国产麻豆| 亚洲乱码国产乱码精品精的特点| 国产成人精品免费| 欧美精品一区二区三区四区| 午夜精品aaa| 欧美亚洲一区二区在线| 中文字幕亚洲综合久久菠萝蜜| 久久99精品网久久| 欧美一卡二卡在线| 日韩黄色免费网站| 欧洲亚洲国产日韩| 亚洲与欧洲av电影| 日本久久电影网| 日韩毛片在线免费观看| 色综合天天天天做夜夜夜夜做| 国产精品久久毛片| 成人夜色视频网站在线观看| 国产无一区二区| 成人一二三区视频| 最新国产の精品合集bt伙计| 国产成人精品亚洲日本在线桃色| 国产日韩精品视频一区| 成人午夜视频网站| 亚洲图片另类小说| 色狠狠桃花综合| 天天影视涩香欲综合网| 欧美精品日韩精品| 免费美女久久99| 久久天堂av综合合色蜜桃网| 国产成人亚洲综合色影视| 国产精品免费人成网站| 99热在这里有精品免费| 亚洲卡通欧美制服中文| 欧美视频在线观看一区二区| 五月综合激情婷婷六月色窝| 成人免费看黄yyy456| 欧美极品美女视频| 亚洲国产美女搞黄色| 91精品欧美福利在线观看| 亚洲成人av福利| 欧美成人一区二区三区| 日本欧美一区二区| 日韩欧美的一区二区| 久久99国产精品免费| 日韩免费视频线观看| 日本不卡在线视频| 在线播放国产精品二区一二区四区 | 亚洲视频精选在线| 色综合一区二区| 亚洲午夜一区二区| 久久综合九色欧美综合狠狠| 国产精品一二三在| 国产欧美一区二区精品婷婷| 欧美最猛黑人xxxxx猛交|