config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Dec 31 16:23:27 2011 +0100 (2011-12-31)
changeset 2814 3dc2727ebffc
parent 2444 896cb0d36c1a
child 2868 d87832299709
permissions -rw-r--r--
cc/gcc: add option to use system zlib

In some cases, it might be desirable to use the system zlib

Eg. because latest gcc seem to be totally borked when it comes
to multilib, and tries to build a multilib host zlib, when it
is *absolutely* *not* needed: we want mulitlib on the target,
not on the host! Sigh... :-(

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