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

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

?? arm-softfloat.patch.conditional

?? 用于生成linux操作系統(tǒng)下的交叉編譯工具鏈和嵌入式linux系統(tǒng)的根文件系統(tǒng),支持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

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品成人在线观看| 日本特黄久久久高潮 | 久久99精品一区二区三区三区| 亚洲精品国产a久久久久久 | 国产91精品免费| 国内偷窥港台综合视频在线播放| 麻豆国产精品一区二区三区| 久久av资源网| 国产精品影音先锋| 成人国产精品免费网站| 99国产精品一区| 色屁屁一区二区| 欧美色涩在线第一页| 欧美日韩aaa| 精品国产乱码久久久久久蜜臀 | 日本视频免费一区| 日本不卡中文字幕| 经典三级一区二区| 国产福利电影一区二区三区| 成人激情黄色小说| 91色婷婷久久久久合中文| 在线观看欧美黄色| 欧美日韩国产一级二级| 欧美va在线播放| 国产亚洲综合av| 中文字幕欧美激情一区| 亚洲欧美日韩国产综合在线| 亚洲妇女屁股眼交7| 喷白浆一区二区| 国产精品一区一区三区| 91免费精品国自产拍在线不卡| 在线观看欧美日本| 精品剧情v国产在线观看在线| 国产欧美日韩综合精品一区二区| 亚洲三级理论片| 日韩国产欧美在线播放| 国产风韵犹存在线视精品| 色综合中文字幕国产| 制服丝袜av成人在线看| 久久久高清一区二区三区| 亚洲欧美一区二区三区极速播放| 天堂一区二区在线| 国产精华液一区二区三区| 色婷婷激情综合| 精品乱人伦一区二区三区| 1000部国产精品成人观看| 午夜免费久久看| 国产69精品久久99不卡| 欧美一a一片一级一片| 精品国产乱码久久久久久蜜臀| 中文字幕在线播放不卡一区| 污片在线观看一区二区| 国产成人超碰人人澡人人澡| 欧美吞精做爰啪啪高潮| 欧美激情综合网| 视频一区视频二区中文字幕| 成人午夜视频在线观看| 日韩一区二区三区电影在线观看| 国产精品久久久久久久久久免费看 | 日韩一区二区在线观看视频| 亚洲欧洲av在线| 精品一区二区国语对白| 欧美艳星brazzers| 国产精品久久久久久久久久久免费看| 美日韩黄色大片| 91黄色激情网站| 中文字幕国产一区| 麻豆精品一区二区| 欧美日韩专区在线| 亚洲视频图片小说| 国产99一区视频免费| 日韩一区二区视频| 亚洲一区二区三区四区不卡| 成人动漫中文字幕| 久久女同互慰一区二区三区| 日韩精品一二三区| 欧美亚洲国产一区二区三区 | 青青草精品视频| 日本久久一区二区| 中文字幕一区二区三区在线观看 | 欧美亚日韩国产aⅴ精品中极品| 欧美国产日韩在线观看| 国内精品久久久久影院薰衣草| 欧美日韩激情在线| 亚洲国产精品一区二区尤物区| 不卡的电视剧免费网站有什么| 久久女同精品一区二区| 久久99深爱久久99精品| 日韩你懂的在线观看| 日本人妖一区二区| 欧美一区日本一区韩国一区| 亚洲va国产天堂va久久en| 欧美性一二三区| 亚洲一区精品在线| 在线观看一区日韩| 亚洲制服欧美中文字幕中文字幕| 91老司机福利 在线| 国产精品国产三级国产aⅴ入口 | av在线综合网| 国产精品国产精品国产专区不蜜| 国产中文一区二区三区| 欧美精品一区二区在线观看| 看电影不卡的网站| 欧美成人在线直播| 久久97超碰国产精品超碰| 欧美成人aa大片| 韩国精品久久久| 久久久久久久久99精品| 国产成人精品亚洲777人妖| 国产欧美精品一区二区色综合 | 久久亚洲一区二区三区四区| 国产综合久久久久久鬼色 | 青青草国产精品亚洲专区无| 日韩午夜在线观看| 激情文学综合网| 国产日韩av一区| av在线不卡观看免费观看| 亚洲美女屁股眼交3| 日本电影欧美片| 天天做天天摸天天爽国产一区| 69久久99精品久久久久婷婷 | 欧美sm极限捆绑bd| 国产永久精品大片wwwapp| 亚洲国产精品成人久久综合一区 | 中文字幕+乱码+中文字幕一区| 成人国产视频在线观看| 亚洲精品高清在线| 欧美福利视频导航| 狠狠久久亚洲欧美| 国产精品乱码久久久久久 | 亚洲一区二区视频在线观看| 678五月天丁香亚洲综合网| 麻豆国产欧美一区二区三区| 国产欧美视频一区二区三区| 色诱视频网站一区| 天天综合网 天天综合色| 精品国产污网站| 成人午夜激情影院| 亚洲图片一区二区| 26uuu精品一区二区三区四区在线| 成人性生交大片免费看视频在线 | 亚洲免费观看视频| 欧美一区二区三区在线看| 国产99精品在线观看| 亚洲高清中文字幕| 久久无码av三级| 在线观看视频91| 国产最新精品精品你懂的| 亚洲三级久久久| 精品日韩成人av| 在线精品视频免费播放| 国产美女主播视频一区| 亚洲第一精品在线| 亚洲国产精品精华液ab| 欧美一级午夜免费电影| 91免费在线看| 国产一区欧美日韩| 亚洲一级电影视频| 国产欧美一区二区三区沐欲| 欧美午夜精品理论片a级按摩| 老司机免费视频一区二区| 一区二区三区精品在线观看| 久久天天做天天爱综合色| 在线观看精品一区| 国产a精品视频| 麻豆精品一二三| 亚洲午夜久久久久久久久电影院| 久久久www成人免费无遮挡大片| 欧美日韩中文另类| jiyouzz国产精品久久| 另类小说综合欧美亚洲| 一区二区三区蜜桃| 国产精品沙发午睡系列990531| 欧美一级黄色录像| 欧美色区777第一页| 91在线免费看| 国产成人综合在线观看| 久久精品国产**网站演员| 一级中文字幕一区二区| 国产精品理论片在线观看| 久久综合成人精品亚洲另类欧美 | 91精品婷婷国产综合久久竹菊| 99re在线视频这里只有精品| 黑人巨大精品欧美一区| 青青草伊人久久| 午夜久久久久久久久久一区二区| 亚洲精选在线视频| 国产精品欧美久久久久无广告 | 性做久久久久久免费观看 | 在线观看亚洲成人| 色综合天天狠狠| 99re热视频这里只精品| 成人午夜免费av| 成人免费毛片a| 国产不卡视频在线播放| 国精产品一区一区三区mba桃花 | 日韩av网站免费在线| 天天影视涩香欲综合网| 亚洲第一激情av| 五月天一区二区|