config/tools/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Mar 15 21:44:20 2010 +0100 (2010-03-15)
changeset 1850 136a929ec37f
parent 1615 50b25816f5bb
permissions -rw-r--r--
debug/gdb: can't build a static native gdb if using GMP/MPFR

It is currently impossible to reliably build static GMP/MPFR libs,
so we can't build a static native gdb using them, obviously.
yann@149
     1
# Configuration file for sstrip tool facility
yann@1844
     2
# depends on ! BACKEND
yann@149
     3
yann@916
     4
config TOOL_sstrip
yann@149
     5
    help
yann@149
     6
      The sstrip utility, to maximise the striping of ELF binaries
yann@149
     7
      (executables and libraries).
yann@149
     8
yann@149
     9
choice
yann@149
    10
    bool
yann@149
    11
    prompt "Use sstrip from:"
yann@149
    12
yann@149
    13
config SSTRIP_BUILDROOT
yann@149
    14
    bool
yann@149
    15
    prompt "buildroot"
yann@149
    16
    help
yann@875
    17
      Buildroot version, forked off the original from ELFkickers.  This one
yann@875
    18
      is somewhat maintained by the buildroot guys.   
yann@875
    19
      Supports big-endian systems.
yann@149
    20
yann@1242
    21
config SSTRIP_ELFKICKERS
yann@1242
    22
    bool
yann@1615
    23
    prompt "ELFkickers (OBSOLETE)"
yann@1615
    24
    depends on OBSOLETE
yann@1242
    25
    help
yann@1242
    26
      The original, ageing version, of sstrip from ELFkickers.
yann@1242
    27
      Fully functional, but not maintained anymore.
yann@1242
    28
yann@149
    29
endchoice
yann@149
    30
yann@149
    31
config SSTRIP_FROM
yann@149
    32
    string
yann@149
    33
    default "ELFkickers"    if SSTRIP_ELFKICKERS
yann@149
    34
    default "buildroot"     if SSTRIP_BUILDROOT
yann@149
    35
yann@149
    36
if SSTRIP_ELFKICKERS
yann@149
    37
yann@149
    38
config SSTRIP_ELFKICKERS_VERSION
yann@149
    39
    string
yann@149
    40
    default "2.0a"
yann@149
    41
yann@149
    42
endif