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

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

?? ltmain.sh

?? 一套linux下的C++開發庫
?? SH
?? 第 1 頁 / 共 5 頁
字號:
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      # 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	# Now arrange that obj and lo_libobj become the same file	$show "$LN_S $obj $lo_libobj"	if $run $LN_S $obj $lo_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"      $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"    C_compiler="$CC" # save it, to compile generated C sources    CC="$nonopt"    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>## #ifdef __cplusplus# extern "C" {# #endif# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);# #ifdef __cplusplus# }# #endif## #include <cygwin/cygwin_dll.h># DECLARE_CYGWIN_DLL( DllMain );# 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() */#  #include <fcntl.h>		/* for O_RDONLY, O_BINARY */#  #include <string.h>		/* for strdup() */# #  static unsigned int#  pe_get16 (fd, offset)#       int fd;#       int offset;#  {#    unsigned char b[2];#    lseek (fd, offset, SEEK_SET);#    read (fd, b, 2);#    return b[0] + (b[1]<<8);#  }# #  static unsigned int#  pe_get32 (fd, offset)#      int fd;#      int offset;#  {#    unsigned char b[4];#    lseek (fd, offset, SEEK_SET);#    read (fd, b, 4);#    return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);#  }# #  static unsigned int#  pe_as32 (ptr)#       void *ptr;#  {#    unsigned char *b = ptr;#    return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);#  }# #  int#  main (argc, argv)#      int argc;#      char *argv[];#  {#      int dll;#      unsigned long pe_header_offset, opthdr_ofs, num_entries, i;#      unsigned long export_rva, export_size, nsections, secptr, expptr;#      unsigned long name_rvas, nexp;#      unsigned char *expdata, *erva;#      char *filename, *dll_name;# #      filename = argv[1];# #      dll = open(filename, O_RDONLY|O_BINARY);#      if (!dll)#  	return 1;# #      dll_name = filename;#    #      for (i=0; filename[i]; i++)#  	if (filename[i] == '/' || filename[i] == '\\'  || filename[i] == ':')#  	    dll_name = filename + i +1;# #      pe_header_offset = pe_get32 (dll, 0x3c);#      opthdr_ofs = pe_header_offset + 4 + 20;#      num_entries = pe_get32 (dll, opthdr_ofs + 92);# #      if (num_entries < 1) /* no exports */#  	return 1;# #      export_rva = pe_get32 (dll, opthdr_ofs + 96);#      export_size = pe_get32 (dll, opthdr_ofs + 100);#      nsections = pe_get16 (dll, pe_header_offset + 4 +2);#      secptr = (pe_header_offset + 4 + 20 +#  	      pe_get16 (dll, pe_header_offset + 4 + 16));# #      expptr = 0;#      for (i = 0; i < nsections; i++)#      {#  	char sname[8];#  	unsigned long secptr1 = secptr + 40 * i;#  	unsigned long vaddr = pe_get32 (dll, secptr1 + 12);#  	unsigned long vsize = pe_get32 (dll, secptr1 + 16);#  	unsigned long fptr = pe_get32 (dll, secptr1 + 20);#  	lseek(dll, secptr1, SEEK_SET);#  	read(dll, sname, 8);#  	if (vaddr <= export_rva && vaddr+vsize > export_rva)#  	{#  	    expptr = fptr + (export_rva - vaddr);#  	    if (export_rva + export_size > vaddr + vsize)#  		export_size = vsize - (export_rva - vaddr);#  	    break;#  	}#      }# #      expdata = (unsigned char*)malloc(export_size);#      lseek (dll, expptr, SEEK_SET);#      read (dll, expdata, export_size);#      erva = expdata - export_rva;# #      nexp = pe_as32 (expdata+24);#      name_rvas = pe_as32 (expdata+32);# #      printf ("EXPORTS\n");#      for (i = 0; i<nexp; i++)#      {#  	unsigned long name_rva = pe_as32 (erva+name_rvas+i*4);#  	printf ("\t%s @ %ld ;\n", erva+name_rva, 1+ i);#      }# #      return 0;#  }# /* impgen.c ends here */      ;;    *)      allow_undefined=yes      ;;    esac    compile_command="$CC"    finalize_command="$CC"    compile_rpath=    finalize_rpath=    compile_shlibpath=    finalize_shlibpath=    convenience=    old_convenience=    deplibs=    linkopts=    if test -n "$shlibpath_var"; then      # get the directories listed in $shlibpath_var      eval lib_search_path=\`\$echo \"X \${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`    else      lib_search_path=    fi    # now prepend the system-specific ones    eval lib_search_path=\"$sys_lib_search_path_spec\$lib_search_path\"    eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"        avoid_version=no    dlfiles=    dlprefiles=    dlself=no    export_dynamic=no    export_symbols=    export_symbols_regex=    generated=    libobjs=    link_against_libtool_libs=    ltlibs=    module=no    objs=    prefer_static_libs=no    preload=no    prev=    prevarg=    release=    rpath=    xrpath=    perm_rpath=    temp_rpath=    thread_safe=no    vinfo=    # We need to know -static, to get the right output filenames.    for arg    do      case "$arg" in      -all-static | -static)	if test "X$arg" = "X-all-static"; then	  if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then	    $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2	  fi	  if test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	else	  if test -z "$pic_flag" && test -n "$link_static_flag"; then	    dlopen_self=$dlopen_self_static	  fi	fi	build_libtool_libs=no	build_old_libs=yes	prefer_static_libs=yes	break	;;      esac    done    # See if our shared archives depend on static archives.    test -n "$old_archive_from_new_cmds" && build_old_libs=yes    # Go through the arguments, transforming them on the way.    while test $# -gt 0; do      arg="$1"      shift      # If the previous option needs an argument, assign it.      if test -n "$prev"; then	case "$prev" in	output)	  compile_command="$compile_command @OUTPUT@"	  finalize_command="$finalize_command @OUTPUT@"	  ;;	esac	case "$prev" in	dlfiles|dlprefiles)	  if test "$preload" = no; then	    # Add the symbol object into the linking commands.	    compile_command="$compile_command @SYMFILE@"	    finalize_command="$finalize_command @SYMFILE@"	    preload=yes	  fi	  case "$arg" in	  *.la | *.lo) ;;  # We handle these cases below.	  self)	    if test "$prev" = dlprefiles; then	      dlself=yes	    elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then	      dlself=yes	    else	      dlself=needless	      export_dynamic=yes	    fi	    prev=	    continue	    ;;	  *)	    if test "$prev" = dlfiles; then	      dlfiles="$dlfiles $arg"	    else	      dlprefiles="$dlprefiles $arg"	    fi	    prev=	    ;;	  esac	  ;;	expsyms)	  export_symbols="$arg"	  if test ! -f "$arg"; then	    $echo "$modename: symbol file \`$arg' does not exist"	    exit 1	  fi	  prev=	  continue	  ;;	expsyms_regex)	  export_symbols_regex="$arg"	  prev=	  continue	  ;;	release)	  release="-$arg"	  prev=	  continue	  ;;	rpath | xrpath)	  # We need an absolute path.	  case "$arg" in	  [\\/]* | [A-Za-z]:[\\/]*) ;;	  *)	    $echo "$modename: only absolute run-paths are allowed" 1>&2	    exit 1	    ;;	  esac	  if test "$prev" = rpath; then	    case "$rpath " in	    *" $arg "*) ;;	    *) rpath="$rpath $arg" ;;	    esac	  else	    case "$xrpath " in	    *" $arg "*) ;;	    *) xrpath="$xrpath $arg" ;;	    esac	  fi	  prev=	  continue	  ;;	*)	  eval "$prev=\"\$arg\""	  prev=	  continue	  ;;	esac      fi      prevarg="$arg"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品影视av免费| 日本在线不卡一区| 精品国产伦一区二区三区观看方式| 99re成人精品视频| 国产久卡久卡久卡久卡视频精品| 另类小说视频一区二区| 麻豆国产91在线播放| 看国产成人h片视频| 狠狠色狠狠色综合系列| 国产a精品视频| 成人av影视在线观看| 日韩亚洲欧美高清| 日韩精品在线一区| 久久久精品免费网站| 国产精品国产成人国产三级| 国产精品久久久久久久久搜平片| 亚洲少妇中出一区| 亚洲成人动漫一区| 国产做a爰片久久毛片| 国产成a人亚洲精| 色国产精品一区在线观看| 欧美日韩一卡二卡三卡| 欧美mv日韩mv| 亚洲精品视频在线观看网站| 性久久久久久久久| 国产成人亚洲精品狼色在线| www.日韩精品| 91精品国产综合久久蜜臀| 久久精品视频一区二区| 亚洲国产视频直播| 韩国精品一区二区| 色综合中文字幕国产 | 日韩精品一区二区三区三区免费| 2024国产精品视频| 有坂深雪av一区二区精品| 日本不卡的三区四区五区| 成人毛片老司机大片| 欧美精品高清视频| 国产精品女主播在线观看| 亚洲国产精品久久不卡毛片 | 久久婷婷久久一区二区三区| 日韩伦理av电影| 另类的小说在线视频另类成人小视频在线 | 99久久综合精品| 日韩小视频在线观看专区| 亚洲色图视频免费播放| 国产精品综合二区| 欧美一区二区三区在线看| 亚洲精品视频一区二区| 国产成人午夜99999| 日韩一区二区免费电影| 亚洲一区二区三区中文字幕在线| 国产一区二区视频在线播放| 欧美乱熟臀69xxxxxx| 国产精品第13页| 国产麻豆成人精品| 日韩一区二区三区电影| 亚洲高清在线精品| 色妹子一区二区| 中文字幕第一区综合| 国产精品一区二区在线观看网站| 这里只有精品视频在线观看| 亚洲综合在线视频| 不卡一区二区在线| 成人欧美一区二区三区视频网页 | 国精产品一区一区三区mba视频 | 精品视频在线看| 亚洲激情成人在线| 91亚洲国产成人精品一区二区三| 国产三级精品三级在线专区| 国产一区二区免费在线| 精品久久国产老人久久综合| 美国十次了思思久久精品导航| 色婷婷综合激情| 亚洲视频一区二区在线| 99热精品一区二区| 樱花影视一区二区| 在线精品视频一区二区三四| 亚洲无人区一区| 欧美一区二区在线看| 日本在线不卡视频一二三区| 日韩一级二级三级| 国产精品99久久久| 国产精品视频你懂的| 91丨porny丨国产入口| 亚洲黄色免费电影| 91精品国产色综合久久不卡电影| 日韩电影一区二区三区| 国产精品美女久久久久久久网站| 亚洲va欧美va国产va天堂影院| voyeur盗摄精品| 亚洲精品成人a在线观看| 在线视频亚洲一区| 日韩激情视频网站| 国产欧美一区二区精品久导航 | 日韩主播视频在线| 国产精品免费av| 精品av综合导航| 777色狠狠一区二区三区| 91成人国产精品| 99久久伊人精品| 成人三级伦理片| 国产精品亚洲专一区二区三区| 麻豆成人免费电影| 日韩av网站在线观看| 亚洲成人黄色影院| 亚洲a一区二区| 香蕉久久一区二区不卡无毒影院| 亚洲一级电影视频| 亚洲国产一区二区三区 | 国产在线一区二区综合免费视频| 日韩福利电影在线| 日韩成人免费电影| 麻豆国产一区二区| 国产一级精品在线| 国产精品自拍一区| 成人毛片视频在线观看| av在线一区二区三区| 91香蕉视频mp4| 欧美性视频一区二区三区| 色诱视频网站一区| 欧美影院午夜播放| 制服丝袜国产精品| 日韩女同互慰一区二区| 久久午夜国产精品| 国产精品免费aⅴ片在线观看| 一区精品在线播放| 亚洲综合久久av| 日本系列欧美系列| 国产乱码精品一区二区三| 成人一区在线看| 91丝袜美腿高跟国产极品老师| 91麻豆精品在线观看| 欧美日韩精品一区二区三区| 欧美一区二区性放荡片| 久久久久久综合| 亚洲精品欧美激情| 蜜臀av性久久久久蜜臀aⅴ| 国产a视频精品免费观看| 91黄视频在线观看| 欧美一区二区三区视频在线| 久久久99精品久久| 亚洲免费观看高清在线观看| 日韩中文字幕亚洲一区二区va在线| 国内精品免费**视频| 91丝袜美女网| 日韩精品专区在线影院观看| 国产精品第13页| 日韩二区三区四区| 成人av午夜影院| 欧美另类变人与禽xxxxx| www亚洲一区| 亚洲成人一区在线| 国产精品99久| 日韩一区二区视频在线观看| 国产精品理伦片| 免费视频最近日韩| 色综合网站在线| 久久久另类综合| 丝袜国产日韩另类美女| 不卡在线视频中文字幕| 欧美大胆一级视频| 亚洲综合激情另类小说区| 国产真实精品久久二三区| 欧美日韩国产色站一区二区三区| 久久亚洲免费视频| 午夜精品久久久久久| 成人91在线观看| 久久精品亚洲一区二区三区浴池| 亚洲成人福利片| 99国内精品久久| 国产欧美日韩亚州综合| 麻豆成人91精品二区三区| 欧美性受极品xxxx喷水| 中文字幕亚洲一区二区va在线| 国产一区美女在线| 欧美精品xxxxbbbb| 亚洲精选一二三| 成人禁用看黄a在线| 久久久亚洲欧洲日产国码αv| 午夜免费欧美电影| 欧美天堂一区二区三区| 亚洲精品网站在线观看| 99久久伊人精品| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 欧美三级日韩三级| 亚洲国产电影在线观看| 国产精品 欧美精品| 2024国产精品| 国产精品夜夜爽| 国产欧美日本一区视频| 国产精品资源网| 中文字幕免费不卡在线| 国产成人精品一区二区三区网站观看| 日韩精品一区二区三区swag| 蜜臀av性久久久久蜜臀aⅴ| 日韩欧美精品三级| 国产一区二区电影| 久久人人超碰精品| 国产suv精品一区二区6|