config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Jan 16 22:25:32 2008 +0000 (2008-01-16)
changeset 416 1161124240ee
parent 239 988e9b7f70eb
child 428 022ca36f85c8
permissions -rw-r--r--
Bump version to 1.0.0.

I consider crosstool-NG to be stable enough that a 1.0.0 release is acceptable.
I've been using it daily since a long time without really serious _crosstool-NG_
bug (although there are a few minor ones).

There is still a lot of work, especially with Super-H and IA64 support, which
are both marked EXPERIMENTAL.

Enjoy!
     1 # strace
     2 
     3 menuconfig STRACE
     4     bool
     5     prompt "strace"
     6     default n
     7 
     8 if STRACE
     9 
    10 choice
    11     bool
    12     prompt "strace version"
    13 
    14 config STRACE_V_4_5
    15     bool
    16     prompt "4.5 (OBSOLETE)"
    17     depends on OBSOLETE
    18 
    19 config STRACE_V_4_5_14
    20     bool
    21     prompt "4.5.14 (OBSOLETE)"
    22     depends on OBSOLETE
    23 
    24 config STRACE_V_4_5_15
    25     bool
    26     prompt "4.5.15"
    27 
    28 # CT_INSERT_VERSION_ABOVE
    29 # Don't remove above line!
    30 endchoice
    31 
    32 config STRACE_VERSION
    33     string
    34     default "4.5" if STRACE_V_4_5
    35     default "4.5.14" if STRACE_V_4_5_14
    36     default "4.5.15" if STRACE_V_4_5_15
    37 # CT_INSERT_VERSION_STRING_ABOVE
    38 # # Don't remove above line!
    39 
    40 endif