亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
久久九九影视网| 中文字幕日本乱码精品影院| 色一区在线观看| 美女视频一区二区三区| 中文字幕一区三区| 日韩欧美色综合网站| 一本大道久久a久久精品综合| 精品一区二区久久| 亚洲国产日韩一区二区| 久久天堂av综合合色蜜桃网| 欧美日韩国产免费一区二区| caoporm超碰国产精品| 国产一区啦啦啦在线观看| 亚洲一区二区在线免费观看视频 | 久久中文娱乐网| 欧美午夜宅男影院| 成人av网站在线观看| 国产一区二区三区黄视频| 视频一区视频二区在线观看| 亚洲精品久久嫩草网站秘色| 国产精品网站在线观看| 久久综合精品国产一区二区三区 | 一本在线高清不卡dvd| 国产一区高清在线| 久久精品噜噜噜成人av农村| 亚洲va欧美va人人爽| 亚洲欧美色图小说| 中文字幕的久久| 精品国产sm最大网站| 欧美妇女性影城| 欧美日韩在线观看一区二区 | 久久人人超碰精品| 日韩免费一区二区三区在线播放| 在线电影院国产精品| 日本丶国产丶欧美色综合| 成人少妇影院yyyy| 懂色中文一区二区在线播放| 国产精品99久| 成人午夜视频免费看| 国产ts人妖一区二区| 国产·精品毛片| 成人午夜精品一区二区三区| 成人激情黄色小说| 97se狠狠狠综合亚洲狠狠| 99久久综合国产精品| av在线一区二区三区| 91亚洲精品久久久蜜桃| 欧洲在线/亚洲| 911精品国产一区二区在线| 欧美一区二区精品在线| 欧美一级欧美三级| 久久伊人中文字幕| 国产精品网站在线播放| 国产亚洲精品免费| 国产午夜精品一区二区三区嫩草 | 色狠狠av一区二区三区| 99久久777色| 色呦呦国产精品| 色88888久久久久久影院野外| 国产精品正在播放| 国产69精品久久99不卡| 国产资源在线一区| 国产黑丝在线一区二区三区| 国产精品自拍av| 国产成人精品亚洲日本在线桃色 | 成av人片一区二区| 夫妻av一区二区| 日本韩国精品一区二区在线观看| 欧美探花视频资源| 欧美男女性生活在线直播观看 | 精品国产污网站| 精品国产乱子伦一区| 国产亚洲欧美中文| 亚洲视频一二三区| 五月天激情综合| 全国精品久久少妇| 国产一区二区三区四区在线观看 | 国产精品传媒在线| 亚洲美女偷拍久久| 亚洲成a天堂v人片| 蜜臀av一区二区| 盗摄精品av一区二区三区| 91一区一区三区| 777久久久精品| 久久综合成人精品亚洲另类欧美 | 狠狠网亚洲精品| 91视频观看视频| 91精品国产一区二区| 欧美精品一区二区三区在线播放| 中文成人综合网| 亚洲制服丝袜av| 久久99精品国产91久久来源| 成人在线视频首页| 欧美自拍丝袜亚洲| 欧美一区二区三区公司| 久久久99久久| 亚洲成人激情自拍| 激情久久五月天| 在线视频国内自拍亚洲视频| 日韩免费视频一区二区| 亚洲欧美视频一区| 久久激情五月激情| 色94色欧美sute亚洲线路二 | 日本一区二区在线不卡| 亚洲国产精品人人做人人爽| 精品一区二区三区视频在线观看 | 久久午夜羞羞影院免费观看| 香港成人在线视频| 国产成人精品免费一区二区| 欧美三级三级三级爽爽爽| 久久免费看少妇高潮| 亚洲制服欧美中文字幕中文字幕| 国产美女在线精品| 欧美日韩免费一区二区三区 | 亚洲欧洲色图综合| 蜜桃在线一区二区三区| 在线视频你懂得一区二区三区| 精品乱码亚洲一区二区不卡| 亚洲女性喷水在线观看一区| 国产精品99久| 日韩亚洲欧美成人一区| 一区二区三区在线视频观看58| 国产一区不卡精品| 日韩一区和二区| 一二三四社区欧美黄| 国产成人免费xxxxxxxx| 欧美日韩在线播| 亚洲妇女屁股眼交7| 色综合久久中文综合久久97| 国产亚洲成年网址在线观看| 秋霞影院一区二区| 91福利国产精品| 17c精品麻豆一区二区免费| 国产一区二区三区免费观看| 在线综合+亚洲+欧美中文字幕| 亚洲日本丝袜连裤袜办公室| 国产精品1区2区3区| 欧美成人三级电影在线| 青青草成人在线观看| 在线国产电影不卡| 一区二区三区影院| 97se亚洲国产综合自在线| 国产精品蜜臀在线观看| 激情偷乱视频一区二区三区| 91麻豆精品国产| 午夜亚洲福利老司机| 在线观看亚洲a| 一个色妞综合视频在线观看| 欧美性xxxxxxxx| 性感美女久久精品| 欧美男生操女生| 亚洲香肠在线观看| 91免费视频网址| 最新中文字幕一区二区三区| av在线不卡电影| 中文字幕字幕中文在线中不卡视频| 成人一区二区三区视频在线观看 | 国产精品无遮挡| 99麻豆久久久国产精品免费 | 午夜影院在线观看欧美| 欧美亚洲一区二区三区四区| 亚洲一卡二卡三卡四卡| 在线国产电影不卡| 日韩vs国产vs欧美| 日韩欧美亚洲另类制服综合在线| 蜜桃久久久久久| 欧美伊人久久久久久午夜久久久久| 亚洲精品中文在线影院| 一本色道a无线码一区v| 亚洲一区二区三区在线看| 欧美日韩亚洲综合一区 | 国产日韩精品一区二区浪潮av| 99久久精品情趣| 亚洲午夜精品一区二区三区他趣| 欧美日韩1234| 麻豆91在线观看| 国产欧美精品日韩区二区麻豆天美| 波多野结衣一区二区三区| 亚洲另类一区二区| 欧美精选在线播放| 狠狠色丁香久久婷婷综| 国产欧美日韩久久| 日本精品一级二级| 五月婷婷激情综合| 国产精品入口麻豆九色| 欧美亚洲一区三区| 国产中文字幕精品| 国产精品久久久久aaaa| 欧美日韩国产小视频在线观看| 久久国产精品72免费观看| 久久久久久久一区| 成人国产视频在线观看| 亚洲在线免费播放| 精品久久免费看| 91欧美一区二区| 久久99精品久久久久久动态图| 国产精品福利一区二区三区| 欧美片在线播放| 亚洲成av人片在线| 亚洲欧美偷拍另类a∨色屁股|