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

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

?? arm-softfloat.patch.conditional

?? 這是一個實時嵌入式作業系統 實作了MCS51 ARM等MCU
?? 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一区二区三区免费野_久草精品视频
亚洲资源在线观看| 麻豆国产精品视频| 久久精品免费观看| 色综合咪咪久久| 久久综合久久综合亚洲| 亚洲国产精品一区二区久久 | 欧美日韩aaaaaa| 国产精品欧美极品| 激情图片小说一区| 7777女厕盗摄久久久| 亚洲激情欧美激情| 不卡一卡二卡三乱码免费网站| 欧美一区二区国产| 亚洲123区在线观看| 99久久精品免费| 久久精品免视看| 国产乱码字幕精品高清av| 欧美浪妇xxxx高跟鞋交| 一区二区三区中文字幕精品精品| 国产在线乱码一区二区三区| 欧美一区二区三区爱爱| 亚洲一区二区三区视频在线 | 国产91露脸合集magnet| 欧美tk丨vk视频| 日韩成人一区二区三区在线观看| 欧美在线免费观看亚洲| 日韩欧美美女一区二区三区| 日韩一区精品字幕| 7777精品伊人久久久大香线蕉的| 亚洲一区二区三区美女| 色婷婷一区二区三区四区| 亚洲色图一区二区三区| 91视频一区二区| 亚洲人成亚洲人成在线观看图片| 99麻豆久久久国产精品免费优播| 国产精品污污网站在线观看| 国产成人亚洲精品青草天美| 国产午夜精品久久久久久免费视 | 日本欧美在线看| 日韩三级精品电影久久久| 日韩av一区二区在线影视| 日韩视频免费直播| 国产乱对白刺激视频不卡| 久久久久久电影| 不卡的av网站| 亚洲综合一区在线| 欧美一区二区三区啪啪| 美女脱光内衣内裤视频久久影院| 精品国产1区二区| 成人美女视频在线观看| 一区二区在线观看视频在线观看| 色妞www精品视频| 日本欧美一区二区| 国产网站一区二区| 91国模大尺度私拍在线视频| 五月婷婷欧美视频| 久久久青草青青国产亚洲免观| 国产精品伊人色| 亚洲视频一区二区免费在线观看| 91黄色激情网站| 韩国精品一区二区| 亚洲人成小说网站色在线 | 欧美在线视频不卡| 奇米888四色在线精品| 国产女人18水真多18精品一级做| 色综合久久久久综合| 蜜臀久久久99精品久久久久久| 久久综合九色综合97_久久久| 99久久伊人精品| 裸体在线国模精品偷拍| 国产精品国产三级国产aⅴ无密码| 欧美在线视频全部完| 国模冰冰炮一区二区| 亚洲综合999| 中文字幕二三区不卡| 91精品国产综合久久久久久| av高清不卡在线| 九色综合狠狠综合久久| 亚洲国产综合在线| 国产精品护士白丝一区av| 欧美一区二区视频免费观看| 国产成人在线视频免费播放| 日韩av电影免费观看高清完整版 | 色综合久久久久网| 国内久久婷婷综合| 日韩成人午夜精品| 亚洲日本中文字幕区| 久久久www成人免费毛片麻豆| 欧洲一区在线观看| 国产成人亚洲综合a∨猫咪| 日本午夜一本久久久综合| 中文字幕视频一区| 国产午夜精品久久| 精品国产百合女同互慰| 91精品国产一区二区三区蜜臀| 99视频在线精品| 国产91精品一区二区麻豆网站| 美女国产一区二区| 日韩av在线播放中文字幕| 亚洲一级片在线观看| 成人欧美一区二区三区1314| 337p日本欧洲亚洲大胆色噜噜| 欧美日韩专区在线| 欧美在线观看一区| 在线观看视频一区二区欧美日韩| 国产91综合网| 成人国产精品免费网站| 国产精品一区二区在线看| 国产资源精品在线观看| 美女视频网站黄色亚洲| 美女一区二区在线观看| 老司机一区二区| 理论电影国产精品| 久久69国产一区二区蜜臀| 久久精工是国产品牌吗| 激情综合网av| 国产成人综合在线| 成人免费av网站| 色诱亚洲精品久久久久久| 91香蕉国产在线观看软件| 色94色欧美sute亚洲线路一ni| 一本到不卡免费一区二区| 在线观看亚洲成人| 欧美一区二区视频网站| 精品久久99ma| 国产日韩一级二级三级| 国产精品久久久久久久午夜片| 国产精品久久久久影院| 亚洲乱码国产乱码精品精98午夜| 伊人一区二区三区| 午夜一区二区三区在线观看| 丝袜亚洲另类丝袜在线| 久久激五月天综合精品| 大白屁股一区二区视频| 色天天综合色天天久久| 91精品国产91热久久久做人人| 精品国精品国产尤物美女| 欧美激情综合在线| 亚洲综合视频网| 久久精品国产精品青草| 国产69精品久久777的优势| 欧美在线小视频| 欧美xxxxx裸体时装秀| 国产日韩综合av| 亚洲一区二区美女| 国内成人精品2018免费看| 99久久精品国产导航| 欧美放荡的少妇| 国产精品色噜噜| 免费在线视频一区| 91热门视频在线观看| 日韩欧美一区在线观看| 日韩一区在线播放| 麻豆精品在线看| 色综合咪咪久久| 久久精品一区二区三区av| 亚洲一区二区四区蜜桃| 国产福利一区二区三区视频在线| 一本大道久久a久久综合婷婷 | 久久er99热精品一区二区| 91最新地址在线播放| 日韩精品一区二区在线| 一区二区三区四区亚洲| 国产另类ts人妖一区二区| 欧美日韩第一区日日骚| 国产视频一区二区三区在线观看| 一区二区在线免费| 国产99久久久精品| 日韩一区二区三区电影在线观看| 国产精品免费av| 麻豆精品在线播放| 欧美老女人第四色| 亚洲码国产岛国毛片在线| 国产福利精品一区二区| 日韩欧美资源站| 亚洲成国产人片在线观看| 成人深夜福利app| 精品国产区一区| 免费xxxx性欧美18vr| 欧美日韩国产在线播放网站| 亚洲日本在线视频观看| 国产精品系列在线播放| 在线成人高清不卡| 一区二区三区中文字幕精品精品| 成人高清免费观看| 久久久久久久久蜜桃| 日本亚洲天堂网| 欧美美女bb生活片| 亚洲高清不卡在线| 日本精品裸体写真集在线观看| 中文字幕一区二区日韩精品绯色| 国产精品自拍网站| 久久久一区二区三区| 国产一区在线精品| 国产日韩欧美麻豆| 国产·精品毛片| 国产精品视频你懂的| 国产成人av福利| 国产精品久久久久一区| av一本久道久久综合久久鬼色|