patches/gcc/4.3.3/310-arm-softfloat.patch
author Cody Schafer <dev@codyps.com>
Fri May 09 19:13:49 2014 -0700 (2014-05-09)
changeset 3312 4876ff97e039
permissions -rw-r--r--
cc/gcc: allow CC_EXTRA_CONFIG_ARRAY on baremetal

The final bare-metal compiler is built using the core backend.
Currently the core uses the CC_CORE_EXTRA_CONFIG_ARRAY variable.

While this works as supposed to, this can leave the user puzzled
in the menuconfig, since all he can see is the core options, not
the final options.

Only show the core options if any of the core passes are needed,
and use the final options in the core-backend if we're issuing
the bare-metal compiler.

Signed-off-by: Cody P Schafer <dev@codyps.com>
[yann.morin.1998@free.fr: hide core options if no core pass needed;
use final option in core backend if issuing the bare-metal compiler]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <22181e546ba746202489.1399688067@localhost>
Patchwork-Id: 347586
yann@1162
     1
Original patch from: ../4.3.2/310-arm-softfloat.patch
yann@1162
     2
yann@1162
     3
-= BEGIN original header =-
yann@1162
     4
-= END original header =-
yann@1162
     5
yann@1162
     6
diff -durN gcc-4.3.3.orig/gcc/config/arm/linux-elf.h gcc-4.3.3/gcc/config/arm/linux-elf.h
yann@1162
     7
--- gcc-4.3.3.orig/gcc/config/arm/linux-elf.h	2007-11-08 14:44:09.000000000 +0100
yann@1162
     8
+++ gcc-4.3.3/gcc/config/arm/linux-elf.h	2009-01-27 22:25:47.000000000 +0100
yann@1162
     9
@@ -60,7 +60,7 @@
yann@1162
    10
    %{shared:-lc} \
yann@1162
    11
    %{!shared:%{profile:-lc_p}%{!profile:-lc}}"
yann@1162
    12
 
yann@1162
    13
-#define LIBGCC_SPEC "%{msoft-float:-lfloat} %{mfloat-abi=soft*:-lfloat} -lgcc"
yann@1162
    14
+#define LIBGCC_SPEC "-lgcc"
yann@1162
    15
 
yann@1162
    16
 #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2"
yann@1162
    17
 
yann@1162
    18
diff -durN gcc-4.3.3.orig/gcc/config/arm/t-linux gcc-4.3.3/gcc/config/arm/t-linux
yann@1162
    19
--- gcc-4.3.3.orig/gcc/config/arm/t-linux	2006-11-09 23:14:27.000000000 +0100
yann@1162
    20
+++ gcc-4.3.3/gcc/config/arm/t-linux	2009-01-27 22:25:47.000000000 +0100
yann@1162
    21
@@ -3,7 +3,12 @@
yann@1162
    22
 TARGET_LIBGCC2_CFLAGS = -fomit-frame-pointer -fPIC
yann@1162
    23
 
yann@1162
    24
 LIB1ASMSRC = arm/lib1funcs.asm
yann@1162
    25
-LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_lnx
yann@1162
    26
+LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_tls _bb_init_func \
yann@1162
    27
+	_call_via_rX _interwork_call_via_rX \
yann@1162
    28
+	_lshrdi3 _ashrdi3 _ashldi3 \
yann@1162
    29
+	_negdf2 _addsubdf3 _muldivdf3 _cmpdf2 _unorddf2 _fixdfsi _fixunsdfsi \
yann@1162
    30
+	_truncdfsf2 _negsf2 _addsubsf3 _muldivsf3 _cmpsf2 _unordsf2 \
yann@1162
    31
+	_fixsfsi _fixunssfsi _floatdidf _floatdisf _floatundidf _floatundisf
yann@1162
    32
 
yann@1162
    33
 # MULTILIB_OPTIONS = mhard-float/msoft-float
yann@1162
    34
 # MULTILIB_DIRNAMES = hard-float soft-float