patches/strace/4.5.15/160-superh-update.ac.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 746 b150d6f590fc
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@257
     1
diff -dur strace-4.5.15.orig/configure.ac strace-4.5.15/configure.ac
yann@257
     2
--- strace-4.5.15.orig/configure.ac	2007-07-14 19:25:25.000000000 +0200
yann@257
     3
+++ strace-4.5.15/configure.ac	2007-07-14 19:27:35.000000000 +0200
yann@257
     4
@@ -91,14 +91,14 @@
yann@257
     5
 	arch=hppa
yann@257
     6
 	AC_DEFINE([HPPA], 1, [Define for the HPPA architecture.])
yann@257
     7
 	;;
yann@257
     8
-sh)
yann@257
     9
-	arch=sh
yann@257
    10
-	AC_DEFINE([SH], 1, [Define for the SH architecture.])
yann@257
    11
-	;;
yann@257
    12
 sh64)
yann@257
    13
 	arch=sh64
yann@257
    14
 	AC_DEFINE([SH64], 1, [Define for the SH64 architecture.])
yann@257
    15
 	;;
yann@257
    16
+sh*)
yann@257
    17
+	arch=sh
yann@257
    18
+	AC_DEFINE([SH], 1, [Define for the SH architecture.])
yann@257
    19
+	;;
yann@257
    20
 x86?64*)
yann@257
    21
 	arch=x86_64
yann@257
    22
 	AC_DEFINE([X86_64], 1, [Define for the AMD x86-64 architecture.])