config/debug/duma.in
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 572 944e145f3890
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 # D.U.M.A. - Detect Unintended Memory Access - Memory checker
     2 
     3 menuconfig DUMA
     4     bool
     5     prompt "D.U.M.A."
     6     default n
     7     depends on ! BARE_METAL
     8     help
     9       D.U.M.A. - Detect Unintended Memory Access
    10       A memory bound checker, with additional features.
    11       Formerly known as Electric Fence.
    12 
    13 if DUMA
    14 
    15 config DUMA_A
    16     bool
    17     prompt "Build a static library"
    18     default y
    19 
    20 config DUMA_SO
    21     bool
    22     prompt "Build a shared library"
    23     default y if SHARED_LIBS
    24     default n if ! SHARED_LIBS
    25 
    26 choice
    27     bool
    28     prompt "D.U.M.A. version"
    29 
    30 config DUMA_V_2_5_1
    31     bool
    32     prompt "2_5_1"
    33 
    34 config DUMA_V_2_5_8
    35     bool
    36     prompt "2_5_8"
    37 
    38 config DUMA_V_2_5_12
    39     bool
    40     prompt "2_5_12"
    41 
    42 config DUMA_V_2_5_14
    43     bool
    44     prompt "2_5_14"
    45 
    46 # CT_INSERT_VERSION_ABOVE
    47 # Don't remove above line!
    48 endchoice
    49 
    50 config DUMA_VERSION
    51     string
    52     default "2_5_1" if DUMA_V_2_5_1
    53     default "2_5_8" if DUMA_V_2_5_8
    54     default "2_5_12" if DUMA_V_2_5_12
    55     default "2_5_14" if DUMA_V_2_5_14
    56 # CT_INSERT_VERSION_STRING_ABOVE
    57 # Don't remove above line!
    58 
    59 endif