mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 05:17:54 +00:00
6343b71e25
/trunk/config/tools/sstrip.in | 14 7 7 0 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-)
41 lines
871 B
Plaintext
41 lines
871 B
Plaintext
# Configuration file for sstrip tool facility
|
|
|
|
config TOOL_sstrip
|
|
help
|
|
The sstrip utility, to maximise the striping of ELF binaries
|
|
(executables and libraries).
|
|
|
|
choice
|
|
bool
|
|
prompt "Use sstrip from:"
|
|
|
|
config SSTRIP_BUILDROOT
|
|
bool
|
|
prompt "buildroot"
|
|
help
|
|
Buildroot version, forked off the original from ELFkickers. This one
|
|
is somewhat maintained by the buildroot guys.
|
|
Supports big-endian systems.
|
|
|
|
config SSTRIP_ELFKICKERS
|
|
bool
|
|
prompt "ELFkickers"
|
|
help
|
|
The original, ageing version, of sstrip from ELFkickers.
|
|
Fully functional, but not maintained anymore.
|
|
|
|
endchoice
|
|
|
|
config SSTRIP_FROM
|
|
string
|
|
default "ELFkickers" if SSTRIP_ELFKICKERS
|
|
default "buildroot" if SSTRIP_BUILDROOT
|
|
|
|
if SSTRIP_ELFKICKERS
|
|
|
|
config SSTRIP_ELFKICKERS_VERSION
|
|
string
|
|
default "2.0a"
|
|
|
|
endif
|