crosstool-ng/config/binutils.in
Yann E. MORIN" 5b3e2c8fd8 Remove some EXPERIMENTAL binutils versions, I do not have time to create associated patches.
/trunk/patches/binutils/2.18.50.0.4/200-ld-makefile-path.patch       |   30    30     0     0 ++++++++++
 /trunk/patches/binutils/2.18.50.0.4/100-arm-uclibcgnueabi.patch      |   30    30     0     0 ++++++++++
 /trunk/patches/binutils/2.18.50.0.4/300-check-ldrunpath-length.patch |   26    26     0     0 +++++++++
 /trunk/patches/binutils/2.18.50.0.6/200-ld-makefile-path.patch       |   30    30     0     0 ++++++++++
 /trunk/patches/binutils/2.18.50.0.6/100-arm-uclibcgnueabi.patch      |   30    30     0     0 ++++++++++
 /trunk/patches/binutils/2.18.50.0.6/300-check-ldrunpath-length.patch |   26    26     0     0 +++++++++
 /trunk/config/binutils.in                                            |   24     0    24     0 --------
 7 files changed, 172 insertions(+), 24 deletions(-)
2008-05-02 21:51:14 +00:00

90 lines
1.7 KiB
Plaintext

# binutils options
menu "binutils"
config BINUTILS_VERSION
string
choice
bool
prompt "binutils version"
config BINUTILS_V_2_14
bool
prompt "2.14 (OBSOLETE)"
depends on OBSOLETE
config BINUTILS_V_2_15
bool
prompt "2.15 (OBSOLETE)"
depends on OBSOLETE
config BINUTILS_V_2_16_1
bool
prompt "2.16.1"
config BINUTILS_V_2_17
bool
prompt "2.17"
config BINUTILS_V_2_18
bool
prompt "2.18"
config BINUTILS_V_2_18_50_0_4
bool
prompt "2.18.50.0.4 (EXPERIMENTAL)"
depends on EXPERIMENTAL
config BINUTILS_V_2_18_50_0_6
bool
prompt "2.18.50.0.6 (EXPERIMENTAL)"
depends on EXPERIMENTAL
# CT_INSERT_VERSION_ABOVE
# Don't remove above line!
endchoice
config BINUTILS_VERSION
string
default "2.14" if BINUTILS_V_2_14
default "2.15" if BINUTILS_V_2_15
default "2.16.1" if BINUTILS_V_2_16_1
default "2.17" if BINUTILS_V_2_17
default "2.18" if BINUTILS_V_2_18
default "2.18.50.0.4" if BINUTILS_V_2_18_50_0_4
default "2.18.50.0.6" if BINUTILS_V_2_18_50_0_6
# CT_INSERT_VERSION_STRING_ABOVE
# Don't remove above line!
config BINUTILS_EXTRA_CONFIG
string
prompt "binutils extra config"
default ""
help
Extra flags passed onto ./configure when configuring
config BINUTILS_FOR_TARGET
bool
prompt "binutils libraries for the target"
default n
help
Some utilities may need binutils libraries to be available on
the target, eg. oprofile.
if BINUTILS_FOR_TARGET
config BINUTILS_FOR_TARGET_IBERTY
bool
prompt "libiberty"
default y
config BINUTILS_FOR_TARGET_BFD
bool
prompt "libbfd"
default y
endif # BINUTILS_FOR_TARGET
endmenu