scripts/build/debug/500-strace.sh
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
parent 3035 cb75966698d7
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # Build script for strace
     2 
     3 do_debug_strace_get() {
     4     local base_url="http://downloads.sourceforge.net/project/strace/strace"
     5     CT_GetFile "strace-${CT_STRACE_VERSION}" "${base_url}/${CT_STRACE_VERSION}"
     6     # Downloading from sourceforge leaves garbage, cleanup
     7     CT_DoExecLog ALL rm -f "${CT_TARBALLS_DIR}/showfiles.php"*
     8 }
     9 
    10 do_debug_strace_extract() {
    11     CT_Extract "strace-${CT_STRACE_VERSION}"
    12     CT_Patch "strace" "${CT_STRACE_VERSION}"
    13 }
    14 
    15 do_debug_strace_build() {
    16     CT_DoStep INFO "Installing strace"
    17     mkdir -p "${CT_BUILD_DIR}/build-strace"
    18     CT_Pushd "${CT_BUILD_DIR}/build-strace"
    19 
    20     CT_DoLog EXTRA "Configuring strace"
    21     CT_DoExecLog CFG                                        \
    22     CC="${CT_TARGET}-gcc"                                   \
    23     CPP="${CT_TARGET}-cpp"                                  \
    24     LD="${LD_TARGET}-ld"                                    \
    25     "${CT_SRC_DIR}/strace-${CT_STRACE_VERSION}/configure"   \
    26         --build=${CT_BUILD}                                 \
    27         --host=${CT_TARGET}                                 \
    28         --prefix=/usr
    29 
    30     CT_DoLog EXTRA "Building strace"
    31     CT_DoExecLog ALL make
    32 
    33     CT_DoLog EXTRA "Installing strace"
    34     CT_DoExecLog ALL make DESTDIR="${CT_DEBUGROOT_DIR}" install
    35 
    36     CT_Popd
    37     CT_EndStep
    38 }
    39