patches/binutils/2.17a/110-arm-eabi-conf.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 17 22:46:47 2011 +0200 (2011-07-17)
changeset 2892 aa934ec4b4ee
parent 55 249c47587aa4
permissions -rw-r--r--
cc/gcc: add the backend/frontend infra for final gcc

Currently, we issue the bare-metal compiler from the pass_1 & pass_2
core compilers, because the final gcc breaks while doing so.

This implies we have to build some libces during the start_files step,
instead of the standard libc step. This is the case for newlib.

By adding a backend/frontend infra to the final gcc, we can abstract
what backend to call: the standard backend for non-bare-metal gcc,
and the core backend for bare-metal.

This patch is just an no-op, it just adds the final backend and
frontend without changing the way bare-metal is built, to come in a
subsequent patch.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@55
     1
diff -dur binutils-2.17.old/configure binutils-2.17/configure
yann@55
     2
--- binutils-2.17.old/configure	2007-05-01 18:26:03.000000000 +0200
yann@55
     3
+++ binutils-2.17/configure	2007-05-01 18:26:06.000000000 +0200
yann@55
     4
@@ -1305,7 +1305,7 @@
yann@55
     5
   arm-*-elf* | strongarm-*-elf* | xscale-*-elf* | arm*-*-eabi* )
yann@55
     6
     noconfigdirs="$noconfigdirs target-libffi target-qthreads"
yann@55
     7
     ;;
yann@55
     8
-  arm*-*-linux-gnueabi)
yann@55
     9
+  arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
yann@55
    10
     noconfigdirs="$noconfigdirs target-libffi target-qthreads"
yann@55
    11
     noconfigdirs="$noconfigdirs target-libjava target-libobjc"
yann@55
    12
     ;;
yann@55
    13
diff -dur binutils-2.17.old/configure.in binutils-2.17/configure.in
yann@55
    14
--- binutils-2.17.old/configure.in	2007-05-01 18:26:03.000000000 +0200
yann@55
    15
+++ binutils-2.17/configure.in	2007-05-01 18:26:06.000000000 +0200
yann@55
    16
@@ -497,7 +497,7 @@
yann@55
    17
   arm-*-elf* | strongarm-*-elf* | xscale-*-elf* | arm*-*-eabi* )
yann@55
    18
     noconfigdirs="$noconfigdirs target-libffi target-qthreads"
yann@55
    19
     ;;
yann@55
    20
-  arm*-*-linux-gnueabi)
yann@55
    21
+  arm*-*-linux-gnueabi | arm*-*-linux-uclibcgnueabi)
yann@55
    22
     noconfigdirs="$noconfigdirs target-libffi target-qthreads"
yann@55
    23
     noconfigdirs="$noconfigdirs target-libjava target-libobjc"
yann@55
    24
     ;;