config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
parent 330 447b203edc2e
child 850 ef8549b58b6f
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
     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 config STRACE_V_4_5_16
    29     bool
    30     prompt "4.5.16"
    31 
    32 # CT_INSERT_VERSION_ABOVE
    33 # Don't remove above line!
    34 endchoice
    35 
    36 config STRACE_VERSION
    37     string
    38     default "4.5" if STRACE_V_4_5
    39     default "4.5.14" if STRACE_V_4_5_14
    40     default "4.5.15" if STRACE_V_4_5_15
    41     default "4.5.16" if STRACE_V_4_5_16
    42 # CT_INSERT_VERSION_STRING_ABOVE
    43 # # Don't remove above line!
    44 
    45 endif