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

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

?? arm-softfloat.patch.conditional

?? 用于生成linux操作系統下的交叉編譯工具鏈和嵌入式linux系統的根文件系統,支持x86、arm、powerpc等處理器
?? CONDITIONAL
字號:
Note... modified my mjn3 to not conflict with the big endian arm patch.Warning!!!  Only the linux target is aware of TARGET_ENDIAN_DEFAULT.Also changed  #define SUBTARGET_EXTRA_ASM_SPEC "\  %{!mcpu=*:-mcpu=xscale} \  %{mhard-float:-mfpu=fpa} \  %{!mhard-float: %{msoft-float:-mfpu=softfpa} %{!msoft-float:-mfpu=softvfp}}"to  #define SUBTARGET_EXTRA_ASM_SPEC "\  %{mhard-float:-mfpu=fpa} \  %{!mhard-float: %{msoft-float:-mfpu=softfpa} %{!msoft-float:-mfpu=softvfp}}"in gcc/config/arm/linux-elf.h.## Submitted:## Dimitry Andric <dimitry@andric.com>, 2004-05-01## Description:## Nicholas Pitre released this patch for gcc soft-float support here: # http://lists.arm.linux.org.uk/pipermail/linux-arm/2003-October/006436.html## This version has been adapted to work with gcc 3.4.0.## The original patch doesn't distinguish between softfpa and softvfp modes# in the way Nicholas Pitre probably meant.  His description is:## "Default is to use APCS-32 mode with soft-vfp.  The old Linux default for# floats can be achieved with -mhard-float or with the configure# --with-float=hard option.  If -msoft-float or --with-float=soft is used then# software float support will be used just like the default but with the legacy# big endian word ordering for double float representation instead."## Which means the following:## * If you compile without -mhard-float or -msoft-float, you should get#   software floating point, using the VFP format.  The produced object file#   should have these flags in its header:##     private flags = 600: [APCS-32] [VFP float format] [software FP]## * If you compile with -mhard-float, you should get hardware floating point,#   which always uses the FPA format.  Object file header flags should be:##     private flags = 0: [APCS-32] [FPA float format]## * If you compile with -msoft-float, you should get software floating point,#   using the FPA format.  This is done for compatibility reasons with many#   existing distributions.  Object file header flags should be:##     private flags = 200: [APCS-32] [FPA float format] [software FP]## The original patch from Nicholas Pitre contained the following constructs:##   #define SUBTARGET_EXTRA_ASM_SPEC "%{!mcpu=*:-mcpu=xscale} \#     %{mhard-float:-mfpu=fpa} \#     %{!mhard-float: %{msoft-float:-mfpu=softfpa;:-mfpu=softvfp}}"## However, gcc doesn't accept this ";:" notation, used in the 3rd line.  This# is probably the reason Robert Schwebel modified it to:##   #define SUBTARGET_EXTRA_ASM_SPEC "%{!mcpu=*:-mcpu=xscale} \#     %{mhard-float:-mfpu=fpa} \#     %{!mhard-float: %{msoft-float:-mfpu=softfpa -mfpu=softvfp}}"## But this causes the following behaviour:## * If you compile without -mhard-float or -msoft-float, the compiler generates#   software floating point instructions, but *nothing* is passed to the#   assembler, which results in an object file which has flags:##     private flags = 0: [APCS-32] [FPA float format]##   This is not correct!## * If you compile with -mhard-float, the compiler generates hardware floating#   point instructions, and passes "-mfpu=fpa" to the assembler, which results#   in an object file which has the same flags as in the previous item, but now#   those *are* correct.#    # * If you compile with -msoft-float, the compiler generates software floating#   point instructions, and passes "-mfpu=softfpa -mfpu=softvfp" (in that#   order) to the assembler, which results in an object file with flags:##   private flags = 600: [APCS-32] [VFP float format] [software FP]##   This is not correct, because the last "-mfpu=" option on the assembler#   command line determines the actual FPU convention used (which should be FPA#   in this case).## Therefore, I modified this patch to get the desired behaviour.  Every# instance of the notation:##   %{msoft-float:-mfpu=softfpa -mfpu=softvfp}## was changed to:##   %{msoft-float:-mfpu=softfpa} %{!msoft-float:-mfpu=softvfp}## I also did the following:# # * Modified all TARGET_DEFAULT macros I could find to include ARM_FLAG_VFP, to#   be consistent with Nicholas' original patch.# * Removed any "msoft-float" or "mhard-float" from all MULTILIB_DEFAULTS#   macros I could find.  I think that if you compile without any options, you#   would like to get the defaults. :)# * Removed the extra -lfloat option from LIBGCC_SPEC, since it isn't needed#   anymore.  (The required functions are now in libgcc.)diff -urN gcc-3.4.1-old/gcc/config/arm/coff.h gcc-3.4.1/gcc/config/arm/coff.h--- gcc-3.4.1-old/gcc/config/arm/coff.h	2004-02-24 08:25:22.000000000 -0600+++ gcc-3.4.1/gcc/config/arm/coff.h	2004-09-02 21:51:15.000000000 -0500@@ -31,11 +31,16 @@ #define TARGET_VERSION fputs (" (ARM/coff)", stderr)  #undef  TARGET_DEFAULT-#define TARGET_DEFAULT (ARM_FLAG_SOFT_FLOAT | ARM_FLAG_APCS_32 | ARM_FLAG_APCS_FRAME | ARM_FLAG_MMU_TRAPS)+#define TARGET_DEFAULT		\+	( ARM_FLAG_SOFT_FLOAT	\+	| ARM_FLAG_VFP		\+	| ARM_FLAG_APCS_32	\+	| ARM_FLAG_APCS_FRAME	\+	| ARM_FLAG_MMU_TRAPS )  #ifndef MULTILIB_DEFAULTS #define MULTILIB_DEFAULTS \-  { "marm", "mlittle-endian", "msoft-float", "mapcs-32", "mno-thumb-interwork" }+  { "marm", "mlittle-endian", "mapcs-32", "mno-thumb-interwork" } #endif  /* This is COFF, but prefer stabs.  */diff -urN gcc-3.4.1-old/gcc/config/arm/elf.h gcc-3.4.1/gcc/config/arm/elf.h--- gcc-3.4.1-old/gcc/config/arm/elf.h	2004-02-24 08:25:22.000000000 -0600+++ gcc-3.4.1/gcc/config/arm/elf.h	2004-09-02 21:51:15.000000000 -0500@@ -46,7 +46,9 @@  #ifndef SUBTARGET_ASM_FLOAT_SPEC #define SUBTARGET_ASM_FLOAT_SPEC "\-%{mapcs-float:-mfloat} %{msoft-float:-mfpu=softfpa}"+%{mapcs-float:-mfloat} \+%{mhard-float:-mfpu=fpa} \+%{!mhard-float: %{msoft-float:-mfpu=softfpa} %{!msoft-float:-mfpu=softvfp}}" #endif  #ifndef ASM_SPEC@@ -106,12 +108,17 @@ #endif  #ifndef TARGET_DEFAULT-#define TARGET_DEFAULT (ARM_FLAG_SOFT_FLOAT | ARM_FLAG_APCS_32 | ARM_FLAG_APCS_FRAME | ARM_FLAG_MMU_TRAPS)+#define TARGET_DEFAULT		\+	( ARM_FLAG_SOFT_FLOAT	\+	| ARM_FLAG_VFP		\+	| ARM_FLAG_APCS_32	\+	| ARM_FLAG_APCS_FRAME	\+	| ARM_FLAG_MMU_TRAPS ) #endif  #ifndef MULTILIB_DEFAULTS #define MULTILIB_DEFAULTS \-  { "marm", "mlittle-endian", "msoft-float", "mapcs-32", "mno-thumb-interwork", "fno-leading-underscore" }+  { "marm", "mlittle-endian", "mapcs-32", "mno-thumb-interwork", "fno-leading-underscore" } #endif  #define TARGET_ASM_FILE_START_APP_OFF truediff -urN gcc-3.4.1-old/gcc/config/arm/linux-elf.h gcc-3.4.1/gcc/config/arm/linux-elf.h--- gcc-3.4.1-old/gcc/config/arm/linux-elf.h	2004-09-02 21:50:52.000000000 -0500+++ gcc-3.4.1/gcc/config/arm/linux-elf.h	2004-09-02 22:00:49.000000000 -0500@@ -44,12 +44,26 @@ #define TARGET_LINKER_EMULATION "armelf_linux" #endif -/* Default is to use APCS-32 mode.  */+/*+ * Default is to use APCS-32 mode with soft-vfp.+ * The old Linux default for floats can be achieved with -mhard-float+ * or with the configure --with-float=hard option.+ * If -msoft-float or --with-float=soft is used then software float + * support will be used just like the default but with the legacy+ * big endian word ordering for double float representation instead.+ */ #undef  TARGET_DEFAULT-#define TARGET_DEFAULT \-		( ARM_FLAG_APCS_32 | \-		  ARM_FLAG_MMU_TRAPS | \-		  TARGET_ENDIAN_DEFAULT )+#define TARGET_DEFAULT		\+	( ARM_FLAG_APCS_32	\+	| ARM_FLAG_SOFT_FLOAT	\+	| TARGET_ENDIAN_DEFAULT	\+	| ARM_FLAG_VFP		\+	| ARM_FLAG_MMU_TRAPS )++#undef  SUBTARGET_EXTRA_ASM_SPEC+#define SUBTARGET_EXTRA_ASM_SPEC "\+%{mhard-float:-mfpu=fpa} \+%{!mhard-float: %{msoft-float:-mfpu=softfpa} %{!msoft-float:-mfpu=softvfp}}"  #define SUBTARGET_CPU_DEFAULT TARGET_CPU_arm6 @@ -57,7 +71,7 @@  #undef  MULTILIB_DEFAULTS #define MULTILIB_DEFAULTS \-	{ "marm", TARGET_ENDIAN_OPTION, "mhard-float", "mapcs-32", "mno-thumb-interwork" }+	{ "marm", TARGET_ENDIAN_OPTION, "mapcs-32", "mno-thumb-interwork" }  #define CPP_APCS_PC_DEFAULT_SPEC "-D__APCS_32__" @@ -72,7 +86,7 @@    %{shared:-lc} \    %{!shared:%{profile:-lc_p}%{!profile:-lc}}" -#define LIBGCC_SPEC "%{msoft-float:-lfloat} -lgcc"+#define LIBGCC_SPEC "-lgcc"  /* Provide a STARTFILE_SPEC appropriate for GNU/Linux.  Here we add    the GNU/Linux magical crtbegin.o file (see crtstuff.c) whichdiff -urN gcc-3.4.1-old/gcc/config/arm/t-linux gcc-3.4.1/gcc/config/arm/t-linux--- gcc-3.4.1-old/gcc/config/arm/t-linux	2003-09-20 16:09:07.000000000 -0500+++ gcc-3.4.1/gcc/config/arm/t-linux	2004-09-02 21:51:15.000000000 -0500@@ -4,7 +4,10 @@ LIBGCC2_DEBUG_CFLAGS = -g0  LIB1ASMSRC = arm/lib1funcs.asm-LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_lnx+LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_lnx \+	_negdf2 _addsubdf3 _muldivdf3 _cmpdf2 _unorddf2 _fixdfsi _fixunsdfsi \+	_truncdfsf2 _negsf2 _addsubsf3 _muldivsf3 _cmpsf2 _unordsf2 \+	_fixsfsi _fixunssfsi  # MULTILIB_OPTIONS = mhard-float/msoft-float # MULTILIB_DIRNAMES = hard-float soft-floatdiff -urN gcc-3.4.1-old/gcc/config/arm/unknown-elf.h gcc-3.4.1/gcc/config/arm/unknown-elf.h--- gcc-3.4.1-old/gcc/config/arm/unknown-elf.h	2004-02-24 08:25:22.000000000 -0600+++ gcc-3.4.1/gcc/config/arm/unknown-elf.h	2004-09-02 21:51:15.000000000 -0500@@ -30,7 +30,12 @@  /* Default to using APCS-32 and software floating point.  */ #ifndef TARGET_DEFAULT-#define TARGET_DEFAULT	(ARM_FLAG_SOFT_FLOAT | ARM_FLAG_APCS_32 | ARM_FLAG_APCS_FRAME | ARM_FLAG_MMU_TRAPS)+#define TARGET_DEFAULT		\+	( ARM_FLAG_SOFT_FLOAT	\+	| ARM_FLAG_VFP		\+	| ARM_FLAG_APCS_32	\+	| ARM_FLAG_APCS_FRAME	\+	| ARM_FLAG_MMU_TRAPS ) #endif  /* Now we define the strings used to build the spec file.  */diff -urN gcc-3.4.1-old/gcc/config/arm/xscale-elf.h gcc-3.4.1/gcc/config/arm/xscale-elf.h--- gcc-3.4.1-old/gcc/config/arm/xscale-elf.h	2003-07-01 18:26:43.000000000 -0500+++ gcc-3.4.1/gcc/config/arm/xscale-elf.h	2004-09-02 21:51:15.000000000 -0500@@ -49,11 +49,12 @@ 		     endian, regardless of the endian-ness of the memory 		     system.  */ 		     -#define SUBTARGET_EXTRA_ASM_SPEC "%{!mcpu=*:-mcpu=xscale} \-  %{mhard-float:-mfpu=fpa} \-  %{!mhard-float: %{msoft-float:-mfpu=softfpa;:-mfpu=softvfp}}"+#define SUBTARGET_EXTRA_ASM_SPEC "\+%{!mcpu=*:-mcpu=xscale} \+%{mhard-float:-mfpu=fpa} \+%{!mhard-float: %{msoft-float:-mfpu=softfpa} %{!msoft-float:-mfpu=softvfp}}"  #ifndef MULTILIB_DEFAULTS #define MULTILIB_DEFAULTS \-  { "mlittle-endian", "mno-thumb-interwork", "marm", "msoft-float" }+  { "mlittle-endian", "mno-thumb-interwork", "marm" } #endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成人免费视频| 日本aⅴ亚洲精品中文乱码| 一区二区理论电影在线观看| 美腿丝袜一区二区三区| 99v久久综合狠狠综合久久| 日韩精品一区二区三区老鸭窝| 国产精品沙发午睡系列990531| 日韩av在线播放中文字幕| 91网站最新地址| 久久久久久99久久久精品网站| 天天操天天色综合| 91色综合久久久久婷婷| 欧美电影一区二区| 五月天久久比比资源色| 国产成人av福利| 欧美一级欧美三级在线观看 | 精品一区二区在线观看| 91美女片黄在线| 欧美极品aⅴ影院| 韩国女主播一区二区三区| 欧美日本精品一区二区三区| 一区二区在线观看不卡| av一区二区不卡| 国产欧美日韩一区二区三区在线观看| 久久成人免费网| 3d成人h动漫网站入口| 亚洲自拍欧美精品| 97精品电影院| 亚洲欧美日韩国产综合| 白白色 亚洲乱淫| 国产精品国产a级| 成人永久看片免费视频天堂| 国产亚洲一区字幕| 成人在线综合网| 亚洲色图视频免费播放| 99在线精品一区二区三区| 国产精品妹子av| av电影在线观看一区| 亚洲欧洲精品成人久久奇米网| 成人高清在线视频| 亚洲欧洲av在线| 奇米精品一区二区三区在线观看| 国产一区在线观看麻豆| 日韩欧美国产麻豆| 亚洲国产精品久久人人爱| 日本高清不卡一区| 一区二区三区不卡视频| 欧美亚洲国产bt| 午夜av一区二区三区| 欧美一激情一区二区三区| 蜜桃av一区二区三区电影| 欧美不卡一二三| 国产精品系列在线观看| 国产精品国产馆在线真实露脸| 91浏览器入口在线观看| 亚洲国产综合人成综合网站| 欧美大片国产精品| 粉嫩在线一区二区三区视频| 亚洲精品免费一二三区| 欧美一级淫片007| 北条麻妃一区二区三区| 亚洲成人手机在线| 久久综合色8888| 91官网在线免费观看| 日韩高清不卡在线| 中文字幕av免费专区久久| 日韩视频中午一区| 一区二区三区久久| 337p亚洲精品色噜噜噜| 国产.欧美.日韩| 一区二区三区免费网站| 日韩欧美国产一区二区三区| 9l国产精品久久久久麻豆| 亚洲h精品动漫在线观看| 久久伊人中文字幕| 欧美丝袜丝nylons| 国产福利一区在线| 丝袜亚洲另类欧美综合| 中文字幕 久热精品 视频在线 | 精品国产免费一区二区三区四区| av一本久道久久综合久久鬼色| 蜜臀久久久99精品久久久久久| 中文字幕乱码日本亚洲一区二区 | 中文字幕成人av| 91精品国产aⅴ一区二区| 99视频超级精品| 国产一区二区在线观看视频| 亚洲线精品一区二区三区 | 久久精品国产在热久久| 亚洲免费色视频| 国产午夜精品理论片a级大结局| 欧美理论电影在线| 97超碰欧美中文字幕| 国产在线一区二区| 蜜桃av一区二区三区| 亚洲大尺度视频在线观看| 国产精品久久久久久久久动漫 | 亚洲永久免费av| 一色屋精品亚洲香蕉网站| 国产亚洲精品aa| 精品对白一区国产伦| 欧美一区二区三区播放老司机| 欧美丝袜第三区| 日本道色综合久久| 97精品超碰一区二区三区| 成人精品gif动图一区| 国产一区二区调教| 韩国一区二区视频| 韩国av一区二区三区| 久久99精品国产.久久久久 | 国产日韩精品一区二区三区| 久久久国产一区二区三区四区小说 | 国产视频一区在线观看 | 欧美一区二区在线视频| 欧美久久久久久久久久| 欧美美女一区二区| 欧美伦理影视网| 日韩一区二区中文字幕| 6080午夜不卡| 欧美一区二区在线免费观看| 日韩久久久精品| 久久综合一区二区| 国产人伦精品一区二区| 中文字幕第一区| 亚洲男同1069视频| 亚洲小说春色综合另类电影| 日本欧美在线观看| 国产一区二区三区四区在线观看| 国产麻豆午夜三级精品| 成人黄色软件下载| 色哟哟日韩精品| 欧美理论电影在线| 精品99999| 亚洲视频资源在线| 亚洲国产视频直播| 美女久久久精品| gogogo免费视频观看亚洲一| 欧洲一区在线观看| 日韩女优电影在线观看| 国产午夜亚洲精品不卡| 亚洲色图丝袜美腿| 琪琪一区二区三区| 成人丝袜视频网| 91极品美女在线| 精品欧美一区二区在线观看| 国产精品区一区二区三| 亚洲国产一区二区a毛片| 久久99久久精品| 91网站在线播放| 日韩精品一区二区三区在线| 亚洲欧美激情小说另类| 男男成人高潮片免费网站| av一二三不卡影片| 欧美一区2区视频在线观看| 国产精品久久一卡二卡| 日韩精彩视频在线观看| 成人免费高清在线观看| 91麻豆精品国产91久久久更新时间| 久久久精品蜜桃| 日韩激情一二三区| 一本久久综合亚洲鲁鲁五月天| 欧美一级国产精品| 亚洲黄色免费电影| 国产成人鲁色资源国产91色综 | 国产呦精品一区二区三区网站| 在线观看欧美黄色| 久久婷婷综合激情| 三级不卡在线观看| 成人av高清在线| 久久久久久久电影| 蜜臀av性久久久久蜜臀aⅴ| 91免费看片在线观看| 26uuu国产一区二区三区| 亚洲大片免费看| 色婷婷一区二区三区四区| 国产亚洲精品资源在线26u| 麻豆国产精品777777在线| 欧美性一级生活| 亚洲丝袜制服诱惑| 成人av在线播放网站| 欧美电视剧免费全集观看| 亚洲成人自拍网| 欧美在线免费观看亚洲| 亚洲婷婷国产精品电影人久久| 国产成人免费在线| 久久色在线观看| 久久国产精品色| 日韩三级av在线播放| 日韩国产欧美在线观看| 在线观看国产一区二区| 一区二区三区在线影院| 色综合天天天天做夜夜夜夜做| 国产精品三级在线观看| 国产精品99久久久| 久久久久亚洲蜜桃| 国产专区欧美精品| 久久久另类综合| 国产a级毛片一区| 国产精品久久久久久久岛一牛影视| 成人三级伦理片|