config/debug/ltrace.in
author Zoltan Devai <zdevai@gmail.com>
Wed Oct 28 12:03:38 2009 +0100 (2009-10-28)
branch1.5
changeset 1645 01d01185eb18
parent 1535 073d351bdcd3
child 1615 50b25816f5bb
permissions -rw-r--r--
libc/uClibc: fix building on system with recent glibc

While trying to build a toolchain with ct-ng 1.5.0,
arm-unknown-linux-uclibcgnueabi target,
I get the following error:

[INFO ] Installing C library headers
[EXTRA] Copying sources to build dir
[EXTRA] Applying configuration
[EXTRA] Building headers
[EXTRA] Installing headers
[ERROR] extra/scripts/unifdef.c:209: error: conflicting types for 'getline'
[ERROR] make[2]: *** [extra/scripts/unifdef] Error 1
[ERROR] Build failed in step 'Installing C library headers'

The following patch solves the problem.
(It's a backport of this uClibc commit:
http://git.uclibc.org/uClibc/commit/?id=49e81cada73616864b9b31df0aeb6961c30f5a6e
)

[--SNIP from another mail--]
AFAIK this is a problem since glibc 2.10.
(transplanted from 1ba79f2126df8bd89120899a58f2d0bcc2e9c771)
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@1535
    14
# Don't remove next line
yann@1535
    15
# CT_INSERT_VERSION_BELOW
yann@245
    16
yann@1534
    17
config LTRACE_V_0_5_2
yann@245
    18
    bool
yann@1534
    19
    prompt "0.5.2"
yann@1036
    20
yann@1197
    21
config LTRACE_V_0_5_1
yann@1197
    22
    bool
yann@1536
    23
    prompt "0.5.1 (EXPERIMENTAL)"
yann@1197
    24
    depends on EXPERIMENTAL
yann@1197
    25
yann@1534
    26
config LTRACE_V_0_5
yann@1437
    27
    bool
yann@1534
    28
    prompt "0.5"
yann@1534
    29
yann@1534
    30
config LTRACE_V_0_4
yann@1534
    31
    bool
yann@1534
    32
    prompt "0.4"
yann@1437
    33
yann@245
    34
endchoice
yann@245
    35
yann@245
    36
config LTRACE_VERSION
yann@245
    37
    string
yann@1535
    38
# Don't remove next line
yann@1535
    39
# CT_INSERT_VERSION_STRING_BELOW
yann@1534
    40
    default "0.5.2" if LTRACE_V_0_5_2
yann@1534
    41
    default "0.5.1" if LTRACE_V_0_5_1
yann@1534
    42
    default "0.5" if LTRACE_V_0_5
yann@245
    43
    default "0.4" if LTRACE_V_0_4