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

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

?? libtool

?? oracle引用庫
??
?? 第 1 頁 / 共 5 頁
字號:
	-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 1  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=    lastarg=    srcfile="$nonopt"    suppress_output=    user_target=no    for arg    do      # Accept any command-line options.      case "$arg" in      -o)	if test "$user_target" != "no"; then	  $echo "$modename: you cannot specify \`-o' more than once" 1>&2	  exit 1	fi	user_target=next	;;      -static)	build_old_libs=yes	continue	;;      esac      case "$user_target" in      next)	# The next one is the -o target name	user_target=yes	continue	;;      yes)	# We got the output file	user_target=set	libobj="$arg"	continue	;;      esac      # Accept the current argument as the source file.      lastarg="$srcfile"      srcfile="$arg"      # Aesthetically quote the previous argument.      # Backslashify any backslashes, double quotes, and dollar signs.      # These are the only characters that are still specially      # interpreted inside of double-quoted scrings.      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`      # Double-quote args containing other shell metacharacters.      # Many Bourne shells cannot handle close brackets correctly in scan      # sets, so we specify it separately.      case "$lastarg" in      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)	lastarg="\"$lastarg\""	;;      esac      # Add the previous argument to base_compile.      if test -z "$base_compile"; then	base_compile="$lastarg"      else	base_compile="$base_compile $lastarg"      fi    done    case "$user_target" in    set)      ;;    no)      # Get the name of the library object.      libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`      ;;    *)      $echo "$modename: you must specify a target with \`-o'" 1>&2      exit 1      ;;    esac    # Recognize several different file suffixes.    # If the user specifies -o file.o, it is replaced with file.lo    xform='[cCFSfmso]'    case "$libobj" in    *.ada) xform=ada ;;    *.adb) xform=adb ;;    *.ads) xform=ads ;;    *.asm) xform=asm ;;    *.c++) xform=c++ ;;    *.cc) xform=cc ;;    *.cpp) xform=cpp ;;    *.cxx) xform=cxx ;;    *.f90) xform=f90 ;;    *.for) xform=for ;;    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    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 $libobj"    else      removelist="$libobj"    fi    $run $rm $removelist    trap "$run $rm $removelist; exit 1" 1 2 15    # 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      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 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    # 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      # All platforms use -DPIC, to notify preprocessed assembler code.      command="$base_compile $srcfile $pic_flag -DPIC"      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 "$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	  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      command="$base_compile $srcfile"      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      $rm "$lockfile"    fi    exit 0    ;;  # libtool link mode  link)    modename="$modename: link"    case "$host" in    *-*-cygwin* | *-*-mingw* | *-*-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      # This is a source program that is used to create dlls on Windows      # Don't remove nor modify the starting and closing comments# /* ltdll.c starts here */# #define WIN32_LEAN_AND_MEAN# #include <windows.h># #undef WIN32_LEAN_AND_MEAN# #include <stdio.h>## #ifndef __CYGWIN__# #  ifdef __CYGWIN32__# #    define __CYGWIN__ __CYGWIN32__# #  endif# #endif## #ifdef __cplusplus# extern "C" {# #endif# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);# #ifdef __cplusplus# }# #endif## #ifdef __CYGWIN__# #include <cygwin/cygwin_dll.h># DECLARE_CYGWIN_DLL( DllMain );# #endif# HINSTANCE __hDllInstance_base;## BOOL APIENTRY# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)# {#   __hDllInstance_base = hInst;#   return TRUE;# }# /* ltdll.c ends here */      # This is a source program that is used to create import libraries      # on Windows for dlls which lack them. Don't remove nor modify the      # starting and closing comments# /* impgen.c starts here */# /*   Copyright (C) 1999 Free Software Foundation, Inc.# #  This file is part of GNU libtool.# #  This program is free software; you can redistribute it and/or modify#  it under the terms of the GNU General Public License as published by#  the Free Software Foundation; either version 2 of the License, or#  (at your option) any later version.# #  This program is distributed in the hope that it will be useful,#  but WITHOUT ANY WARRANTY; without even the implied warranty of#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the#  GNU General Public License for more details.# #  You should have received a copy of the GNU General Public License#  along with this program; if not, write to the Free Software#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.#  */# #  #include <stdio.h>		/* for printf() */#  #include <unistd.h>		/* for open(), lseek(), read() */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品一区二区久久| 99综合电影在线视频| 国产精品一区二区三区乱码| 色综合久久久久久久| 日韩精品一区二区三区中文不卡| 国产精品久久福利| 精品一区二区三区在线观看| 日本久久电影网| 国产欧美一区二区精品性色超碰 | 精品国产制服丝袜高跟| 中文字幕一区二区在线播放| 久久 天天综合| 7777女厕盗摄久久久| 亚洲黄色av一区| 成人午夜精品一区二区三区| 日韩欧美中文字幕公布| 亚洲大片一区二区三区| 一本色道久久综合狠狠躁的推荐| 久久―日本道色综合久久| 久久国产福利国产秒拍| 欧美欧美欧美欧美| 洋洋成人永久网站入口| 91在线视频观看| 中文字幕一区二区三区四区 | 亚洲第一av色| 色av一区二区| 一级女性全黄久久生活片免费| 成人免费观看av| 中文字幕一区二区三区不卡| 夫妻av一区二区| 欧美激情中文字幕| 成人av影视在线观看| 国产精品无人区| 99re热视频这里只精品 | 国产亚洲欧美日韩俺去了| 日本成人在线网站| 日韩免费观看高清完整版在线观看| 首页亚洲欧美制服丝腿| 日韩欧美中文字幕公布| 国产美女久久久久| 国产精品美日韩| 一本久久a久久免费精品不卡| 亚洲女厕所小便bbb| 欧美日韩精品专区| 天堂久久一区二区三区| 精品国产一区二区亚洲人成毛片| 国产美女主播视频一区| 国产精品麻豆久久久| 色婷婷久久久亚洲一区二区三区| 一区二区三区不卡视频在线观看| 欧美日韩一区国产| 免费高清不卡av| 久久精品人人做| 91麻豆免费看| 毛片基地黄久久久久久天堂| 日本一区二区免费在线| 91碰在线视频| 久久精品国产精品亚洲红杏| 欧美经典一区二区| 欧美日韩一区二区在线观看视频| 免费不卡在线视频| 国产精品久久久久影院色老大| 91福利视频网站| 精品无人码麻豆乱码1区2区| 亚洲日本在线观看| 精品国产凹凸成av人网站| 成人网页在线观看| 日本不卡中文字幕| 亚洲欧洲性图库| 精品欧美一区二区久久| 99riav一区二区三区| 久久成人久久鬼色| 亚洲在线免费播放| 国产欧美日产一区| 91麻豆精品国产综合久久久久久| 成人爽a毛片一区二区免费| 午夜精品久久久久久久| 国产精品丝袜91| 欧美一级搡bbbb搡bbbb| 91麻豆精品在线观看| 国产精品夜夜爽| 日本欧美在线观看| 亚洲亚洲精品在线观看| 国产精品美女久久久久久2018| 欧美一区二区三区在线看| 91看片淫黄大片一级在线观看| 久久爱另类一区二区小说| 亚洲图片有声小说| 最新国产の精品合集bt伙计| 26uuu成人网一区二区三区| 欧美伦理电影网| 91福利社在线观看| www.欧美日韩国产在线| 国内精品伊人久久久久影院对白| 午夜精品一区在线观看| 亚洲欧美激情视频在线观看一区二区三区| 欧美不卡视频一区| 欧美一级爆毛片| 欧美人伦禁忌dvd放荡欲情| 日本韩国一区二区三区| 成人网男人的天堂| 高清在线观看日韩| 国产精品538一区二区在线| 精品一区二区三区视频在线观看 | 成人av资源下载| 高清国产一区二区| 国产成人亚洲精品狼色在线 | 99精品欧美一区| 国产91精品在线观看| 国产成人免费视频网站| 国产精品综合av一区二区国产馆| 国产中文一区二区三区| 极品少妇xxxx精品少妇| 精品无人区卡一卡二卡三乱码免费卡| 日韩和欧美的一区| 日本免费新一区视频| 蜜桃视频在线观看一区二区| 麻豆91在线播放| 国内精品久久久久影院薰衣草 | 亚洲成人在线观看视频| 亚洲福利视频一区二区| 亚洲成av人在线观看| 婷婷国产在线综合| 蜜臀av性久久久久蜜臀aⅴ四虎 | 亚欧色一区w666天堂| 日韩电影在线一区| 精品一区二区三区在线观看| 国产乱淫av一区二区三区 | 欧美日韩大陆一区二区| 欧美一级日韩免费不卡| 久久久国产精华| 中文字幕亚洲一区二区av在线| 亚洲日本va午夜在线影院| 亚洲成人手机在线| 久久精品国产精品亚洲红杏| 国产高清不卡一区| 91成人免费在线| 欧美成人三级在线| 国产精品欧美经典| 亚洲图片欧美综合| 激情小说亚洲一区| 色综合久久久久综合| 日韩欧美视频在线| 国产精品福利一区| 亚洲成人手机在线| 国产不卡在线一区| 欧美精品自拍偷拍动漫精品| 精品乱码亚洲一区二区不卡| 中文字幕欧美日韩一区| 亚洲综合色成人| 国产乱一区二区| 欧美日韩国产高清一区二区| 久久你懂得1024| 亚洲国产精品天堂| 国产精品综合在线视频| 欧美日韩一卡二卡三卡| 欧美韩日一区二区三区四区| 亚洲成人三级小说| 成人精品电影在线观看| 56国语精品自产拍在线观看| 亚洲国产成人自拍| 久久激五月天综合精品| 在线观看欧美日本| 国产精品全国免费观看高清 | 亚洲福利国产精品| 丁香婷婷深情五月亚洲| 欧美一区二区三区啪啪| 一区二区三区在线看| 国产91精品一区二区麻豆网站 | 国内成人精品2018免费看| 91精彩视频在线观看| 国产亚洲成aⅴ人片在线观看| 一区二区三区国产精华| 国产91在线观看| 欧美精品一区二区在线观看| 日韩国产精品久久| 欧美亚洲自拍偷拍| 国产精品国产三级国产a| 国产一区二区精品久久| 精品久久久久av影院| 亚洲成人一区二区在线观看| 色婷婷av久久久久久久| 国产精品色在线观看| 国产成人免费网站| 久久久亚洲国产美女国产盗摄| 蜜桃av一区二区在线观看| 精品视频资源站| 亚洲图片一区二区| 欧美亚洲禁片免费| 亚洲欧洲日韩女同| 成人动漫av在线| 国产精品免费视频观看| 国产成人在线免费观看| 久久久久久麻豆| 国产一区二区中文字幕| 欧美xxx久久| 国产一区二区三区综合| 久久久天堂av| 国产91在线观看| 亚洲色图都市小说|