亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
一本大道av一区二区在线播放| 亚洲视频 欧洲视频| 日本韩国欧美一区| 成人久久视频在线观看| 国产精品一区二区91| 国产在线精品免费av| 精品一区二区三区在线视频| 久99久精品视频免费观看| 麻豆91免费观看| 韩国女主播一区| 国产成人免费网站| 不卡的av电影| 欧美视频三区在线播放| 欧美高清dvd| 精品免费视频一区二区| 久久久午夜精品| 国产精品国产三级国产| 亚洲国产另类精品专区| 毛片一区二区三区| 成人免费福利片| 欧美性做爰猛烈叫床潮| 日韩一区二区在线看片| 欧美激情一区不卡| 亚洲成人在线网站| 国精产品一区一区三区mba桃花| 国产成人精品免费看| 欧美网站一区二区| 欧美不卡一二三| 国产精品卡一卡二| 亚洲国产日韩a在线播放性色| 精品夜夜嗨av一区二区三区| 不卡高清视频专区| 欧美一区二区三区四区高清| 中文字幕 久热精品 视频在线| 亚洲综合一区二区三区| 国产一区二区0| 欧美午夜宅男影院| 国产日韩欧美精品一区| 亚洲18色成人| av成人动漫在线观看| 欧美一区日韩一区| 亚洲精品日韩综合观看成人91| 日韩国产在线一| voyeur盗摄精品| 欧美成人video| 亚洲大片在线观看| av在线这里只有精品| 精品日韩成人av| 亚洲国产精品一区二区久久恐怖片| 韩国中文字幕2020精品| 欧美日本在线一区| 亚洲日本一区二区三区| 国产成人av资源| 欧美mv日韩mv国产| 亚洲成av人片| 在线视频观看一区| ㊣最新国产の精品bt伙计久久| 激情都市一区二区| 日韩无一区二区| 午夜精品久久久久久久蜜桃app| 成人国产电影网| 国产欧美一区二区精品忘忧草| 免费观看在线色综合| 欧美日韩一二三| 一区二区三区中文字幕| 色综合久久天天| 亚洲伦在线观看| 色伊人久久综合中文字幕| 国产精品福利在线播放| 成人丝袜视频网| 欧美精品自拍偷拍| 日韩一卡二卡三卡国产欧美| 91精品国产麻豆国产自产在线 | 亚洲成人福利片| 91在线视频免费观看| 日韩理论在线观看| 不卡大黄网站免费看| 国产精品国产三级国产aⅴ入口 | 日本黄色一区二区| 成人免费视频在线观看| 99re这里只有精品视频首页| 中文字幕一区在线观看| 9人人澡人人爽人人精品| 国产精品亲子伦对白| 大尺度一区二区| 国产精品美女一区二区| 91视频com| 亚洲一区二区三区四区不卡| 欧美日韩二区三区| 日本特黄久久久高潮| 日韩欧美中文字幕制服| 国产一区二区网址| 中文字幕不卡在线播放| 97aⅴ精品视频一二三区| 一区二区三区在线免费播放| 欧美精品1区2区3区| 美腿丝袜亚洲三区| 国产日韩欧美综合在线| 色综合视频在线观看| 一卡二卡三卡日韩欧美| 日韩三级视频在线观看| 国产成人99久久亚洲综合精品| 一色桃子久久精品亚洲| 在线免费观看日本欧美| 久久国内精品视频| 亚洲视频在线一区观看| 日韩视频一区二区| 成人av在线电影| 午夜成人免费视频| 久久精子c满五个校花| 91成人免费在线| 久久91精品国产91久久小草 | 中文字幕在线不卡一区二区三区| 在线视频一区二区三区| 精品亚洲成a人| 亚洲精品乱码久久久久久| 日韩一区二区不卡| 色婷婷综合在线| 国产麻豆日韩欧美久久| 亚洲一区电影777| 国产亚洲成aⅴ人片在线观看| 在线日韩av片| 成人污视频在线观看| 秋霞午夜av一区二区三区| 亚洲色图丝袜美腿| 久久男人中文字幕资源站| 欧美日韩免费视频| 91一区二区三区在线观看| 狠狠v欧美v日韩v亚洲ⅴ| 亚洲韩国精品一区| 中文字幕一区二区三区在线播放| 精品久久99ma| 欧美视频日韩视频在线观看| 成人国产免费视频| 国产激情一区二区三区| 极品少妇xxxx精品少妇偷拍| 一区二区三区精品| 亚洲美女屁股眼交| 国产精品初高中害羞小美女文| 久久亚洲精品小早川怜子| 欧美日韩国产大片| 欧美三级日韩三级| 色综合咪咪久久| 色婷婷av一区二区| 成人app软件下载大全免费| 高清成人在线观看| 国产成人自拍高清视频在线免费播放| 日本大胆欧美人术艺术动态| 午夜免费久久看| 污片在线观看一区二区| 五月婷婷色综合| 亚洲国产精品久久不卡毛片 | 欧美r级在线观看| 日韩午夜av一区| 亚洲精品在线电影| 精品裸体舞一区二区三区| 6080yy午夜一二三区久久| 91精品国产综合久久蜜臀| 欧美一区二区黄| 精品国产乱码久久久久久图片 | 欧美成人精品二区三区99精品| 337p亚洲精品色噜噜狠狠| 制服丝袜日韩国产| 欧美一区二区三区视频免费播放| 91精品国产综合久久久久久| 欧美放荡的少妇| 欧美日韩美少妇| 日韩欧美国产系列| 久久久久久久久99精品| 国产精品久久三| 亚洲激情校园春色| 五月天久久比比资源色| 国内精品写真在线观看| 国产成人免费av在线| 一本久久综合亚洲鲁鲁五月天| 欧美偷拍一区二区| 日韩久久免费av| 国产三级三级三级精品8ⅰ区| 亚洲欧美综合网| 天天色图综合网| 精品一区二区三区久久| 成人激情免费视频| 欧美天堂亚洲电影院在线播放| 欧美一区二区久久| 国产精品伦一区二区三级视频| 国产精品对白交换视频 | 久久伊99综合婷婷久久伊| 亚洲国产精品成人久久综合一区| 亚洲国产精品黑人久久久| 亚洲第一综合色| 国产精品亚洲成人| 欧美日韩电影一区| 国产三区在线成人av| 亚洲第一久久影院| 激情深爱一区二区| 99久久免费精品高清特色大片| 337p亚洲精品色噜噜噜| 亚洲视频免费观看| 国产一区二区精品在线观看| 91成人国产精品|