config/arch/sh.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jan 20 20:37:43 2009 +0000 (2009-01-20)
changeset 1149 df32ef8825f9
parent 898 fe3eda71a9d0
child 1269 17e37102a037
permissions -rw-r--r--
On 20090115.0012+0100, "Andy Johnson" <ajohnson@aecno.com> wrote:
... I added a step after
"debug" called "finish", and moved the code in crosstool.sh
after the loop that processes the steps from crosstool.sh
into a do_finish function in functions. Thus, it is now
possible to restart after the "debug" step to re-do the
final few things (clean and compress).

/trunk/scripts/crosstool-NG.sh | 38 0 38 0 --------------------------------------
/trunk/scripts/functions | 42 42 0 0 ++++++++++++++++++++++++++++++++++++++++++
/trunk/steps.mk | 3 2 1 0 ++-
3 files changed, 44 insertions(+), 39 deletions(-)
yann@413
     1
# Super-H specific configuration file
yann@891
     2
# EXPERIMENTAL
yann@413
     3
yann@628
     4
config ARCH_sh
yann@628
     5
    select ARCH_SUPPORTS_BOTH_ENDIAN
yann@628
     6
    select ARCH_DEFAULT_LE
yann@630
     7
    help
yann@630
     8
      The Super-H architecture, as defined by:
yann@630
     9
        http://www.renesas.com/fmwk.jsp?cnt=superh_family_landing.jsp&fp=/products/mpumcu/superh_family/
yann@413
    10
yann@413
    11
choice
yann@413
    12
    bool
yann@413
    13
    prompt "Variant"
yann@413
    14
yann@413
    15
config ARCH_SH_SH3
yann@413
    16
    bool
yann@413
    17
    prompt "sh3"
yann@413
    18
yann@413
    19
config ARCH_SH_SH4
yann@413
    20
    bool
yann@413
    21
    prompt "sh4"
yann@413
    22
yann@413
    23
config ARCH_SH_SH4A
yann@413
    24
    bool
yann@413
    25
    prompt "sh4a"
yann@413
    26
yann@413
    27
endchoice
yann@413
    28
yann@413
    29
config ARCH_SH_VARIANT
yann@413
    30
    string
yann@413
    31
    default "sh3"   if ARCH_SH_SH3
yann@413
    32
    default "sh4"   if ARCH_SH_SH4
yann@413
    33
    default "sh4a"  if ARCH_SH_SH4A