config/debug/strace.in
author Michael Hope <michael.hope@linaro.org>
Wed Oct 19 15:27:32 2011 +1300 (2011-10-19)
changeset 2739 f320e22f2cba
parent 2444 896cb0d36c1a
child 2868 d87832299709
permissions -rw-r--r--
arch: add softfp support

Some architectures support a mixed hard/soft floating point, where
the compiler emits hardware floating point instructions, but passes
the operands in core (aka integer) registers.

For example, ARM supports this mode (to come in the next changeset).

Add support for softfp cross compilers to the GCC and GLIBC
configuration. Needed for Ubuntu and other distros that are softfp.

Signed-off-by: Michael Hope <michael.hope@linaro.org>
[yann.morin.1998@anciens.enib.fr: split the original patch]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     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_6
    12     bool
    13     prompt "4.6 (EXPERIMENTAL)"
    14     depends on EXPERIMENTAL
    15 
    16 config STRACE_V_4_5_20
    17     bool
    18     prompt "4.5.20 (EXPERIMENTAL)"
    19     depends on EXPERIMENTAL
    20 
    21 config STRACE_V_4_5_19
    22     bool
    23     prompt "4.5.19"
    24 
    25 config STRACE_V_4_5_18
    26     bool
    27     prompt "4.5.18"
    28 
    29 config STRACE_V_4_5_17
    30     bool
    31     prompt "4.5.17 (OBSOLETE)"
    32     depends on OBSOLETE
    33 
    34 config STRACE_V_4_5_16
    35     bool
    36     prompt "4.5.16 (OBSOLETE)"
    37     depends on OBSOLETE
    38 
    39 config STRACE_V_4_5_15
    40     bool
    41     prompt "4.5.15 (OBSOLETE)"
    42     depends on OBSOLETE
    43 
    44 endchoice
    45 
    46 config STRACE_VERSION
    47     string
    48 # Don't remove next line
    49 # CT_INSERT_VERSION_STRING_BELOW
    50     default "4.6" if STRACE_V_4_6
    51     default "4.5.20" if STRACE_V_4_5_20
    52     default "4.5.19" if STRACE_V_4_5_19
    53     default "4.5.18" if STRACE_V_4_5_18
    54     default "4.5.17" if STRACE_V_4_5_17
    55     default "4.5.16" if STRACE_V_4_5_16
    56     default "4.5.15" if STRACE_V_4_5_15