scripts/build/debug/400-ltrace.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 14 16:21:07 2008 +0000 (2008-09-14)
changeset 850 ef8549b58b6f
parent 523 010f6f4e4dd6
child 916 68af6b83ff7e
permissions -rw-r--r--
Introduce a new EXPERIMENTAL feature: BARE_METAL.
This should ultimately llow to build bare-metal compilers, for targets that have no kernel and no C library.
Move the C library build script to their own sub-directory; introduce an empty build script for bare-metal.
Move the compiler build script to its own sub-directory.
Move the kernel build script to its own sub-directory; introduce an empty build script for bare-metal.
Update the ARM target tuples to enable bare-metal targets.
Add two ARM bare-metal samples.
Add latest Linux kernel versions.

/trunk/scripts/build/kernel/none.sh | 77 6 71 0 +----
/trunk/scripts/build/cc/gcc.sh | 58 41 17 0 ++-
/trunk/scripts/build/libc/none.sh | 513 9 504 0 +-----------------------------
/trunk/scripts/crosstool.sh | 17 9 8 0 +
/trunk/scripts/functions | 6 4 2 0 +
/trunk/scripts/showSamples.sh | 6 3 3 0
/trunk/samples/arm-unknown-elf/crosstool.config | 225 225 0 0 +++++++++++++
/trunk/samples/arm-unknown-eabi/crosstool.config | 223 223 0 0 +++++++++++++
/trunk/config/kernel/linux_headers_install.in | 64 27 37 0 ++--
/trunk/config/kernel.in | 9 8 1 0 +
/trunk/config/toolchain.in | 1 1 0 0 +
/trunk/config/cc/gcc.in | 3 3 0 0 +
/trunk/config/debug/dmalloc.in | 1 1 0 0 +
/trunk/config/debug/gdb.in | 4 3 1 0 +
/trunk/config/debug/strace.in | 1 1 0 0 +
/trunk/config/debug/duma.in | 1 1 0 0 +
/trunk/config/cc.in | 8 8 0 0 +
/trunk/config/target.in | 13 13 0 0 +
/trunk/config/binutils.in | 1 1 0 0 +
/trunk/config/gmp_mpfr.in | 1 1 0 0 +
/trunk/config/libc.in | 17 11 6 0 +
/trunk/arch/arm/functions | 3 1 2 0 -
22 files changed, 600 insertions(+), 652 deletions(-)
     1 # Build script for ltrace
     2 
     3 is_enabled="${CT_LTRACE}"
     4 
     5 do_print_filename() {
     6     [ "${CT_LTRACE}" = "y" ] || return 0
     7     echo "ltrace-${CT_LTRACE_VERSION}.orig"
     8 }
     9 
    10 do_debug_ltrace_get() {
    11     CT_GetFile "ltrace_${CT_LTRACE_VERSION}.orig" {ftp,http}://ftp.de.debian.org/debian/pool/main/l/ltrace/
    12     # Create a link so that the following steps are easier to do:
    13     cd "${CT_TARBALLS_DIR}"
    14     ltrace_ext=$(CT_GetFileExtension "ltrace_${CT_LTRACE_VERSION}.orig")
    15     ln -sf "ltrace_${CT_LTRACE_VERSION}.orig${ltrace_ext}" "ltrace-${CT_LTRACE_VERSION}${ltrace_ext}"
    16 }
    17 
    18 do_debug_ltrace_extract() {
    19     CT_ExtractAndPatch "ltrace-${CT_LTRACE_VERSION}"
    20 }
    21 
    22 do_debug_ltrace_build() {
    23     CT_DoStep INFO "Installing ltrace"
    24     mkdir -p "${CT_BUILD_DIR}/build-ltrace"
    25     CT_Pushd "${CT_BUILD_DIR}/build-ltrace"
    26 
    27     CT_DoLog EXTRA "Configuring ltrace"
    28 #    CFLAGS="-I${CT_SYSROOT_DIR}/usr/include"                \
    29 #    LDFLAGS="-L${CT_SYSROOT_DIR}/usr/include"               \
    30     CT_DoExecLog ALL                                        \
    31     "${CT_SRC_DIR}/ltrace-${CT_LTRACE_VERSION}/configure"   \
    32         --build=${CT_BUILD}                                 \
    33         --host=${CT_TARGET}                                 \
    34         --prefix=/usr
    35 
    36     CT_DoLog EXTRA "Building ltrace"
    37     CT_DoExecLog ALL make
    38 
    39     CT_DoLog EXTRA "Installing ltrace"
    40     CT_DoExecLog ALL make DESTDIR="${CT_DEBUG_INSTALL_DIR}" install
    41 
    42     CT_Popd
    43     CT_EndStep
    44 }
    45