mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
105e4b59b7
Instead, prepare the files as a part of bootstrap and install them. This avoids rebuilding these files in each working directory; they don't change anyway as they are generated from the same installed source. Signed-off-by: Alexey Neyman <stilor@att.net>
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
|