config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sun May 11 23:43:52 2014 +0200 (2014-05-11)
changeset 3320 78af1c99bc6d
parent 3149 e1611da4bb05
permissions -rw-r--r--
scripts/functions: add target_endian_le and target_endian_be

We currently define target_endian_el and target_endian_eb to be the
tuple extension depending on endianness, defined to be respectively
'el' or 'eb' according to the endianness.

Some architecture do not use 'el' or 'eb', but use 'le' or 'be'.

Provide that as well, as two new variables: target_endian_le and
target_endian_be.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cody P Schafer <dev@codyps.com>
     1 # strace
     2 
     3 ## depends on ! BACKEND
     4 
     5 choice
     6     bool
     7     prompt "strace version"
     8 # Don't remove next line
     9 # CT_INSERT_VERSION_BELOW
    10 
    11 config STRACE_V_4_8
    12     bool
    13     prompt "4.8"
    14     depends on CONFIGURE_has_xz
    15 
    16 config STRACE_V_4_7
    17     bool
    18     prompt "4.7"
    19     depends on CONFIGURE_has_xz
    20 
    21 config STRACE_V_4_6
    22     bool
    23     prompt "4.6"
    24     depends on CONFIGURE_has_xz
    25 
    26 config STRACE_V_4_5_20
    27     bool
    28     prompt "4.5.20"
    29 
    30 config STRACE_V_4_5_19
    31     bool
    32     prompt "4.5.19"
    33 
    34 config STRACE_V_4_5_18
    35     bool
    36     prompt "4.5.18"
    37 
    38 endchoice
    39 
    40 config STRACE_VERSION
    41     string
    42 # Don't remove next line
    43 # CT_INSERT_VERSION_STRING_BELOW
    44     default "4.8" if STRACE_V_4_8
    45     default "4.7" if STRACE_V_4_7
    46     default "4.6" if STRACE_V_4_6
    47     default "4.5.20" if STRACE_V_4_5_20
    48     default "4.5.19" if STRACE_V_4_5_19
    49     default "4.5.18" if STRACE_V_4_5_18