config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Nov 25 23:57:55 2011 +0100 (2011-11-25)
changeset 2789 e6b5bd481942
parent 2444 896cb0d36c1a
child 2868 d87832299709
permissions -rw-r--r--
config/target: add float support selection

Changeset #149c33923f47 broke the architectures that do not
support the --with-float=X ./configure flag (in gcc). For example,
x86_64 does not support it.

Add a new blind config option that architectures can set to tell
they support floating point selection.

Reported-by: Morten Thunberg Svendsen <mts@doredevelopment.dk>
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