亚洲欧美第一页_禁久久精品乱码_粉嫩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级| 成人综合日日夜夜| 国产精品对白交换视频 | 久久不见久久见免费视频7| 亚洲一区视频在线| 又紧又大又爽精品一区二区| 亚洲精品大片www| 亚洲一区二区三区三| 亚洲123区在线观看| 三级成人在线视频| 精品一区二区三区在线观看国产| 男人的天堂久久精品| 日产国产高清一区二区三区| 毛片av一区二区| 国产寡妇亲子伦一区二区| 国产 日韩 欧美大片| 丰满亚洲少妇av| 成人精品在线视频观看| 欧美亚洲一区二区在线观看| 欧美午夜在线观看| 在线国产亚洲欧美| 欧美日韩视频专区在线播放| 精品免费99久久| 国产精品国产三级国产普通话三级 | 国产午夜精品一区二区| 中文一区二区在线观看| 一区二区在线观看免费视频播放| 视频在线观看一区二区三区| 狠狠色伊人亚洲综合成人| 91小宝寻花一区二区三区| 欧美日韩免费电影| 久久久亚洲精品一区二区三区| 亚洲日本免费电影| 日本午夜精品视频在线观看| 国产精品一区三区| 日本韩国精品在线| 久久综合久久综合久久| 亚洲欧美另类图片小说| 日韩va亚洲va欧美va久久| 国产不卡在线视频| 欧美午夜精品久久久| 91精品在线观看入口| 亚洲欧美日韩国产一区二区三区| 另类小说视频一区二区| 欧美主播一区二区三区| 精品国产凹凸成av人导航| 亚洲精品菠萝久久久久久久| 日本一道高清亚洲日美韩| 成人av一区二区三区| 欧美一区二区在线看| 亚洲欧洲av一区二区三区久久| 日本午夜一区二区| 欧美在线观看一区二区| 国产精品成人免费在线| 国产精品一区二区x88av| 欧美一区二区视频在线观看2022| 亚洲精品视频一区二区| 大桥未久av一区二区三区中文| 欧美大片在线观看一区二区| 亚洲一区二区成人在线观看| 成人免费视频网站在线观看| 久久久99精品免费观看不卡| 日韩av网站免费在线| 欧美性欧美巨大黑白大战| 亚洲日本在线a| www.亚洲色图.com| 国产精品欧美一区二区三区| 美国毛片一区二区三区| 91精品国产免费久久综合| 亚洲va欧美va天堂v国产综合| 91视频.com| 亚洲美女屁股眼交| 91国产精品成人| 一区二区三区高清在线| 色妞www精品视频| 亚洲欧美aⅴ...| 91国产视频在线观看| 亚洲一区二区三区中文字幕在线| 91国产免费看| 午夜精品福利视频网站| 91精品国产高清一区二区三区| 视频一区二区国产| 欧美大尺度电影在线| 国产河南妇女毛片精品久久久 | 亚洲国产精品ⅴa在线观看| 国产suv精品一区二区6| 亚洲欧洲美洲综合色网| 欧美亚洲一区三区| 另类小说视频一区二区| 国产精品天干天干在观线| 91偷拍与自偷拍精品| 亚洲国产精品久久不卡毛片| 欧美一区二区视频在线观看| 狠狠色狠狠色综合系列| 亚洲视频综合在线| 91精品国产免费| 成人午夜私人影院| 亚洲mv在线观看| 久久天天做天天爱综合色| 97久久精品人人做人人爽| 亚洲高清免费视频| 久久久久9999亚洲精品| 91美女精品福利| 免费xxxx性欧美18vr| 国产精品美女www爽爽爽| 在线观看区一区二| 国产一区二区导航在线播放| 亚洲蜜臀av乱码久久精品| 日韩欧美国产一二三区| 97久久精品人人爽人人爽蜜臀| 视频在线观看国产精品| 国产精品女同一区二区三区| 777xxx欧美| av在线不卡网| 蜜桃一区二区三区在线| 亚洲欧美日韩久久精品| 久久色成人在线| 欧美嫩在线观看| gogo大胆日本视频一区| 麻豆91精品91久久久的内涵| 亚洲最大成人综合| 国产欧美日韩视频在线观看| 欧美老年两性高潮| 一本久道久久综合中文字幕 | 一区二区激情视频| 久久久精品影视| 欧美一级欧美一级在线播放| 日本精品一区二区三区高清 | 欧美日韩一区二区三区免费看 | 紧缚捆绑精品一区二区| 亚洲一区日韩精品中文字幕| 国产精品久久网站| 国产网站一区二区| 日韩欧美综合一区| 337p亚洲精品色噜噜噜| 欧美在线免费观看视频| 色综合天天综合在线视频| 国产成人免费视频网站| 国模冰冰炮一区二区| 久久丁香综合五月国产三级网站| 午夜日韩在线观看| 亚洲图片自拍偷拍| 一区二区欧美视频| 亚洲综合丁香婷婷六月香| 亚洲视频中文字幕| 日韩毛片视频在线看| 日韩毛片精品高清免费| 亚洲人成网站影音先锋播放| 亚洲丝袜精品丝袜在线| 亚洲精品国产精品乱码不99| 亚洲日本va在线观看| 亚洲欧洲精品一区二区精品久久久| 国产精品嫩草久久久久| 国产精品天干天干在线综合| 中文字幕一区二区三区乱码在线| 国产精品美女久久久久av爽李琼| 欧美激情在线一区二区三区| 中文字幕第一页久久| 中文字幕一区二区三区不卡在线| 亚洲视频一二三区| 亚洲一本大道在线| 日本va欧美va瓶| 久久se这里有精品| 国产精品538一区二区在线| 国产99久久久国产精品免费看| 成人av集中营| 欧美在线免费播放| 91精品国产全国免费观看 | 精品视频一区 二区 三区| 欧美日韩国产精品自在自线| 777色狠狠一区二区三区| 日韩亚洲欧美高清| 国产亚洲精品福利| 亚洲久本草在线中文字幕| 亚洲高清在线精品| 久久精品国产成人一区二区三区| 国内一区二区视频| 91亚洲精品久久久蜜桃网站 | 国产精品久久影院| 五月激情综合婷婷| 国产·精品毛片| 色悠久久久久综合欧美99| 69久久夜色精品国产69蝌蚪网| 久久久久久久久久电影| 一色屋精品亚洲香蕉网站| 午夜精彩视频在线观看不卡| 国产一区二区免费在线| 一本色道久久综合亚洲精品按摩| 日韩欧美一区二区视频| 中文字幕一区二区三区四区不卡 | 欧美一二三区在线观看| 国产精品欧美一区二区三区| 婷婷中文字幕综合| 成人免费av在线| 日韩欧美在线一区二区三区| 亚洲三级在线看| 国产综合色视频| 欧美精品日韩综合在线| 国产精品动漫网站| 另类小说视频一区二区|