patches/gcc/3.4.5/gcc-3.4.0-arm-lib1asm.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
yann@1
     1
# Origin: from a patch by Dimitry Andric <dimitry@andric.com>, 2004-05-01
yann@1
     2
# See http://gcc.gnu.org/PR14352 and http://gcc.gnu.org/PR16314
yann@1
     3
# See also http://gcc.gnu.org/ml/gcc-patches/2004-08/msg02568.html et seq for why this isn't in mainline
yann@1
     4
# Fixes errors like the following when building glibc (or any other executable
yann@1
     5
# or shared library) when using gcc 3.4.0 for ARM with softfloat:
yann@1
     6
#
yann@1
     7
# .../libc_pic.os(.text+0x15834): In function `__modf': undefined reference to `__subdf3'
yann@1
     8
# .../libc_pic.os(.text+0x158b8): In function `__modf': undefined reference to `__subdf3'
yann@1
     9
# .../libc_pic.os(.text+0x1590c): In function `scalbn': undefined reference to `__muldf3'
yann@1
    10
# .../libc_pic.os(.text+0x15e94): In function `__ldexpf': undefined reference to `__eqsf2'
yann@1
    11
# .../libc_pic.os(.text+0xcee4c): In function `monstartup': undefined reference to `__fixsfsi'
yann@1
    12
yann@1
    13
diff -urNd gcc-3.4.0-orig/gcc/config/arm/t-linux gcc-3.4.0/gcc/config/arm/t-linux
yann@1
    14
--- gcc-3.4.0-orig/gcc/config/arm/t-linux	2003-09-20 23:09:07.000000000 +0200
yann@1
    15
+++ gcc-3.4.0/gcc/config/arm/t-linux	2004-05-01 20:31:59.102846400 +0200
yann@1
    16
@@ -4,7 +4,10 @@
yann@1
    17
 LIBGCC2_DEBUG_CFLAGS = -g0
yann@1
    18
 
yann@1
    19
 LIB1ASMSRC = arm/lib1funcs.asm
yann@1
    20
-LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_lnx
yann@1
    21
+LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_lnx \
yann@1
    22
+	_negdf2 _addsubdf3 _muldivdf3 _cmpdf2 _unorddf2 _fixdfsi _fixunsdfsi \
yann@1
    23
+	_truncdfsf2 _negsf2 _addsubsf3 _muldivsf3 _cmpsf2 _unordsf2 \
yann@1
    24
+	_fixsfsi _fixunssfsi
yann@1
    25
 
yann@1
    26
 # MULTILIB_OPTIONS = mhard-float/msoft-float
yann@1
    27
 # MULTILIB_DIRNAMES = hard-float soft-float