config/tools/sstrip.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 28 21:35:44 2008 +0000 (2008-09-28)
changeset 885 4653d6002d37
parent 149 39d8baac9c69
child 913 194c03ec22c3
permissions -rw-r--r--
Had a new known issue: ccache will break the build because we're sym-linking to have our own compiler for host and build systems, but that screws up ccache finding the real compiler.
There is no fix, so the only way to inform the users is to document it: remove ccache.

/trunk/docs/known-issues.txt | 25 21 4 0 +++++++++++++++++++++----
1 file changed, 21 insertions(+), 4 deletions(-)
yann@149
     1
# Configuration file for sstrip tool facility
yann@149
     2
yann@149
     3
menuconfig SSTRIP
yann@149
     4
    bool
yann@149
     5
    prompt "sstrip"
yann@149
     6
    default n
yann@149
     7
    help
yann@149
     8
      The sstrip utility, to maximise the striping of ELF binaries
yann@149
     9
      (executables and libraries).
yann@149
    10
yann@149
    11
if SSTRIP
yann@149
    12
yann@149
    13
choice
yann@149
    14
    bool
yann@149
    15
    prompt "Use sstrip from:"
yann@149
    16
yann@149
    17
config SSTRIP_ELFKICKERS
yann@149
    18
    bool
yann@149
    19
    prompt "ELFkickers"
yann@149
    20
    help
yann@875
    21
      The original, ageing version, of sstrip from ELFkickers.
yann@875
    22
      Fully functional, but not maintained anymore.
yann@149
    23
yann@149
    24
config SSTRIP_BUILDROOT
yann@149
    25
    bool
yann@149
    26
    prompt "buildroot"
yann@149
    27
    help
yann@875
    28
      Buildroot version, forked off the original from ELFkickers.  This one
yann@875
    29
      is somewhat maintained by the buildroot guys.   
yann@875
    30
      Supports big-endian systems.
yann@149
    31
yann@149
    32
endchoice
yann@149
    33
yann@149
    34
config SSTRIP_FROM
yann@149
    35
    string
yann@149
    36
    default "ELFkickers"    if SSTRIP_ELFKICKERS
yann@149
    37
    default "buildroot"     if SSTRIP_BUILDROOT
yann@149
    38
yann@149
    39
if SSTRIP_ELFKICKERS
yann@149
    40
yann@149
    41
config SSTRIP_ELFKICKERS_VERSION
yann@149
    42
    string
yann@149
    43
    default "2.0a"
yann@149
    44
yann@149
    45
endif
yann@149
    46
yann@149
    47
endif