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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? ltmain.sh

?? 股票分析源代碼
?? SH
?? 第 1 頁 / 共 5 頁
字號(hào):
    ${SED} -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $progpath    # Now print the configurations for the tags.    for tagname in $taglist; do      ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"    done    exit $?    ;;  --debug)    $echo "$progname: enabling shell trace mode"    set -x    preserve_args="$preserve_args $arg"    ;;  --dry-run | -n)    run=:    ;;  --features)    $echo "host: $host"    if test "$build_libtool_libs" = yes; then      $echo "enable shared libraries"    else      $echo "disable shared libraries"    fi    if test "$build_old_libs" = yes; then      $echo "enable static libraries"    else      $echo "disable static libraries"    fi    exit $?    ;;  --finish) mode="finish" ;;  --mode) prevopt="--mode" prev=mode ;;  --mode=*) mode="$optarg" ;;  --preserve-dup-deps) duplicate_deps="yes" ;;  --quiet | --silent)    show=:    preserve_args="$preserve_args $arg"    ;;  --tag)    prevopt="--tag"    prev=tag    preserve_args="$preserve_args --tag"    ;;  --tag=*)    set tag "$optarg" ${1+"$@"}    shift    prev=tag    preserve_args="$preserve_args --tag"    ;;  -dlopen)    prevopt="-dlopen"    prev=execute_dlfiles    ;;  -*)    $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_FAILUREficase $disable_libs inno)   ;;shared)  build_libtool_libs=no  build_old_libs=yes  ;;static)  build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`  ;;esac# 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, 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 ;;    *.[fF][09]?) xform=[fF][09]. ;;    *.for) xform=for ;;    *.java) xform=java ;;    *.obj) xform=obj ;;    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 :

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品在线观看一区二区| 欧美三区在线观看| 偷拍日韩校园综合在线| 久久美女艺术照精彩视频福利播放| a级精品国产片在线观看| 日韩国产在线观看一区| 国产精品久久久久久久蜜臀| 亚洲三级免费电影| 国产亚洲精品超碰| 欧美在线制服丝袜| 国产高清精品在线| 日本一道高清亚洲日美韩| 国产精品美女久久久久久| 久久久久久久一区| 777色狠狠一区二区三区| 91福利在线播放| 99久久精品情趣| 国产美女精品在线| 老汉av免费一区二区三区| 午夜欧美大尺度福利影院在线看| 国产精品三级av| 国产视频一区二区在线| 日韩一级视频免费观看在线| 欧美日韩一区二区电影| 欧美综合亚洲图片综合区| 国产aⅴ综合色| 国产乱人伦偷精品视频免下载| 日本人妖一区二区| 日韩二区三区在线观看| 亚洲电影在线免费观看| 一区二区三区四区高清精品免费观看| 国产精品乱码妇女bbbb| 久久精品欧美一区二区三区麻豆| 精品国产凹凸成av人导航| 欧美电影免费观看高清完整版在| 91精品国产综合久久小美女| 精品视频一区二区不卡| 欧美巨大另类极品videosbest | 亚洲一二三区在线观看| 亚洲精品视频在线观看网站| 中文字幕一区二区三区精华液| 国产精品久久久久一区二区三区共| 26uuu国产电影一区二区| 精品第一国产综合精品aⅴ| 精品人在线二区三区| 精品日韩一区二区三区免费视频| 日韩视频一区二区| www亚洲一区| 久久久久综合网| 国产亚洲女人久久久久毛片| 国产欧美视频一区二区三区| 国产日产欧产精品推荐色| 中文字幕国产一区二区| 国产精品你懂的在线欣赏| 亚洲欧洲三级电影| 夜夜揉揉日日人人青青一国产精品| 亚洲曰韩产成在线| 日本成人在线电影网| 国产永久精品大片wwwapp| 国产成人免费视频| 91无套直看片红桃| 欧美日韩国产美| 久久先锋资源网| 中文字幕欧美一区| 亚洲va天堂va国产va久| 麻豆视频观看网址久久| 国产成人免费高清| 色综合欧美在线视频区| 欧美精品一级二级| 久久精品欧美日韩精品| 一区二区三区在线视频免费观看| 五月婷婷欧美视频| 国产精品性做久久久久久| 91亚洲精品一区二区乱码| 欧美群妇大交群中文字幕| 久久久一区二区| 亚洲精品成a人| 看片的网站亚洲| 不卡视频在线看| 欧美一级久久久久久久大片| 国产欧美日韩视频一区二区| 一区二区三区.www| 久久97超碰国产精品超碰| jlzzjlzz国产精品久久| 日韩一区二区麻豆国产| 国产精品福利在线播放| 日本午夜一本久久久综合| 成人伦理片在线| 日韩一区二区高清| 亚洲免费色视频| 国产一区在线不卡| 欧美视频一区二区在线观看| 久久久亚洲精华液精华液精华液| 一区二区国产盗摄色噜噜| 国产一区二区免费看| 欧美三级欧美一级| 中文字幕在线免费不卡| 美国av一区二区| 欧美性猛交xxxxxx富婆| 国产精品国产三级国产有无不卡| 天天色天天爱天天射综合| 99国内精品久久| 久久久久成人黄色影片| 七七婷婷婷婷精品国产| 欧美在线你懂得| 国产精品久久午夜夜伦鲁鲁| 久久精品国产99| 欧美视频日韩视频在线观看| 亚洲欧洲一区二区在线播放| 国精产品一区一区三区mba视频| 欧美在线观看一二区| 国产精品久久久久永久免费观看 | 日本中文字幕一区二区视频| 色哟哟精品一区| 国产精品美女www爽爽爽| 蜜臀久久99精品久久久久宅男| 色天使久久综合网天天| 国产片一区二区| 国产一区二区三区av电影| 日韩欧美国产精品| 日本欧美大码aⅴ在线播放| 欧亚洲嫩模精品一区三区| 亚洲欧美电影一区二区| 成人动漫一区二区在线| 亚洲国产精华液网站w| 国产高清成人在线| 亚洲精品在线免费观看视频| 免费成人深夜小野草| 911精品国产一区二区在线| 亚洲第一久久影院| 91视频com| 亚洲精品国产成人久久av盗摄| 91在线丨porny丨国产| 中文字幕一区日韩精品欧美| jiyouzz国产精品久久| 1024亚洲合集| 色婷婷久久久久swag精品| 亚洲欧美日本韩国| 色就色 综合激情| 亚洲九九爱视频| 欧美在线综合视频| 视频一区在线播放| 日韩欧美国产一区二区三区 | 国产成人av网站| 国产欧美日韩精品a在线观看| 国产精品1024| 国产精品高潮呻吟| 在线一区二区三区四区五区| 亚洲美女一区二区三区| 欧美视频在线观看一区| 蜜臀av一级做a爰片久久| 精品免费日韩av| 从欧美一区二区三区| 亚洲天堂免费看| 日本高清不卡在线观看| 亚洲18色成人| 日韩精品一区二区三区在线观看 | 久久99精品久久久久| 久久久99精品久久| 99国产精品国产精品久久| 一区二区不卡在线播放 | 亚洲视频每日更新| 欧美性色黄大片| 日本视频在线一区| 久久精品欧美日韩精品| 色噜噜偷拍精品综合在线| 日本vs亚洲vs韩国一区三区二区| 精品国产一二三| 99这里都是精品| 视频一区视频二区中文字幕| 久久久久88色偷偷免费| 99国产精品久久久久久久久久| 天堂一区二区在线免费观看| 久久亚洲一级片| 欧美丝袜丝交足nylons图片| 国产在线精品不卡| 亚洲国产精品精华液网站| 日韩免费电影一区| av网站免费线看精品| 美腿丝袜亚洲色图| 日韩美女啊v在线免费观看| 91精品国产91久久久久久最新毛片 | 国产伦精一区二区三区| 亚洲欧美偷拍卡通变态| 精品国产一区二区精华 | 久久只精品国产| 91视频com| 国产另类ts人妖一区二区| 亚洲成av人片在线观看无码| 国产欧美精品区一区二区三区| 欧美美女直播网站| 成人一区二区三区视频| 日本特黄久久久高潮| 亚洲黄色免费网站| 日本一区二区三区久久久久久久久不 | 日韩免费在线观看| 在线观看av一区二区| 国产盗摄精品一区二区三区在线 | 丝袜脚交一区二区| 中文字幕制服丝袜一区二区三区|