summaryrefslogtreecommitdiff
path: root/scripts/build/debug/500-strace.sh
blob: c28af35374ec8cb918663842c1b9b19a42f38759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Build script for strace

do_debug_strace_get()
{
    CT_Fetch STRACE
}

do_debug_strace_extract()
{
    CT_ExtractPatch STRACE
}

do_debug_strace_build()
{
    local cflags="${CT_ALL_TARGET_CFLAGS}"

    CT_DoStep INFO "Installing strace"

    if [ "${CT_LIBC_MUSL}" = "y" ]; then
        # Otherwise kernel headers cause errors when included, e.g.
        # <netinet/in.h> and <linux/in6.h>. Kernel's libc-compat.h
        # only cares about GLIBC.  uClibc-ng does the same
        # internally, pretending it's GLIBC for kernel headers inclusion.
        cflags+=" -D__GLIBC__ -D__USE_MISC"
    fi

    CT_mkdir_pushd "${CT_BUILD_DIR}/build-strace"

    CT_DoLog EXTRA "Configuring strace"
    CT_DoExecLog CFG                                           \
    CC="${CT_TARGET}-${CT_CC}"                                 \
    CFLAGS="${cflags}"                                         \
    LDFLAGS="${CT_ALL_TARGET_LDFLAGS}"                         \
    CPP="${CT_TARGET}-cpp"                                     \
    LD="${CT_TARGET}-ld"                                       \
    ${CONFIG_SHELL}                                            \
    "${CT_SRC_DIR}/strace/configure"                           \
        --build=${CT_BUILD}                                    \
        --host=${CT_TARGET}                                    \
        --prefix=/usr                                          \
        --enable-mpers=check

    CT_DoLog EXTRA "Building strace"
    CT_DoExecLog ALL make

    CT_DoLog EXTRA "Installing strace"
    CT_DoExecLog ALL make DESTDIR="${CT_DEBUGROOT_DIR}" install

    CT_Popd
    CT_EndStep
}