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

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

?? ltmain.sh

?? nios-linux交叉編譯器,可以在linux環境下建立nios的交叉編譯環境.
?? SH
?? 第 1 頁 / 共 5 頁
字號:
	    fi	    continue	    ;;	  prog)	    if test "$pass" != link; then	      deplibs="$deplib $deplibs"	    else	      compile_deplibs="$deplib $compile_deplibs"	      finalize_deplibs="$deplib $finalize_deplibs"	    fi	    continue	    ;;	  esac # linkmode	  ;; # *.$libext	*.lo | *.$objext)	  if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then	    # If there is no dlopen support or we're linking statically,	    # we need to preload.	    newdlprefiles="$newdlprefiles $deplib"	    compile_deplibs="$deplib $compile_deplibs"	    finalize_deplibs="$deplib $finalize_deplibs"	  else	    newdlfiles="$newdlfiles $deplib"	  fi	  continue	  ;;	%DEPLIBS%)	  alldeplibs=yes	  continue	  ;;	esac # case $deplib	if test $found = yes || test -f "$lib"; then :	else	  $echo "$modename: cannot find the library \`$lib'" 1>&2	  exit 1	fi	# Check to see that this really is a libtool archive.	if (sed -e '2q' $lib | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :	else	  $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2	  exit 1	fi	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`	test "X$ladir" = "X$lib" && ladir="."	dlname=	dlopen=	dlpreopen=	libdir=	library_names=	old_library=	# If the library was installed with an old release of libtool,	# it will not redefine variable installed.	installed=yes	# Read the .la file	case $lib in	*/* | *\\*) . $lib ;;	*) . ./$lib ;;	esac	if test "$linkmode,$pass" = "lib,link" ||	   test "$linkmode,$pass" = "prog,scan" ||	   { test "$linkmode" = oldlib && test "$linkmode" = obj; }; then	   # Add dl[pre]opened files of deplib	  test -n "$dlopen" && dlfiles="$dlfiles $dlopen"	  test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"	fi	if test "$pass" = conv; then	  # Only check for convenience libraries	  deplibs="$lib $deplibs"	  if test -z "$libdir"; then	    if test -z "$old_library"; then	      $echo "$modename: cannot find name of link library for \`$lib'" 1>&2	      exit 1	    fi	    # It is a libtool convenience library, so add in its objects.	    convenience="$convenience $ladir/$objdir/$old_library"	    old_convenience="$old_convenience $ladir/$objdir/$old_library"	    tmp_libs=	    for deplib in $dependency_libs; do	      deplibs="$deplib $deplibs"              if test "X$duplicate_deps" = "Xyes" ; then	        case "$tmp_libs " in	        *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	        esac              fi	      tmp_libs="$tmp_libs $deplib"	    done	  elif test "$linkmode" != prog && test "$linkmode" != lib; then	    $echo "$modename: \`$lib' is not a convenience library" 1>&2	    exit 1	  fi	  continue	fi # $pass = conv	# Get the name of the library we link against.	linklib=	for l in $old_library $library_names; do	  linklib="$l"	done	if test -z "$linklib"; then	  $echo "$modename: cannot find name of link library for \`$lib'" 1>&2	  exit 1	fi	# This library was specified with -dlopen.	if test "$pass" = dlopen; then	  if test -z "$libdir"; then	    $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2	    exit 1	  fi	  if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then	    # If there is no dlname, no dlopen support or we're linking	    # statically, we need to preload.	    dlprefiles="$dlprefiles $lib"	  else	    newdlfiles="$newdlfiles $lib"	  fi	  continue	fi # $pass = dlopen	# We need an absolute path.	case $ladir in	[\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;	*)	  abs_ladir=`cd "$ladir" && pwd`	  if test -z "$abs_ladir"; then	    $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2	    $echo "$modename: passing it literally to the linker, although it might fail" 1>&2	    abs_ladir="$ladir"	  fi	  ;;	esac	laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`	# Find the relevant object directory and library name.	if test "X$installed" = Xyes; then	  if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then	    $echo "$modename: warning: library \`$lib' was moved." 1>&2	    dir="$ladir"	    absdir="$abs_ladir"	    libdir="$abs_ladir"	  else	    dir="$libdir"	    absdir="$libdir"	  fi	else	  dir="$ladir/$objdir"	  absdir="$abs_ladir/$objdir"	  # Remove this search path later	  notinst_path="$notinst_path $abs_ladir"	fi # $installed = yes	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`	# This library was specified with -dlpreopen.	if test "$pass" = dlpreopen; then	  if test -z "$libdir"; then	    $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2	    exit 1	  fi	  # Prefer using a static library (so that no silly _DYNAMIC symbols	  # are required to link).	  if test -n "$old_library"; then	    newdlprefiles="$newdlprefiles $dir/$old_library"	  # Otherwise, use the dlname, so that lt_dlopen finds it.	  elif test -n "$dlname"; then	    newdlprefiles="$newdlprefiles $dir/$dlname"	  else	    newdlprefiles="$newdlprefiles $dir/$linklib"	  fi	fi # $pass = dlpreopen	if test -z "$libdir"; then	  # Link the convenience library	  if test "$linkmode" = lib; then	    deplibs="$dir/$old_library $deplibs"	  elif test "$linkmode,$pass" = "prog,link"; then	    compile_deplibs="$dir/$old_library $compile_deplibs"	    finalize_deplibs="$dir/$old_library $finalize_deplibs"	  else	    deplibs="$lib $deplibs"	  fi	  continue	fi	if test "$linkmode" = prog && test "$pass" != link; then	  newlib_search_path="$newlib_search_path $ladir"	  deplibs="$lib $deplibs"	  linkalldeplibs=no	  if test "$link_all_deplibs" != no || test -z "$library_names" ||	     test "$build_libtool_libs" = no; then	    linkalldeplibs=yes	  fi	  tmp_libs=	  for deplib in $dependency_libs; do	    case $deplib in	    -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test	    esac	    # Need to link against all dependency_libs?	    if test $linkalldeplibs = yes; then	      deplibs="$deplib $deplibs"	    else	      # Need to hardcode shared library paths	      # or/and link against static libraries	      newdependency_libs="$deplib $newdependency_libs"	    fi	    if test "X$duplicate_deps" = "Xyes" ; then	      case "$tmp_libs " in	      *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;	      esac	    fi	    tmp_libs="$tmp_libs $deplib"	  done # for deplib	  continue	fi # $linkmode = prog...	link_static=no # Whether the deplib will be linked statically	if test -n "$library_names" &&	   { test "$prefer_static_libs" = no || test -z "$old_library"; }; then	  # Link against this shared library	  if test "$linkmode,$pass" = "prog,link" ||	   { test "$linkmode" = lib && test "$hardcode_into_libs" = yes; }; then	    # Hardcode the library path.	    # Skip directories that are in the system default run-time	    # search path.	    case " $sys_lib_dlsearch_path " in	    *" $absdir "*) ;;	    *)	      case "$compile_rpath " in	      *" $absdir "*) ;;	      *) compile_rpath="$compile_rpath $absdir"	      esac	      ;;	    esac	    case " $sys_lib_dlsearch_path " in	    *" $libdir "*) ;;	    *)	      case "$finalize_rpath " in	      *" $libdir "*) ;;	      *) finalize_rpath="$finalize_rpath $libdir"	      esac	      ;;	    esac	    if test "$linkmode" = prog; then	      # We need to hardcode the library path	      if test -n "$shlibpath_var"; then		# Make sure the rpath contains only unique directories.		case "$temp_rpath " in		*" $dir "*) ;;		*" $absdir "*) ;;		*) temp_rpath="$temp_rpath $dir" ;;		esac	      fi	    fi	  fi # $linkmode,$pass = prog,link...	  if test "$alldeplibs" = yes &&	     { test "$deplibs_check_method" = pass_all ||	       { test "$build_libtool_libs" = yes &&		 test -n "$library_names"; }; }; then	    # We only need to search for static libraries	    continue	  fi	  if test "$installed" = no; then	    notinst_deplibs="$notinst_deplibs $lib"	    need_relink=yes	  fi	  if test -n "$old_archive_from_expsyms_cmds"; then	    # figure out the soname	    set dummy $library_names	    realname="$2"	    shift; shift	    libname=`eval \\$echo \"$libname_spec\"`	    # use dlname if we got it. it's perfectly good, no?	    if test -n "$dlname"; then	      soname="$dlname"	    elif test -n "$soname_spec"; then	      # bleh windows	      case $host in	      *cygwin*)		major=`expr $current - $age`		versuffix="-$major"		;;	      esac	      eval soname=\"$soname_spec\"	    else	      soname="$realname"	    fi	    # Make a new name for the extract_expsyms_cmds to use	    soroot="$soname"	    soname=`echo $soroot | sed -e 's/^.*\///'`	    newlib="libimp-`echo $soname | sed 's/^lib//;s/\.dll$//'`.a"	    # If the library has no export list, then create one now	    if test -f "$output_objdir/$soname-def"; then :	    else	      $show "extracting exported symbol list from \`$soname'"	      save_ifs="$IFS"; IFS='~'	      eval cmds=\"$extract_expsyms_cmds\"	      for cmd in $cmds; do		IFS="$save_ifs"		$show "$cmd"		$run eval "$cmd" || exit $?	      done	      IFS="$save_ifs"	    fi	    # Create $newlib	    if test -f "$output_objdir/$newlib"; then :; else	      $show "generating import library for \`$soname'"	      save_ifs="$IFS"; IFS='~'	      eval cmds=\"$old_archive_from_expsyms_cmds\"	      for cmd in $cmds; do		IFS="$save_ifs"		$show "$cmd"		$run eval "$cmd" || exit $?	      done	      IFS="$save_ifs"	    fi	    # make sure the library variables are pointing to the new library	    dir=$output_objdir	    linklib=$newlib	  fi # test -n $old_archive_from_expsyms_cmds	  if test "$linkmode" = prog || test "$mode" != relink; then	    add_shlibpath=	    add_dir=	    add=	    lib_linked=yes	    case $hardcode_action in	    immediate | unsupported)	      if test "$hardcode_direct" = no; then		add="$dir/$linklib"	      elif test "$hardcode_minus_L" = no; then		case $host in		*-*-sunos*) add_shlibpath="$dir" ;;		esac		add_dir="-L$dir"		add="-l$name"	      elif test "$hardcode_shlibpath_var" = no; then		add_shlibpath="$dir"		add="-l$name"	      else		lib_linked=no	      fi	      ;;	    relink)	      if test "$hardcode_direct" = yes; then		add="$dir/$linklib"	      elif test "$hardcode_minus_L" = yes; then		add_dir="-L$dir"		add="-l$name"	      elif test "$hardcode_shlibpath_var" = yes; then		add_shlibpath="$dir"		add="-l$name"	      else		lib_linked=no	      fi	      ;;	    *) lib_linked=no ;;	    esac	    if test "$lib_linked" != yes; then	      $echo "$modename: configuration error: unsupported hardcode properties"	      exit 1	    fi	    if test -n "$add_shlibpath"; then	      case :$compile_shlibpath: in	      *":$add_shlibpath:"*) ;;	      *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;	      esac	    fi	    if test "$linkmode" = prog; then	      test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"	      test -n "$add" && compile_deplibs="$add $compile_deplibs"	    else	      test -n "$add_dir" && deplibs="$add_dir $deplibs"	      test -n "$add" && deplibs="$add $deplibs"	      if test "$hardcode_direct" != yes && \		 test "$hardcode_minus_L" != yes && \		 test "$hardcode_shlibpath_var" = yes; then		case :$finalize_shlibpath: in		*":$libdir:"*) ;;		*) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;		esac	      fi	    fi	  fi	  if test "$linkmode" = prog || test "$mode" = relink; then	    add_shlibpath=	    add_prefix_dir=	    add_dir=	    add=	    # Finalize command for both is simple: just hardcode it.	    if test "$hardcode_direct" = yes; then	      add="$libdir/$linklib"	    elif test "$hardcode_minus_L" = yes; then	      add_dir="-L$libdir"	      add="-l$name"	    elif test "$hardcode_shlibpath_var" = yes; then	      case :$finalize_shlibpath: in	      *":$libdir:"*) ;;	      *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;	      esac	      add="-l$name"	    else	      # We cannot seem to hardcode it, guess we'll fake it.	      add_dir="-L$libdir"	      add="-l$name"	    fi	    if test -n "$inst_prefix_dir"; then	      case "$libdir" in	      [\\/]*)		add_prefix_dir="-L$inst_prefix_dir$libdir"		;;	      esac	    fi	    # add_prefix_dir must be appended instead, otherwise it can	    # possibly be overrided by any hardcoded -L/... path in deplibs	    if test "$linkmode" = prog; then	      test -n "$add_prefix_dir" && finalize_deplibs="$finalize_deplibs $add_prefix_dir"	      test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"	      test -n "$add" && finalize_deplibs="$add $finalize_deplibs"	    else	      test -n "$add_prefix_dir" && deplibs="$deplibs $add_prefix_dir"	      test -n "$add_dir" && deplibs="$add_dir $deplibs"	      test -n "$add" && deplibs="$add $deplibs"	    fi	  fi	elif test "$linkmode" = prog; then	  if test "$alldeplibs" = yes &&	     { test "$deplibs_check_method" = pass_all ||	       { test "$build_libtool_libs" = yes &&		 test -n "$library_names"; }; }; then	    # We only need to search for static libraries	    continue	  fi	  # Try to link the static library	  # Here we assume that one of hardcode_direct or hardcode_minus_L	  # is not unsupported.  This is valid on all known static and	  # shared platforms.	  if test "$hardcode_direct" != unsupported; then	    test -n "$old_library" && linklib="$old_library"	    compile_deplibs="$dir/$linklib $compile_deplibs"	    finalize_deplibs="$dir/$linklib $finalize_deplibs"	  else	    compile_deplibs="-l$name -L$dir $compile_deplibs"	    finalize_deplibs="-l$name -L$dir $finalize_deplibs"	  fi	elif test "$build_libtool_libs" = yes; then	  # Not a shared library	  if test "$deplibs_check_method" != pass_all; then	    # We're trying link a shared library against a static one	    # but the system doesn't support it.	    # Just print a warning and add the library to dependency_libs so	    # that the program can be linked against the static library.	    echo	    echo "*** Warning: This library needs some functionality provided by $lib."	    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."	    if test "$module" = yes; then	      echo "*** Therefore, libtool will create a static module, that should work "	      echo "*** as long as the dlopening application is linked with the -dlopen flag."	      if test -z "$global_symbol_pipe"; then		echo		echo "*** However, this would only work if libtool was able to extract symbol"		echo "*** lists from a program, using \`nm' or equivalent, but libtool could"		echo "*** not find such a program.  So, this module is probably useless."		echo "*** \`nm' from GNU binutils and a full rebuild may help."	      fi	      if test "$build_old_libs" = no; then		build_libtool_libs=module		build_old_libs=yes	      else		build_libtool_libs=no	      fi	    fi	  else	    convenience="$convenience $dir/$old_library"	    old_convenience="$old_convenience $dir/$old_library"	    deplibs="$dir/$old_library $deplibs"	    link_static=yes	  fi	fi # link shared/static library?

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美视频一区二区| 欧美成人猛片aaaaaaa| 91精品国产色综合久久ai换脸| 久久一区二区三区四区| 一区二区成人在线视频| 国产另类ts人妖一区二区| 欧美在线一二三四区| 国产欧美一区二区精品性色超碰| 亚洲国产综合91精品麻豆| 国产乱码精品一区二区三区五月婷 | 国产老妇另类xxxxx| 制服丝袜中文字幕一区| 国产精品二区一区二区aⅴ污介绍| 日韩成人一级片| 色婷婷一区二区| 中文字幕 久热精品 视频在线| 日韩高清欧美激情| 91久久香蕉国产日韩欧美9色| 国产亚洲精品福利| 国产综合成人久久大片91| 欧美日韩中字一区| 日韩毛片高清在线播放| 国产成人av一区二区三区在线| 9191久久久久久久久久久| 亚洲精品中文字幕在线观看| 成人性生交大片免费看中文网站| 日韩欧美一区在线| 日韩不卡一二三区| 欧美日韩视频一区二区| 亚洲午夜久久久久久久久电影院| av电影一区二区| 国产欧美日韩在线视频| 国产精品123| 久久嫩草精品久久久久| 国产一区在线观看麻豆| 精品国产乱码久久久久久免费| 日韩精品欧美成人高清一区二区| 欧美午夜一区二区三区| 亚洲成人激情综合网| 欧美性色黄大片| 三级不卡在线观看| 欧美一区二区三区播放老司机| 日韩电影在线观看网站| 日韩限制级电影在线观看| 天堂蜜桃91精品| 欧美一级一级性生活免费录像| 蜜桃免费网站一区二区三区| 精品日韩99亚洲| 国产传媒欧美日韩成人| 中文字幕中文字幕中文字幕亚洲无线| 国产iv一区二区三区| 中文字幕中文字幕一区| 欧美亚洲动漫另类| 久久99蜜桃精品| 国产欧美中文在线| 日本乱码高清不卡字幕| 午夜精品福利一区二区三区av| 日韩欧美卡一卡二| 丰满少妇久久久久久久| 一区二区三区四区乱视频| 国产精品九色蝌蚪自拍| 欧美色视频在线| 蜜桃精品视频在线| 中文字幕一区二区三区在线不卡 | 日本亚洲一区二区| 久久色中文字幕| 97se亚洲国产综合在线| 午夜精品国产更新| 国产香蕉久久精品综合网| 色天天综合久久久久综合片| 久久成人免费网| 亚洲视频在线一区观看| 日韩一区二区在线免费观看| 成人一级片网址| 日韩av在线播放中文字幕| 久久精品一区蜜桃臀影院| 在线欧美日韩国产| 国产精品69毛片高清亚洲| 一区二区日韩av| 精品av综合导航| 欧美三级乱人伦电影| 国产成人亚洲综合色影视| 亚洲第一搞黄网站| 中文在线免费一区三区高中清不卡| 欧美无砖砖区免费| 国产剧情在线观看一区二区| 亚洲国产精品久久久久婷婷884| 国产清纯美女被跳蛋高潮一区二区久久w | 五月天网站亚洲| 一区在线观看视频| 久久只精品国产| 欧美日韩国产一二三| 91女神在线视频| 国产成人综合亚洲网站| 麻豆国产一区二区| 婷婷成人综合网| 国产精品亚洲а∨天堂免在线| 亚洲电影一级片| 亚洲激情av在线| 国产精品高潮呻吟| 欧美国产1区2区| 久久综合九色综合欧美98| 91精选在线观看| 欧美三级韩国三级日本一级| 色哟哟日韩精品| 色哟哟国产精品免费观看| 成人免费毛片a| 国产成人午夜99999| 国模娜娜一区二区三区| 日韩高清不卡在线| 午夜精品视频一区| 午夜伊人狠狠久久| 五月婷婷久久综合| 一片黄亚洲嫩模| 亚洲人成网站精品片在线观看| 久久久精品免费网站| 久久久久久亚洲综合影院红桃| 在线成人小视频| 欧美亚洲免费在线一区| 国产91精品在线观看| 欧美激情自拍偷拍| 日本一区二区三区免费乱视频| 精品国产欧美一区二区| 91精品免费观看| 91精品国产免费| 在线观看免费亚洲| 在线不卡免费av| 欧美视频中文字幕| 91成人看片片| 91成人网在线| 一本一道综合狠狠老| 欧美吞精做爰啪啪高潮| 欧美最猛性xxxxx直播| 91在线国产观看| 91免费观看视频| 99久久国产综合色|国产精品| 色屁屁一区二区| 色激情天天射综合网| 91亚洲精华国产精华精华液| 91欧美激情一区二区三区成人| 丝袜美腿亚洲一区二区图片| 久久精品国产久精国产爱| 日本美女一区二区三区视频| 日本va欧美va欧美va精品| 水野朝阳av一区二区三区| 婷婷丁香久久五月婷婷| 国产乱码精品1区2区3区| 成人av网站在线| 91视频.com| 欧美猛男男办公室激情| 欧美午夜精品免费| www成人在线观看| 欧美国产精品久久| 一区二区三区日韩欧美精品| 亚洲va中文字幕| 久久精品国产成人一区二区三区| 国产精品夜夜嗨| 在线观看日产精品| 久久嫩草精品久久久精品| 国产精品乱人伦中文| 亚洲黄色免费网站| 国产精品综合av一区二区国产馆| av亚洲产国偷v产偷v自拍| 欧美三片在线视频观看| 精品国产一区二区三区久久久蜜月 | 国产成人综合精品三级| 波多野洁衣一区| 欧美日本在线播放| 7777精品伊人久久久大香线蕉经典版下载 | 国产成人激情av| 91行情网站电视在线观看高清版| 在线播放中文字幕一区| 久久久久久久久久久黄色| 2020国产精品久久精品美国| 五月天国产精品| 成人午夜在线免费| 欧美一区在线视频| 中文欧美字幕免费| 美女高潮久久久| 日本高清成人免费播放| 日韩欧美高清一区| 一区二区三区电影在线播| 日韩在线播放一区二区| 在线免费观看日韩欧美| 精品国产一区二区三区不卡| 一区二区三区在线观看动漫| 国产精品中文字幕一区二区三区| 成人sese在线| 国产日产精品1区| 蜜臀a∨国产成人精品| 在线观看国产精品网站| 中文字幕第一页久久| 国产福利精品导航| 欧美福利视频导航| 亚洲免费观看高清| 成人动漫视频在线| 日韩免费高清视频| 久久成人久久爱| 在线播放亚洲一区| 一区二区欧美视频|