2009-05-20 20:13:13 +00:00
|
|
|
# Binary utilities menu
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
menu "Binary utilities"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
2009-05-20 20:13:13 +00:00
|
|
|
prompt "Binary format:"
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
config ARCH_BINFMT_ELF
|
2007-02-24 11:00:05 +00:00
|
|
|
bool
|
2009-05-20 20:13:13 +00:00
|
|
|
prompt "ELF"
|
2012-11-19 21:39:58 +01:00
|
|
|
depends on ARCH_USE_MMU || BARE_METAL
|
2009-05-20 20:13:13 +00:00
|
|
|
help
|
2011-07-17 16:53:40 +02:00
|
|
|
This will make your system build ELF executables,
|
2009-05-20 20:13:13 +00:00
|
|
|
suitable for architectures with an MMU.
|
2009-03-05 17:38:05 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
config ARCH_BINFMT_FLAT
|
2009-03-05 17:36:40 +00:00
|
|
|
bool
|
2009-05-20 20:13:13 +00:00
|
|
|
prompt "Flat"
|
2018-12-01 15:08:46 -08:00
|
|
|
depends on ! ARCH_USE_MMU && ARCH_SUPPORTS_FLAT_FORMAT
|
2007-02-24 11:00:05 +00:00
|
|
|
help
|
2009-05-20 20:13:13 +00:00
|
|
|
This will build flat binaries, suitable for
|
|
|
|
MMU-less architectures.
|
2007-02-24 11:00:05 +00:00
|
|
|
|
2010-04-07 09:20:05 +02:00
|
|
|
config ARCH_BINFMT_FDPIC
|
|
|
|
bool
|
|
|
|
prompt "FD_PIC ELF"
|
2012-11-19 21:39:58 +01:00
|
|
|
depends on ! ARCH_USE_MMU
|
2010-04-07 09:20:05 +02:00
|
|
|
help
|
|
|
|
This will build FD_PIC ELF binaries, suitable for
|
|
|
|
MMU-less architectures that still require to use
|
|
|
|
shared libraries (FIXME).
|
2008-04-27 15:08:15 +00:00
|
|
|
|
2009-05-20 20:13:13 +00:00
|
|
|
endchoice
|
2008-04-27 15:08:15 +00:00
|
|
|
|
2017-04-22 18:41:50 -07:00
|
|
|
source "config/gen/binutils.in"
|
2008-04-27 15:08:15 +00:00
|
|
|
|
2007-02-24 11:00:05 +00:00
|
|
|
endmenu
|