config/binutils.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Feb 14 22:44:34 2008 +0000 (2008-02-14)
changeset 425 548b7aa23385
parent 344 6abe7018a85a
child 427 fc1c16395864
permissions -rw-r--r--
Robet P. J. DAY: typoes.
     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 # CT_INSERT_VERSION_ABOVE
    35 # Don't remove above line!
    36 endchoice
    37 
    38 config BINUTILS_VERSION
    39     string
    40     default "2.14" if BINUTILS_V_2_14
    41     default "2.15" if BINUTILS_V_2_15
    42     default "2.16.1" if BINUTILS_V_2_16_1
    43     default "2.17" if BINUTILS_V_2_17
    44     default "2.18" if BINUTILS_V_2_18
    45 # CT_INSERT_VERSION_STRING_ABOVE
    46 # Don't remove above line!
    47 
    48 config BINUTILS_EXTRA_CONFIG
    49     string
    50     prompt "binutils extra config"
    51     default ""
    52     help
    53       Extra flags passed onto ./configure when configuring
    54 
    55 endmenu