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

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

?? ltmain.sh

?? 一套linux下的C++開發庫
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	# Add in any libraries that this one depends upon.	compile_command="$compile_command$dependency_libs"	finalize_command="$finalize_command$dependency_libs"	continue	;;      # Some other compiler argument.      *)	# Unknown arguments in both finalize_command and compile_command need	# to be aesthetically quoted because they are evaled later.	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`	case "$arg" in	*[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*)	  arg="\"$arg\""	  ;;	esac	;;      esac      # Now actually substitute the argument into the commands.      if test -n "$arg"; then	compile_command="$compile_command $arg"	finalize_command="$finalize_command $arg"      fi    done    if test -n "$prev"; then      $echo "$modename: the \`$prevarg' option requires an argument" 1>&2      $echo "$help" 1>&2      exit 1    fi    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then      eval arg=\"$export_dynamic_flag_spec\"      compile_command="$compile_command $arg"      finalize_command="$finalize_command $arg"    fi    oldlibs=    # calculate the name of the file, without its directory    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`    libobjs_save="$libobjs"    case "$output" in    "")      $echo "$modename: you must specify an output file" 1>&2      $echo "$help" 1>&2      exit 1      ;;    *.a | *.lib)      if test -n "$link_against_libtool_libs"; then	$echo "$modename: error: cannot link libtool libraries into archives" 1>&2	exit 1      fi      if test -n "$deplibs"; then	$echo "$modename: warning: \`-l' and \`-L' are ignored for archives" 1>&2      fi      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then	$echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2      fi      if test -n "$rpath"; then	$echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2      fi      if test -n "$xrpath"; then	$echo "$modename: warning: \`-R' is ignored for archives" 1>&2      fi      if test -n "$vinfo"; then	$echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2      fi      if test -n "$release"; then	$echo "$modename: warning: \`-release' is ignored for archives" 1>&2      fi      if test -n "$export_symbols" || test -n "$export_symbols_regex"; then	$echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2      fi      # Now set the variables for building old libraries.      build_libtool_libs=no      oldlibs="$output"      ;;    *.la)      # Make sure we only generate libraries of the form `libNAME.la'.      case "$outputname" in      lib*)	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`	eval libname=\"$libname_spec\"	;;      *)	if test "$module" = no; then	  $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2	  $echo "$help" 1>&2	  exit 1	fi	if test "$need_lib_prefix" != no; then	  # Add the "lib" prefix for modules if required	  name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`	  eval libname=\"$libname_spec\"	else	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`	fi	;;      esac      output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`      if test "X$output_objdir" = "X$output"; then	output_objdir="$objdir"      else	output_objdir="$output_objdir/$objdir"      fi      if test -n "$objs"; then	$echo "$modename: cannot build libtool library \`$output' from non-libtool objects:$objs" 2>&1	exit 1      fi      # How the heck are we supposed to write a wrapper for a shared library?      if test -n "$link_against_libtool_libs"; then	 $echo "$modename: error: cannot link shared libraries into libtool libraries" 1>&2	 exit 1      fi      if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then	$echo "$modename: warning: \`-dlopen' is ignored for libtool libraries" 1>&2      fi      set dummy $rpath      if test $# -gt 2; then	$echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2      fi      install_libdir="$2"      oldlibs=      if test -z "$rpath"; then	if test "$build_libtool_libs" = yes; then	  # Building a libtool convenience library.	  libext=al	  oldlibs="$output_objdir/$libname.$libext $oldlibs"	  build_libtool_libs=convenience	  build_old_libs=yes	fi	dependency_libs="$deplibs"	if test -n "$vinfo"; then	  $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2	fi	if test -n "$release"; then	  $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2	fi      else	# Parse the version information argument.	IFS="${IFS= 	}"; save_ifs="$IFS"; IFS=':'	set dummy $vinfo 0 0 0	IFS="$save_ifs"	if test -n "$8"; then	  $echo "$modename: too many parameters to \`-version-info'" 1>&2	  $echo "$help" 1>&2	  exit 1	fi	current="$2"	revision="$3"	age="$4"	# Check that each of the things are valid numbers.	case "$current" in	0 | [1-9] | [1-9][0-9]*) ;;	*)	  $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2	  exit 1	  ;;	esac	case "$revision" in	0 | [1-9] | [1-9][0-9]*) ;;	*)	  $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2	  exit 1	  ;;	esac	case "$age" in	0 | [1-9] | [1-9][0-9]*) ;;	*)	  $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2	  exit 1	  ;;	esac	if test $age -gt $current; then	  $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2	  exit 1	fi	# Calculate the version variables.	major=	versuffix=	verstring=	case "$version_type" in	none) ;;	irix)	  major=`expr $current - $age + 1`	  versuffix="$major.$revision"	  verstring="sgi$major.$revision"	  # Add in all the interfaces that we are compatible with.	  loop=$revision	  while test $loop != 0; do	    iface=`expr $revision - $loop`	    loop=`expr $loop - 1`	    verstring="sgi$major.$iface:$verstring"	  done	  ;;	linux)	  major=.`expr $current - $age`	  versuffix="$major.$age.$revision"	  ;;	osf)	  major=`expr $current - $age`	  versuffix=".$current.$age.$revision"	  verstring="$current.$age.$revision"	  # Add in all the interfaces that we are compatible with.	  loop=$age	  while test $loop != 0; do	    iface=`expr $current - $loop`	    loop=`expr $loop - 1`	    verstring="$verstring:${iface}.0"	  done	  # Make executables depend on our current version.	  verstring="$verstring:${current}.0"	  ;;	sunos)	  major=".$current"	  versuffix=".$current.$revision"	  ;;	freebsd-aout)	  major=".$current"	  versuffix=".$current.$revision";	  ;;	freebsd-elf)	  major=".$current"	  versuffix=".$current";	  ;;	windows)	  # Like Linux, but with '-' rather than '.', since we only	  # want one extension on Windows 95.	  major=`expr $current - $age`	  versuffix="-$major-$age-$revision"	  ;;	*)	  $echo "$modename: unknown library version type \`$version_type'" 1>&2	  echo "Fatal configuration error.  See the $PACKAGE docs for more information." 1>&2	  exit 1	  ;;	esac	# Clear the version info if we defaulted, and they specified a release.	if test -z "$vinfo" && test -n "$release"; then	  major=	  verstring="0.0"	  if test "$need_version" = no; then	    versuffix=	  else	    versuffix=".0.0"	  fi	fi	# Remove version info from name if versioning should be avoided	if test "$avoid_version" = yes && test "$need_version" = no; then	  major=	  versuffix=	  verstring=""	fi		# Check to see if the archive will have undefined symbols.	if test "$allow_undefined" = yes; then	  if test "$allow_undefined_flag" = unsupported; then	    $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2	    build_libtool_libs=no	    build_old_libs=yes	  fi	else	  # Don't allow undefined symbols.	  allow_undefined_flag="$no_undefined_flag"	fi	dependency_libs="$deplibs"	case "$host" in	*-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)	  # these systems don't actually have a c library (as such)!	  ;;	*)	  # Add libc to deplibs on all other systems.	  deplibs="$deplibs -lc"	  ;;	esac      fi      # Create the output directory, or remove our outputs if we need to.      if test -d $output_objdir; then	$show "${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*"	$run ${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*      else	$show "$mkdir $output_objdir"	$run $mkdir $output_objdir	status=$?	if test $status -ne 0 && test ! -d $output_objdir; then	  exit $status	fi      fi      # Now set the variables for building old libraries.      if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then	oldlibs="$oldlibs $output_objdir/$libname.$libext"	# Transform .lo files to .o files.	oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`      fi      if test "$build_libtool_libs" = yes; then	# Transform deplibs into only deplibs that can be linked in shared.	name_save=$name	libname_save=$libname	release_save=$release	versuffix_save=$versuffix	major_save=$major	# I'm not sure if I'm treating the release correctly.  I think	# release should show up in the -l (ie -lgmp5) so we don't want to	# add it in twice.  Is that correct?	release=""	versuffix=""	major=""	newdeplibs=	droppeddeps=no	case "$deplibs_check_method" in	pass_all)	  # Don't check for shared/static.  Everything works.	  # This might be a little naive.  We might want to check	  # whether the library exists or not.  But this is on	  # osf3 & osf4 and I'm not really sure... Just	  # implementing what was already the behaviour.	  newdeplibs=$deplibs	  ;;	test_compile)	  # This code stresses the "libraries are programs" paradigm to its	  # limits. Maybe even breaks it.  We compile a program, linking it	  # against the deplibs as a proxy for the library.  Then we can check	  # whether they linked in statically or dynamically with ldd.	  $rm conftest.c	  cat > conftest.c <<EOF	  int main() { return 0; }EOF	  $rm conftest	  $C_compiler -o conftest conftest.c $deplibs	  if test $? -eq 0 ; then	    ldd_output=`ldd conftest`	    for i in $deplibs; do	      name="`expr $i : '-l\(.*\)'`"	      # If $name is empty we are operating on a -L argument.	      if test "$name" != "" ; then		libname=`eval \\$echo \"$libname_spec\"`		deplib_matches=`eval \\$echo \"$library_names_spec\"`		set dummy $deplib_matches		deplib_match=$2		if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then		  newdeplibs="$newdeplibs $i"		else		  droppeddeps=yes		  echo		  echo "*** Warning: This library needs some functionality provided by $i."		  echo "*** I have the capability to make that library automatically link in when"		  echo "*** you link to this library.  But I can only do this if you have a"		  echo "*** shared version of the library, which you do not appear to have."		fi	      else		newdeplibs="$newdeplibs $i"	      fi	    done	  else	    # Error occured in the first compile.  Let's try to salvage the situation:	    # Compile a seperate program for each library.	    for i in $deplibs; do	      name="`expr $i : '-l\(.*\)'`"	     # If $name is empty we are operating on a -L argument.	      if test "$name" != "" ; then		$rm conftest		$C_compiler -o conftest conftest.c $i		# Did it work?		if test $? -eq 0 ; then		  ldd_output=`ldd conftest`		  libname=`eval \\$echo \"$libname_spec\"`		  deplib_matches=`eval \\$echo \"$library_names_spec\"`		  set dummy $deplib_matches		  deplib_match=$2		  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then		    newdeplibs="$newdeplibs $i"		  else		    droppeddeps=yes		    echo		    echo "*** Warning: This library needs some functionality provided by $i."		    echo "*** I have the capability to make that library automatically link in when"		    echo "*** you link to this library.  But I can only do this if you have a"		    echo "*** shared version of the library, which you do not appear to have."		  fi		else		  droppeddeps=yes		  echo		  echo "*** Warning!  Library $i is needed by this library but I was not able to"		  echo "***  make it link in!  You will probably need to install it or some"		  echo "*** library that it depends on before this library will be fully"		  echo "*** functional.  Installing it before continuing would be even better."		fi	      else		newdeplibs="$newdeplibs $i"	      fi	    done	  fi	  ;;	file_magic*)	  set dummy $deplibs_check_method	  file_magic_regex="`expr \"$deplibs_check_method\" : \"$2 \(.*\)\"`"	  for a_deplib in $deplibs; do	    name="`expr $a_deplib : '-l\(.*\)'`"	    # If $name is empty we are operating on a -L argument.	    if test "$name" != "" ; then	      libname=`eval \\$echo \"$libname_spec\"`	      for i in $lib_search_path; do		    potential_libs=`ls $i/$libname[.-]* 2>/dev/null`		    for potent_lib in $potential_libs; do		      # Follow soft links.		      if ls -lLd "$potlib" 2>/dev/null \			 | grep " -> " >/dev/null; then			continue 		      fi		      # The statement above tries to avoid entering an		      # endless loop below, in case of cyclic links.		      # We might still enter an endless loop, since a link		      # loop can be closed while we follow links,		      # but so what?		      potlib="$potent_lib"		      while test -h "$potlib" 2>/dev/null; do			potliblink=`ls -ld $potlib | sed 's/.* -> //'`			case "$potliblink" in			[\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;			*) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;			esac		      done		      if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \			 | sed 10q \			 | egrep "$file_magic_regex" > /dev/null; then			newdeplibs="$newdeplibs $a_deplib"			a_deplib=""			break 2		      fi		    done	      done	      if test -n "$a_deplib" ; then		droppeddeps=yes

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲最新视频在线播放| 国内欧美视频一区二区| 久久国产成人午夜av影院| 成人午夜大片免费观看| 3751色影院一区二区三区| 国产精品免费久久| 开心九九激情九九欧美日韩精美视频电影 | 亚洲h动漫在线| 成人免费毛片高清视频| 2023国产精品| 老司机精品视频线观看86| 欧美日韩一级二级三级| 亚洲视频免费在线观看| www.亚洲国产| 欧美激情一二三区| 国产成人日日夜夜| 精品国产乱码久久久久久久久 | 亚洲线精品一区二区三区| www.欧美精品一二区| 国产色婷婷亚洲99精品小说| 国产一区二区看久久| 精品久久国产字幕高潮| 日韩国产欧美三级| 欧美一级高清片| 日本在线播放一区二区三区| 777色狠狠一区二区三区| 亚洲第一二三四区| 精品污污网站免费看| 亚洲高清不卡在线观看| 欧美日韩国产123区| 亚洲成人精品在线观看| 在线91免费看| 久久精品999| 国产亚洲综合在线| 国产99久久久国产精品潘金 | 精品免费99久久| 九一九一国产精品| 欧美激情一区三区| 97久久超碰国产精品电影| 亚洲日本在线看| 欧美日韩国产在线播放网站| 青青草国产精品97视觉盛宴| 欧美成人vps| 高清成人在线观看| 日韩一区欧美一区| 欧美三日本三级三级在线播放| 日韩精品一二三四| 久久精品在线免费观看| av激情亚洲男人天堂| 亚洲狠狠丁香婷婷综合久久久| 欧美理论电影在线| 国产一区二区不卡在线| 国产精品嫩草99a| 日本道色综合久久| 蜜臀av一区二区在线免费观看| 久久女同互慰一区二区三区| 国产成人免费在线观看| 一区二区三区不卡在线观看| 亚洲狠狠爱一区二区三区| 亚洲一级电影视频| 一本大道av一区二区在线播放| 欧美精选一区二区| 精彩视频一区二区三区 | 成人涩涩免费视频| 中文字幕亚洲视频| 欧美精品亚洲一区二区在线播放| 国产一区二区电影| 樱花草国产18久久久久| 欧美xxxxx牲另类人与| 99久久精品免费精品国产| 丝袜美腿成人在线| 国产精品高潮久久久久无| 91麻豆精品国产91久久久久久久久 | 国产欧美一区二区精品秋霞影院| 91在线视频在线| 欧美国产激情二区三区| 亚洲高清在线视频| 日本精品视频一区二区| 美女脱光内衣内裤视频久久网站| 中文字幕av不卡| 欧美一级夜夜爽| 99久久免费精品| 国产一区二区中文字幕| 日韩精品一级二级 | 国产一区二区精品久久91| 亚洲色欲色欲www| 久久久精品黄色| 欧美日韩在线一区二区| 91同城在线观看| 国产精华液一区二区三区| 视频一区二区三区中文字幕| 玉足女爽爽91| 中文字幕制服丝袜一区二区三区| 久久综合久色欧美综合狠狠| 欧美日韩成人在线一区| 欧洲在线/亚洲| 99re热这里只有精品视频| 国产成人午夜高潮毛片| 国产一区亚洲一区| 国内成人精品2018免费看| 麻豆传媒一区二区三区| 日韩精品电影一区亚洲| 亚洲小少妇裸体bbw| 亚洲综合一二三区| 亚洲精品成人在线| 亚洲综合免费观看高清完整版 | 国产高清不卡一区| 久久精品国产一区二区| 视频一区国产视频| 奇米影视7777精品一区二区| 天天综合网天天综合色| 日本va欧美va精品发布| 蜜臀av一区二区在线观看| 天堂蜜桃91精品| 日韩av网站在线观看| 日韩av一区二区三区四区| 麻豆一区二区99久久久久| 久久99精品久久久久婷婷| 国产美女精品一区二区三区| 国产一区二区三区黄视频 | 成人一区二区三区视频| 99视频精品全部免费在线| 91在线精品秘密一区二区| 94-欧美-setu| 精品视频一区 二区 三区| 91精品婷婷国产综合久久性色| 日韩一区二区不卡| 久久一区二区三区四区| 国产精品乱码人人做人人爱 | 中文欧美字幕免费| 国产精品白丝在线| 亚洲成人av电影在线| 免费在线成人网| 成人一级黄色片| 色综合久久精品| 欧美一区二区三区四区久久| 亚洲精品一区二区在线观看| 久久久高清一区二区三区| 亚洲欧美日韩国产综合在线| 爽好久久久欧美精品| 国产精品香蕉一区二区三区| 99re6这里只有精品视频在线观看| 欧美日韩一区 二区 三区 久久精品| 欧美一区二区三区播放老司机| 26uuu亚洲婷婷狠狠天堂| 日韩美女精品在线| 丝袜亚洲另类丝袜在线| 国产成人自拍网| 欧洲亚洲国产日韩| xfplay精品久久| 一区二区三区欧美久久| 久久精品理论片| 91免费看片在线观看| 精品欧美久久久| 一区二区三区在线播放| 激情六月婷婷久久| 日本韩国精品一区二区在线观看| 日韩三级中文字幕| 亚洲精品成人在线| 国产成人在线免费观看| 欧美日韩高清在线| 国产精品久久久久婷婷| 激情小说欧美图片| 91福利在线看| 国产精品久久看| 国产一区在线观看视频| 欧美精品色综合| 一区二区三区在线免费视频 | 日韩欧美一区二区久久婷婷| 亚洲日本乱码在线观看| 国产在线播放一区| 欧美一区二区在线免费观看| 亚洲一区二区三区四区在线观看| 丁香天五香天堂综合| 欧美不卡一区二区| 日产国产欧美视频一区精品| 欧美在线你懂得| 亚洲欧美日韩精品久久久久| 国产成人精品1024| 精品国一区二区三区| 日本一不卡视频| 欧美日韩一卡二卡| 亚洲韩国精品一区| 色呦呦网站一区| 椎名由奈av一区二区三区| 丁香激情综合国产| 国产亚洲短视频| 国产在线精品一区二区夜色| 日韩精品一区二区三区中文精品 | 午夜不卡av免费| 99国产欧美久久久精品| 国产精品乱人伦| www.一区二区| 中国色在线观看另类| 国产精品系列在线播放| 久久精品夜色噜噜亚洲a∨| 国产麻豆欧美日韩一区| 国产日韩av一区二区| 国产91精品精华液一区二区三区| 国产婷婷精品av在线|