mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
7b7f7e4db2
In preparation of adding a new kernel-type, Yann D. came up with a cleanup pass on the ELF/FLAT/FDPIC dependencies. Signed-off-by: Yann Diorcet <diorcet.yann@gmail.com> [yann.morin.1998@free.fr: split up original patch for self-contained changes] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Message-Id: <d3d1d51f399e6d2c1163.1353320546@macbook-smorlat.local> Patchwork-Id: 199971
43 lines
824 B
Plaintext
43 lines
824 B
Plaintext
# Binary utilities menu
|
|
|
|
menu "Binary utilities"
|
|
|
|
choice
|
|
bool
|
|
prompt "Binary format:"
|
|
|
|
config ARCH_BINFMT_ELF
|
|
bool
|
|
prompt "ELF"
|
|
depends on ARCH_USE_MMU || BARE_METAL
|
|
help
|
|
This will make your system build ELF executables,
|
|
suitable for architectures with an MMU.
|
|
|
|
config ARCH_BINFMT_FLAT
|
|
bool
|
|
prompt "Flat"
|
|
depends on ! ARCH_USE_MMU
|
|
help
|
|
This will build flat binaries, suitable for
|
|
MMU-less architectures.
|
|
|
|
config ARCH_BINFMT_FDPIC
|
|
bool
|
|
prompt "FD_PIC ELF"
|
|
depends on ! ARCH_USE_MMU
|
|
help
|
|
This will build FD_PIC ELF binaries, suitable for
|
|
MMU-less architectures that still require to use
|
|
shared libraries (FIXME).
|
|
|
|
endchoice
|
|
|
|
config BINUTILS
|
|
string
|
|
|
|
source "config.gen/binutils.in"
|
|
source "config.gen/binutils.in.2"
|
|
|
|
endmenu
|