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

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

?? ltmain.sh

?? libaal-1.0.5.tar.gz reiser4progs編譯時需要
?? SH
?? 第 1 頁 / 共 5 頁
字號:
    ;;  -*)    $echo "$modename: unrecognized option \`$arg'" 1>&2    $echo "$help" 1>&2    exit $EXIT_FAILURE    ;;  *)    nonopt="$arg"    break    ;;  esacdoneif test -n "$prevopt"; then  $echo "$modename: option \`$prevopt' requires an argument" 1>&2  $echo "$help" 1>&2  exit $EXIT_FAILUREfi# If this variable is set in any of the actions, the command in it# will be execed at the end.  This prevents here-documents from being# left over by shells.exec_cmd=if test -z "$show_help"; then  # Infer the operation mode.  if test -z "$mode"; then    $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2    $echo "*** Future versions of Libtool will require -mode=MODE be specified." 1>&2    case $nonopt in    *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)      mode=link      for arg      do	case $arg in	-c)	   mode=compile	   break	   ;;	esac      done      ;;    *db | *dbx | *strace | *truss)      mode=execute      ;;    *install*|cp|mv)      mode=install      ;;    *rm)      mode=uninstall      ;;    *)      # If we have no mode, but dlfiles were specified, then do execute mode.      test -n "$execute_dlfiles" && mode=execute      # Just use the default operation mode.      if test -z "$mode"; then	if test -n "$nonopt"; then	  $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2	else	  $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2	fi      fi      ;;    esac  fi  # Only execute mode is allowed to have -dlopen flags.  if test -n "$execute_dlfiles" && test "$mode" != execute; then    $echo "$modename: unrecognized option \`-dlopen'" 1>&2    $echo "$help" 1>&2    exit $EXIT_FAILURE  fi  # Change the help message to a mode-specific one.  generic_help="$help"  help="Try \`$modename --help --mode=$mode' for more information."  # These modes are in order of execution frequency so that they run quickly.  case $mode in  # libtool compile mode  compile)    modename="$modename: compile"    # Get the compilation command and the source file.    base_compile=    srcfile="$nonopt"  #  always keep a non-empty value in "srcfile"    suppress_opt=yes    suppress_output=    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, 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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区二区三区乱码在线| 日韩国产欧美视频| 一区二区三区国产精品| 久久精工是国产品牌吗| 色综合色狠狠综合色| 亚洲精品一区二区精华| 亚洲va欧美va人人爽午夜| 成人午夜av电影| 欧美不卡一区二区三区| 午夜精品久久久久久不卡8050| 豆国产96在线|亚洲| 欧美成人一区二区三区在线观看| 亚洲乱码国产乱码精品精小说| 国产精品亚洲一区二区三区妖精| 欧美日韩精品一区二区三区| 亚洲欧美一区二区久久| 国产91精品一区二区麻豆网站 | 日韩福利电影在线观看| 91亚洲精华国产精华精华液| 久久夜色精品国产噜噜av| 男女激情视频一区| 欧美三级电影一区| 亚洲一区二区偷拍精品| 日本二三区不卡| 成人欧美一区二区三区白人| www.色综合.com| 国产精品美女一区二区三区| 国产精品羞羞答答xxdd| 欧美电视剧免费观看| 免费在线观看视频一区| 91精品免费观看| 蜜桃在线一区二区三区| 日韩午夜在线播放| 国内外精品视频| 久久婷婷国产综合精品青草| 国产一区二区三区四| 久久综合色一综合色88| 国产精品一区在线观看乱码| 国产视频亚洲色图| 成人av午夜电影| 亚洲蜜桃精久久久久久久| 一本色道**综合亚洲精品蜜桃冫| 中文字幕日韩欧美一区二区三区| 成人a免费在线看| 亚洲欧美日韩系列| 国产午夜精品久久| 成人高清伦理免费影院在线观看| 中文字幕 久热精品 视频在线| 处破女av一区二区| 亚洲人成人一区二区在线观看 | 国产在线精品视频| 国产欧美视频一区二区| av亚洲精华国产精华| 一区二区三区在线视频观看58| 欧美日韩国产一二三| 精品在线亚洲视频| 成人欧美一区二区三区白人| 欧美性猛片xxxx免费看久爱| 日本不卡视频在线观看| 久久久久久亚洲综合影院红桃| a美女胸又www黄视频久久| 一区二区欧美精品| 欧美mv日韩mv| 一本大道久久a久久综合婷婷| 亚洲18色成人| 欧美国产精品一区| 欧美日韩国产影片| 国产精品2024| 亚洲成人av一区二区| 国产亚洲午夜高清国产拍精品| 91香蕉国产在线观看软件| 日韩 欧美一区二区三区| 国产欧美日韩久久| 欧美老女人在线| 成人av网址在线| 蜜臀av国产精品久久久久| 国产精品久久毛片| 日韩精品中文字幕一区二区三区 | 精品少妇一区二区三区在线播放 | 国产精品久线观看视频| 欧美日韩国产中文| 97久久超碰国产精品| 麻豆国产91在线播放| 一区二区三区高清| 国产欧美视频一区二区| 欧美一区国产二区| 91在线国产福利| 国产电影一区在线| 日韩av一二三| 一区二区成人在线| 欧美国产乱子伦| 精品电影一区二区| 欧美一区二区三区成人| 欧美性感一类影片在线播放| 成人av电影在线| 国产河南妇女毛片精品久久久| 日本中文字幕一区二区有限公司| 亚洲色图制服丝袜| 日本一区二区动态图| 精品国产一区二区三区忘忧草| 欧美日韩在线观看一区二区| 色综合久久久网| 成人18精品视频| 粉嫩高潮美女一区二区三区| 久久99久久99小草精品免视看| 亚洲动漫第一页| 亚洲成人av在线电影| 一区二区不卡在线播放| 亚洲激情图片小说视频| 亚洲欧美一区二区三区久本道91 | 亚洲欧美乱综合| 18欧美乱大交hd1984| 国产精品久久网站| 国产精品国产精品国产专区不蜜| 国产亚洲成年网址在线观看| 久久众筹精品私拍模特| 日韩欧美一区在线| 精品伦理精品一区| 久久综合色播五月| 久久精品亚洲一区二区三区浴池| 精品国产免费久久| 久久精品一区二区三区不卡| 国产日韩欧美高清| 国产精品女上位| 亚洲精品v日韩精品| 亚洲午夜一二三区视频| 日欧美一区二区| 老司机免费视频一区二区三区| 久久99精品久久只有精品| 久久99精品久久只有精品| 国产精品一区二区黑丝| 成人黄色国产精品网站大全在线免费观看| 丁香另类激情小说| 色一情一伦一子一伦一区| 欧美日韩精品一区二区| 日韩精品资源二区在线| 国产嫩草影院久久久久| 日韩理论电影院| 五月天视频一区| 国模一区二区三区白浆| 99久久久国产精品| 欧美三级在线看| 亚洲精品一区二区三区99| 国产精品欧美一级免费| 性做久久久久久久免费看| 免费的国产精品| gogo大胆日本视频一区| 欧美日韩一卡二卡三卡| 久久―日本道色综合久久| 综合婷婷亚洲小说| 视频一区欧美日韩| 国产精品一区二区在线看| 在线视频国产一区| 26uuu亚洲婷婷狠狠天堂| 亚洲丝袜美腿综合| 狠狠色综合色综合网络| 色94色欧美sute亚洲线路一久| 欧美电视剧在线看免费| 一区二区三区在线高清| 国产精一区二区三区| 欧美视频精品在线观看| 国产女同互慰高潮91漫画| 天堂成人免费av电影一区| a亚洲天堂av| 久久蜜桃av一区二区天堂 | 中文欧美字幕免费| 日本视频一区二区| 91免费在线看| 国产女同互慰高潮91漫画| 蜜桃精品在线观看| 欧美这里有精品| 中文字幕一区二区三| 九九九精品视频| 91精品欧美福利在线观看| 亚洲男人的天堂av| 国产很黄免费观看久久| 欧美一级免费大片| 亚洲成人高清在线| 91蜜桃婷婷狠狠久久综合9色| 国产亚洲一区二区三区四区| 日韩在线卡一卡二| 欧美影院午夜播放| 成人欧美一区二区三区小说| 国产成人精品影院| 26uuu亚洲| 精品在线播放免费| 日韩精品一区二区在线观看| 亚洲1区2区3区视频| 91久久国产综合久久| 亚洲图片另类小说| 99精品视频中文字幕| 国产精品久久久久久久久免费樱桃| 精一区二区三区| 精品欧美一区二区三区精品久久| 婷婷六月综合网| 欧美人妖巨大在线| 日韩精品每日更新| 欧美一区二区三区喷汁尤物| 日韩高清不卡一区二区三区| 欧美精品乱码久久久久久|