config/debug/ltrace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Mar 23 23:05:08 2009 +0000 (2009-03-23)
changeset 1264 2b591f1d34ba
parent 1036 06aecfa2c355
child 1437 b37804bfeba6
permissions -rw-r--r--
xlcwu <xlcwu.taiwan@gmail.com> wrote:
Seems ncurses 5.7 need build host stage for tic step; if use host tic
(ubuntu) the build process hang in the below step.
So I guess need to build ncurses host stage to build new tic

and provided a patch to that efect.

And in fact, we do need "tic" to run on the _build_ system to properly
generate the terminfo database.

Note: this is fully functional, but still requires a litle bit of
tweaking so that ${CT_BUILD}-gcc gets used instead of plain gcc.
But that's a minor problem for now...

/trunk/scripts/build/debug/300-gdb.sh | 35 33 2 0 +++++++++++++++++++++++++++++++++--
/trunk/scripts/build/internals.sh | 1 1 0 0 +
2 files changed, 34 insertions(+), 2 deletions(-)
yann@245
     1
# ltrace
yann@245
     2
yann@916
     3
config DEBUG_ltrace
yann@916
     4
    select TOOL_libelf
yann@245
     5
    help
yann@977
     6
      ltrace is a program that simply runs the specified command until it exits.
yann@977
     7
      It intercepts and records the dynamic library calls which are called by
yann@977
     8
      the executed process and the signals which are received by that process.
yann@977
     9
      It can also intercept and print the system calls executed by the program.
yann@245
    10
yann@245
    11
choice
yann@245
    12
    bool
yann@245
    13
    prompt "ltrace version"
yann@245
    14
yann@245
    15
config LTRACE_V_0_4
yann@245
    16
    bool
yann@245
    17
    prompt "0.4"
yann@245
    18
yann@1036
    19
config LTRACE_V_0_5
yann@1036
    20
    bool
yann@1036
    21
    prompt "0.5"
yann@1036
    22
yann@1197
    23
config LTRACE_V_0_5_1
yann@1197
    24
    bool
yann@1197
    25
    prompt "0.5.1  (EXPERIMENTAL)"
yann@1197
    26
    depends on EXPERIMENTAL
yann@1197
    27
yann@245
    28
# CT_INSERT_VERSION_ABOVE
yann@245
    29
# Don't remove above line!
yann@245
    30
endchoice
yann@245
    31
yann@245
    32
config LTRACE_VERSION
yann@245
    33
    string
yann@245
    34
    default "0.4" if LTRACE_V_0_4
yann@1036
    35
    default "0.5" if LTRACE_V_0_5
yann@1197
    36
    default "0.5.1" if LTRACE_V_0_5_1
yann@245
    37
# CT_INSERT_VERSION_STRING_ABOVE
yann@245
    38
# # Don't remove above line!