config/binutils.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri May 02 21:51:14 2008 +0000 (2008-05-02)
changeset 475 150c918bcb7b
parent 464 0ef95f8b203e
child 506 ac951c5d22cb
permissions -rw-r--r--
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(-)
     1 # binutils options
     2 
     3 menu "binutils"
     4 
     5 config BINUTILS_VERSION
     6     string
     7 
     8 choice
     9     bool
    10     prompt "binutils version"
    11 
    12 config BINUTILS_V_2_14
    13     bool
    14     prompt "2.14 (OBSOLETE)"
    15     depends on OBSOLETE
    16 
    17 config BINUTILS_V_2_15
    18     bool
    19     prompt "2.15 (OBSOLETE)"
    20     depends on OBSOLETE
    21 
    22 config BINUTILS_V_2_16_1
    23     bool
    24     prompt "2.16.1"
    25 
    26 config BINUTILS_V_2_17
    27     bool
    28     prompt "2.17"
    29 
    30 config BINUTILS_V_2_18
    31     bool
    32     prompt "2.18"
    33 
    34 config BINUTILS_V_2_18_50_0_4
    35     bool
    36     prompt "2.18.50.0.4 (EXPERIMENTAL)"
    37     depends on EXPERIMENTAL
    38 
    39 config BINUTILS_V_2_18_50_0_6
    40     bool
    41     prompt "2.18.50.0.6 (EXPERIMENTAL)"
    42     depends on EXPERIMENTAL
    43 
    44 # CT_INSERT_VERSION_ABOVE
    45 # Don't remove above line!
    46 endchoice
    47 
    48 config BINUTILS_VERSION
    49     string
    50     default "2.14" if BINUTILS_V_2_14
    51     default "2.15" if BINUTILS_V_2_15
    52     default "2.16.1" if BINUTILS_V_2_16_1
    53     default "2.17" if BINUTILS_V_2_17
    54     default "2.18" if BINUTILS_V_2_18
    55     default "2.18.50.0.4" if BINUTILS_V_2_18_50_0_4
    56     default "2.18.50.0.6" if BINUTILS_V_2_18_50_0_6
    57 # CT_INSERT_VERSION_STRING_ABOVE
    58 # Don't remove above line!
    59 
    60 config BINUTILS_EXTRA_CONFIG
    61     string
    62     prompt "binutils extra config"
    63     default ""
    64     help
    65       Extra flags passed onto ./configure when configuring
    66 
    67 config BINUTILS_FOR_TARGET
    68     bool
    69     prompt "binutils libraries for the target"
    70     default n
    71     help
    72       Some utilities may need binutils libraries to be available on
    73       the target, eg. oprofile.
    74 
    75 if BINUTILS_FOR_TARGET
    76 
    77 config BINUTILS_FOR_TARGET_IBERTY
    78     bool
    79     prompt "libiberty"
    80     default y
    81 
    82 config BINUTILS_FOR_TARGET_BFD
    83     bool
    84     prompt "libbfd"
    85     default y
    86 
    87 endif # BINUTILS_FOR_TARGET
    88 
    89 endmenu