crosstool-ng/config/binutils.in
Yann E. MORIN" b0fece4689 tools: move sstrip to the binary utilities menu
sstrip is now alone in its 'tools' menu, and we will probably never gain
any other 'tool'. Besides, sstrip is just strip, but a little bit more
agressive, so it deserves going to the 'binary utilities' menu.
2010-03-17 00:21:57 +01:00

46 lines
819 B
Plaintext

# Binary utilities menu
menu "Binary utilities"
choice
bool
prompt "Binary format:"
if ARCH_USE_MMU
config ARCH_BINFMT_ELF
bool
prompt "ELF"
help
This will make your system build ELF exectubales,
suitable for architectures with an MMU.
endif # ARCH_USE_MMU
if ! ARCH_USE_MMU
config ARCH_BINFMT_FLAT
bool
prompt "Flat"
help
This will build flat binaries, suitable for
MMU-less architectures.
#config ARCH_BINFMT_FDPIC
# bool
# prompt "FD_PIC ELF"
# help
# This will build FD_PIC ELF binaries, suitable for
# MMU-less architectures that still require to use
# shared libraries (FIXME).
endif # ! ARCH_USE_MMU
endchoice
source config/binutils/binutils.in
source config/binutils/elf2flt.in
source config/binutils/sstrip.in
endmenu