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

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

?? configure.host

?? 上一個上傳的有問題,這個是好的。visopsys包括系統(tǒng)內(nèi)核和GUI的全部SOURCE code ,還包括一些基本的docs文檔。里面src子目錄對應(yīng)所有SOURCE code.對于想研究操作系統(tǒng)的朋
?? HOST
字號:
# configure.host# This shell script handles all host based configuration for newlib.# It sets various shell variables based on the the host and the# configuration options.  You can modify this shell script without# needing to rerun autoconf.# This shell script should be invoked as#   . configure.host# If it encounters an error, it will exit with a message.# FIXME: This script is too complicated.  It does things in too many# different ways.  This was taken from the old Cygnus configure script# with only minor changes.  It should be cleaned up.# FIXME: The general approach of picking and choosing which# directories to configure, other than machine_dir and sys_dir, is# potentially confusing.# It uses the following shell variables:#   host		The configuration host#   host_cpu		The configuration host CPU#   newlib_mb		--enable-newlib-mb ("yes", "no")#   target_optspace	--enable-target-optspace ("yes", "no", "")# It sets the following shell variables:#   newlib_cflags	Special CFLAGS to use when building#   machine_dir		Subdirectory of libc/machine to configure#   sys_dir		Subdirectory of libc/sys to configure#   posix_dir		"posix" to build libc/posix, "" otherwise#   signal_dir		"signal" to build libc/signal, "" otherwise#   syscall_dir		"syscalls" to build libc/syscalls, "" otherwise#   unix_dir		"unix" to build libc/unix, "" otherwise#   use_libtool         flag: use libtool to build newlib?#   aext                library extension - needed for libtool support#   oext                object file extension - needed for libtool supportnewlib_cflags=libm_machine_dir=machine_dir=sys_dir=posix_dir=signal_dir=signalsyscall_dir=unix_dir=mach_add_setjmp=use_libtool=noaext=aoext=ocase "${target_optspace}:${host}" in  yes:*)    newlib_cflags="${newlib_cflags} -Os"    ;;  :m32r-* | :d10v-* | :d30v-* | :avr-*)    newlib_cflags="${newlib_cflags} -Os"    ;;  no:* | :*)    newlib_cflags="${newlib_cflags} -O2"    ;;esac# Get the source directories to use for the CPU type.# machine_dir should supply CPU dependent routines, such as setjmp.# newlib_cflags is passed to gcc when compiling.# THIS TABLE IS ALPHA SORTED.  KEEP IT THAT WAY.case "${host_cpu}" in  a29k)	machine_dir=a29k	;;  arc)	machine_dir=	;;  arm)	machine_dir=arm	;;  avr*)	newlib_cflags="${newlib_cflags} -DPREFER_SIZE_OVER_SPEED -mcall-prologues"	;;  d10v*)	machine_dir=d10v	;;  d30v*)	machine_dir=d30v	;;  fr30)	machine_dir=fr30	;;  h8300)	machine_dir=h8300	;;  h8500)	machine_dir=h8500	;;  hppa*)	machine_dir=hppa	;;  i960)	machine_dir=i960	;;  i[3456]86)	# Don't use for these since they provide their own setjmp.	case ${host} in	*-*-go32 | *-*-sco* | *-*-cygwin*) 		libm_machine_dir=i386		machine_dir=i386		;;	*) 		libm_machine_dir=i386		machine_dir=i386		mach_add_setjmp=true		;;	esac	;;  ia64*)	;;  m32r*)	machine_dir=m32r	;;  m68*)	machine_dir=m68k	;;  m88k)	machine_dir=m88k	newlib_cflags="${newlib_cflags} -m88000"	;;  m88110)	machine_dir=m88k	newlib_cflags="${newlib_cflags} -m88110"	;;  mcore)	;;  mips*)	machine_dir=mips	;;  mmix)	;;  mn10200)	machine_dir=mn10200	;;  mn10300)	machine_dir=mn10300	;;  or16)	;;  or32)	;;  powerpc*)	machine_dir=powerpc	;;  sh)	machine_dir=sh	;;  sparc*)	machine_dir=sparc	# FIXME: Might wish to make MALLOC_ALIGNMENT more generic.	newlib_cflags="${newlib_cflags} -DMALLOC_ALIGNMENT=8"	;;  strongarm)	machine_dir=arm	;;  xscale)	machine_dir=xscale	;;  thumb)	machine_dir=arm	;;  tic80*)	machine_dir=tic80	;;  v70)	;;  v810)	;;  v850)	machine_dir=v850	newlib_cflags="${newlib_cflags} -DPREFER_SIZE_OVER_SPEED -mv850 "	;;  v850e)	machine_dir=v850	newlib_cflags="${newlib_cflags} -DPREFER_SIZE_OVER_SPEED -mv850 "	;;  v850ea)	machine_dir=v850	newlib_cflags="${newlib_cflags} -DPREFER_SIZE_OVER_SPEED -mv850 "	;;  w65*)	machine_dir=w65	;;  z8k)	machine_dir=z8k	;;  *)	echo '***' "Newlib does not support CPU ${host_cpu}" 1>&2	exit 1	;;esac# Enable multibyte support if requested.if [ "${newlib_mb}" = "yes" ] ; then	newlib_cflags="${newlib_cflags} -DMB_CAPABLE"fi# Verify if shared newlib support is allowed and set appropriate variables# We don't want to use libtool for platforms that we are not going to# support shared libraries.  This is because it adds executable tests which# we don't want for most embedded platforms.case "${host}" in  i[3456]86-pc-linux-*)    use_libtool=yes    oext=lo    aext=la ;;  *) ;; #shared library not supported for ${host}esac# Get the source directories to use for the host.  unix_dir is set# to unix to get some standard Unix routines.  posix_dir is set to get some# standard Posix routines.  sys_dir should supply system dependent routines# including crt0.# THIS TABLE IS ALPHA SORTED.  KEEP IT THAT WAY.case "${host}" in  *-*-cygwin*)	sys_dir=cygwin	posix_dir=posix	;;  *-*-netware*)	signal_dir=	sys_dir=netware	;;  *-*-rtems*)			# generic RTEMS support	sys_dir=rtems        # RTEMS POSIX support is all inside RTEMS	;;  a29k-*-*)	sys_dir=a29khif	signal_dir=	;;  arc-*-*)	sys_dir=arc	;;  arm-*-*)	sys_dir=arm 	;;  d10v*)	sys_dir=d10v	;;  d30v*)	sys_dir=	;;  h8300-*-hms*)	sys_dir=h8300hms	;;  h8300-*-elf*)	sys_dir=h8300hms	;;  h8300-*-xray*)	sys_dir=h8300xray	;;  h8500-*-hms*)	sys_dir=h8500hms	;;  h8500-*-elf*)	sys_dir=h8500hms	;;  i[3456]86-*-go32)	sys_dir=go32	;;  i[3456]86-*-sco*)	sys_dir=sysvi386	unix_dir=unix	;;  i[3456]86-pc-linux-*)	sys_dir=linux	unix_dir=unix	posix_dir=posix	gcc_dir=`gcc -print-search-dirs | awk '/^install:/{print $2}'`	#newlib_cflags="${newlib_cflags} -Werror" # DEBUGGING ONLY;BREAKS BUILD	newlib_cflags="${newlib_cflags} -Wall"	newlib_cflags="${newlib_cflags} -D_I386MACH_ALLOW_HW_INTERRUPTS"	newlib_cflags="${newlib_cflags} -D_LOOSE_KERNEL_NAMES -DHAVE_FCNTL"	# --- Required when building a shared library ------------------------	newlib_cflags="${newlib_cflags} -fPIC -D_I386MACH_NEED_SOTYPE_FUNCTION"	# --- The three lines below are optional ------------------------------	##newlib_cflags="${newlib_cflags} -nostdinc"	##newlib_cflags="${newlib_cflags} -I`newlib-flags --kernel-dir`/include"	##newlib_cflags="${newlib_cflags} -idirafter ${gcc_dir}include"	;;  m68k-sun-sunos*)	unix_dir=unix	;;  m8*-bug-*)	sys_dir=m88kbug	;;  mips*-dec-*)	sys_dir=decstation	;;  mmix-knuth-mmixware)	sys_dir=mmixware	;;  powerpcle-*-pe)	sys_dir=cygwin	posix_dir=posix	;;  sh*-*)	sys_dir=sh	;;  sparc-sun-sunos*)	sys_dir=sun4	unix_dir=unix	;;  sparc64*)	sys_dir=sparc64	unix_dir=unix	;;  strongarm-*-*)	sys_dir=arm 	;;  xscale-*-*)	sys_dir=arm 	;;  thumb-*-*)	sys_dir=arm 	;;  tic80*)	sys_dir=tic80	;;  v70-nec-*)	sys_dir=sysvnecv70	;;  v810-*-*)	sys_dir=sysnec810	;;  v850-*-*)	sys_dir=sysnecv850	;;  v850e-*-*)	sys_dir=sysnecv850	;;  v850ea-*-*)	sys_dir=sysnecv850	;;  *-*-visopsys*)	sys_dir=visopsys	;;  w65-*-*)	sys_dir=w65	;;  z8k-*-coff)	sys_dir=z8ksim	;;esac# Host specific flag settings -- usually for features that are not# general enough or broad enough to be handled above.# THIS TABLE IS ALPHA SORTED.  KEEP IT THAT WAY.case "${host}" in  *-*-cygwin*)	newlib_cflags="${newlib_cflags} -DHAVE_OPENDIR -DHAVE_RENAME -DSIGNAL_PROVIDED -DWANT_IO_LONG_DBL -DWANT_PRINTF_LONG_LONG -D_COMPILING_NEWLIB -DHAVE_FCNTL"# CYGWIN provides its own malloc if --enable-malloc-debugging is set	if [ "x${malloc_debugging}" = "xyes" ] ; then	  newlib_cflags="${newlib_cflags} -DMALLOC_PROVIDED"	fi	syscall_dir=syscalls	;;# RTEMS supplies its own versions of some routines:#       malloc()            (reentrant version)#       exit()              RTEMS has a "global" reent to flush#       signal()/raise()    RTEMS has its own including pthread signals#       _XYZ_r()            RTEMS has its own reentrant routines##  NOTE: When newlib malloc uses a semaphore, RTEMS will switch to that.  *-*-rtems*)	newlib_cflags="${newlib_cflags} -DHAVE_GETTIMEOFDAY -DMALLOC_PROVIDED -DEXIT_PROVIDED -DMISSING_SYSCALL_NAMES -DSIGNAL_PROVIDED -DREENTRANT_SYSCALLS_PROVIDED -DHAVE_OPENDIR -DNO_EXEC -DWANT_PRINTF_LONG_LONG -DHAVE_FCNTL"	;;# VxWorks supplies its own version of malloc, and the newlib one# doesn't work because VxWorks does not have sbrk.  *-wrs-vxworks*)	newlib_cflags="${newlib_cflags} -DMALLOC_PROVIDED -DMISSING_SYSCALL_NAMES -DHAVE_FCNTL"	;;# UDI doesn't have exec, so system() should fail the right way  a29k-amd-udi)	newlib_cflags="${newlib_cflags} -DNO_EXEC"	syscall_dir=syscalls	;;  arc-*-*)	syscall_dir=syscalls	;;  arm-*-pe)	syscall_dir=syscalls	newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"# Don't use the debugging protocols just yet.	;;  arm-*-*)	syscall_dir=syscalls	newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"# Select which debug protocol is being used.# ARM_RDP_MONITOR selects the Demon monitor.# ARM_RDI_MONITOR selects the Angel monitor.# If neither are defined, then hard coded defaults will be used# to create the program's environment.# See also thumb below.#	newlib_cflags="${newlib_cflags} -DARM_RDP_MONITOR"	newlib_cflags="${newlib_cflags} -DARM_RDI_MONITOR"	;;  avr*)	newlib_cflags="${newlib_cflags} -DNO_EXEC -DSMALL_MEMORY -DMISSING_SYSCALL_NAMES"	;;  d10v*)	newlib_cflags="${newlib_cflags} -DSMALL_MEMORY"	syscall_dir=syscalls	;;  d30v*)	newlib_cflags="${newlib_cflags} -DABORT_MESSAGE -DSMALL_MEMORY -DMISSING_SYSCALL_NAMES"	syscall_dir=	;;  fr30-*-*)	newlib_cflags="${newlib_cflags}"	syscall_dir=syscalls	;;  h8300*-*-*)	syscall_dir=syscalls		newlib_cflags="${newlib_cflags} -DSMALL_DTOA -DSMALL_MEMORY"	;;	  h8500-*-*)	syscall_dir=syscalls		newlib_cflags="${newlib_cflags} -DSMALL_DTOA -DSMALL_MEMORY"	;;	  i[3456]86-*-sco*)	newlib_cflags="${newlib_cflags} -DSIGNAL_PROVIDED -DHAVE_FCNTL"	;;  i[3456]86-*-netware*)	newlib_cflags="${newlib_cflags} -DMISSING_SYSCALL_NAMES -DNO_EXEC -DABORT_PROVIDED -DCLOCK_PROVIDED -DMALLOC_PROVIDED -DHAVE_FCNTL"	;;  i[3456]86-*-go32)	newlib_cflags="${newlib_cflags} -DMISSING_SYSCALL_NAMES -DNO_EXEC -DHAVE_FCNTL"	;;  m32r-*-*)	# Pass -msdata=sdata so _impure_ptr goes in .sdata.	# We don't generate sda relocs however for upward compatibility.	# FIXME: This is necessary because the default multilib doesn't	# use --print-multi-lib.	newlib_cflags="${newlib_cflags} -msdata=sdata"	syscall_dir=syscalls	;;  mcore-*-*)	newlib_cflags="${newlib_cflags}"	syscall_dir=syscalls	;;  mmix-*)	syscall_dir=syscalls	# We need every symbol 32-bit aligned, so the invalid	# construct with attribute ((alias ("_ctype_b+127"))) breaks.	newlib_cflags="${newlib_cflags} -DCOMPACT_CTYPE"	;;  mn10?00-*-*)	syscall_dir=syscalls	;;  powerpc*-*-eabi* | \  powerpc*-*-elf* | \  powerpc*-*-linux* | \  powerpc*-*-rtem* | \  powerpc*-*-sysv* | \  powerpc*-*-solaris*)	newlib_cflags="${newlib_cflags} -mrelocatable-lib -mno-eabi -mstrict-align -DMISSING_SYSCALL_NAMES"	;;  powerpcle-*-pe)	newlib_cflags="${newlib_cflags} -DHAVE_OPENDIR -DHAVE_RENAME -DHAVE_FCNTL"	syscall_dir=syscalls	;;  sh*-*-*)	newlib_cflags="${newlib_cflags} -DHAVE_GETTIMEOFDAY"	syscall_dir=syscalls	;;  sparc-sun-sunos*)	newlib_cflags="${newlib_cflags} -DSIGNAL_PROVIDED"	;;  sparc64-*-*)	newlib_cflags="${newlib_cflags} -DREENTRANT_SYSCALLS_PROVIDED -DHAVE_BLKSIZE -DHAVE_GETTIMEOFDAY -DHAVE_FCNTL"	# This either belongs elsewhere or nowhere. But I need *something*,	# so for now it's here ...	case "${host_os}" in	  aoutv8 | *32p)		newlib_cflags="${newlib_cflags} -DTARGET_PTR_SIZE=32" ;;	  *)		newlib_cflags="${newlib_cflags} -DTARGET_PTR_SIZE=64" ;;	esac	;;  strongarm-*-*)	syscall_dir=syscalls	newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"	newlib_cflags="${newlib_cflags} -DARM_RDI_MONITOR"	;;  xscale-*-*)	syscall_dir=syscalls	newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"	newlib_cflags="${newlib_cflags} -DARM_RDI_MONITOR"	;;  thumb-*-pe)	syscall_dir=syscalls	newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"# Don't use the debugging protocols just yet.	;;  thumb-*-*)	syscall_dir=syscalls	newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"# Select which debug protocol is being used.# ARM_RDP_MONITOR selects the Demon monitor.# ARM_RDI_MONITOR selects the Angel monitor.# If neither are defined, then hard coded defaults will be used# to create the program's environment.# See also arm and strongarm above.#	newlib_cflags="${newlib_cflags} -DARM_RDP_MONITOR"	newlib_cflags="${newlib_cflags} -DARM_RDI_MONITOR"	;;  tic80*)	syscall_dir=syscalls	;;  v850-*-*)	syscall_dir=syscalls	;;  v850e-*-*)	syscall_dir=syscalls	;;  v850ea-*-*)	syscall_dir=syscalls	;;  w65-*-*)	syscall_dir=syscalls		newlib_cflags="${newlib_cflags} -DSMALL_DTOA -DSMALL_MEMORY"	;;	  z8k-*-*)	syscall_dir=syscalls	;;  *)	newlib_cflags="${newlib_cflags} -DMISSING_SYSCALL_NAMES"	syscall_dir=	;;esac

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩国产欧美在线播放| 国产精品久久久久影院| 成人app网站| 5566中文字幕一区二区电影 | 青青草原综合久久大伊人精品优势| 日韩女优制服丝袜电影| 国产原创一区二区三区| 色嗨嗨av一区二区三区| 日韩美一区二区三区| 尤物在线观看一区| 精品在线免费观看| 欧美性大战xxxxx久久久| 日韩一级精品视频在线观看| 日韩精品一区二| 亚洲欧美日本在线| 国产成人精品免费在线| 日韩一级欧美一级| 色av一区二区| 久久只精品国产| 午夜亚洲国产au精品一区二区| 国产精品一区二区在线播放| 欧美电影影音先锋| 亚洲午夜免费福利视频| 波波电影院一区二区三区| 欧美刺激脚交jootjob| 自拍av一区二区三区| 免费在线成人网| 在线播放一区二区三区| 亚洲精品伦理在线| 国产91对白在线观看九色| 4438成人网| 一区二区三区日韩精品视频| 国产 欧美在线| 久久久久成人黄色影片| 五月激情丁香一区二区三区| 在线视频观看一区| 亚洲欧美另类图片小说| 免费xxxx性欧美18vr| 91精品国产综合久久精品图片| 综合激情网...| 91看片淫黄大片一级在线观看| 欧美大肚乱孕交hd孕妇| 五月天视频一区| 精品1区2区3区| 最新国产精品久久精品| 国产美女视频一区| 制服.丝袜.亚洲.中文.综合| 日韩精品欧美成人高清一区二区| 91久久免费观看| 亚洲一区二区三区视频在线播放| 色中色一区二区| 国产色一区二区| 国产精品1区2区3区在线观看| 欧美一区二区三区喷汁尤物| 亚洲第一福利一区| 欧美三级午夜理伦三级中视频| 午夜精品福利在线| 欧美日韩成人综合| 奇米色777欧美一区二区| 69久久夜色精品国产69蝌蚪网| 日本欧美加勒比视频| 在线播放91灌醉迷j高跟美女| 香港成人在线视频| 99re亚洲国产精品| 亚洲精选视频免费看| a美女胸又www黄视频久久| 国产精品美女久久久久久久久久久 | 艳妇臀荡乳欲伦亚洲一区| 国产一区二区在线观看免费| 中文字幕不卡在线观看| 成人久久久精品乱码一区二区三区| 亚洲色欲色欲www在线观看| 色综合天天狠狠| 日韩经典一区二区| 欧美成人欧美edvon| 国产成人亚洲精品青草天美| 国产欧美日本一区视频| 不卡一区二区三区四区| 国产精品福利一区二区| 91在线观看美女| 亚洲永久精品大片| 成人h精品动漫一区二区三区| 亚洲精品伦理在线| 精品视频在线视频| 五月婷婷激情综合| 精品国产sm最大网站免费看| 国产高清久久久| 中文字幕一区在线观看| 欧美精品在线观看播放| 久久精品国产一区二区| 中文字幕五月欧美| 欧美最猛性xxxxx直播| 国产在线一区二区综合免费视频| 久久精品一区四区| 日本二三区不卡| 爽好久久久欧美精品| 国产午夜精品美女毛片视频| 97精品国产露脸对白| 欧美成人一区二区三区片免费 | 伊人婷婷欧美激情| av激情综合网| 久久激情综合网| 综合av第一页| 亚洲精品一区二区三区蜜桃下载| 成人av高清在线| 日本不卡1234视频| 国产精品家庭影院| 欧美电影免费观看高清完整版在| www.色综合.com| 九九视频精品免费| 日本一二三不卡| 5566中文字幕一区二区电影| 国产一区亚洲一区| 午夜激情综合网| 中文字幕巨乱亚洲| 欧美美女bb生活片| 国产在线看一区| 日韩一区欧美小说| 日韩欧美一区在线| 91在线一区二区| 另类小说视频一区二区| 国产拍欧美日韩视频二区| youjizz国产精品| 久久99热狠狠色一区二区| 国产精品电影一区二区| 精品区一区二区| 一本久久精品一区二区| 蜜桃av一区二区三区电影| 亚洲男人的天堂av| 日韩精品资源二区在线| 在线观看免费亚洲| 久久99国产精品久久| 亚洲一区自拍偷拍| 欧美经典一区二区| 3d成人动漫网站| 国产福利一区二区三区视频| 亚洲福利电影网| 久久久av毛片精品| 91欧美一区二区| 国产精品夜夜嗨| 韩国欧美国产1区| 亚洲18色成人| 亚洲成人av中文| 久久网这里都是精品| 日韩精品一区二区三区中文不卡| 在线看日韩精品电影| 色哟哟精品一区| 不卡一二三区首页| 国产成人自拍在线| 久久国产综合精品| 久久精品国产一区二区三区免费看| 亚洲电影你懂得| 亚洲一区欧美一区| 亚洲女与黑人做爰| 亚洲免费视频成人| 国产精品动漫网站| 亚洲女同一区二区| 亚洲欧美日韩电影| 亚洲精品亚洲人成人网在线播放| 中文av一区二区| 日韩欧美国产三级| 7777精品伊人久久久大香线蕉最新版 | 9191国产精品| 色视频成人在线观看免| 在线影院国内精品| 91视频在线观看| 在线看不卡av| 91免费视频大全| 欧洲国产伦久久久久久久| 99久精品国产| 91黄视频在线| 97久久久精品综合88久久| 欧洲视频一区二区| 欧洲精品一区二区三区在线观看| 在线精品视频免费观看| 欧美日韩久久久久久| 欧美日韩电影一区| 欧美tk—视频vk| 欧美日韩亚洲综合| 日韩一区二区免费在线电影| 欧美一区二区福利视频| 久久一夜天堂av一区二区三区| 欧美日韩精品一区二区在线播放| 欧美一卡二卡三卡四卡| 日韩欧美美女一区二区三区| 久久精品亚洲麻豆av一区二区 | 在线观看精品一区| 欧美精品久久99久久在免费线 | 国产高清在线精品| 高清不卡在线观看av| 国产成人精品www牛牛影视| 国产精品一区一区| a亚洲天堂av| 欧美精品丝袜中出| 欧美成人a∨高清免费观看| 国产精品麻豆欧美日韩ww| 亚洲人成伊人成综合网小说| 国产精品丝袜久久久久久app| 亚洲激情网站免费观看| 日本aⅴ亚洲精品中文乱码|