config/binutils/binutils.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Oct 27 18:54:29 2009 +0100 (2009-10-27)
changeset 1607 a119153ca777
parent 1603 e0ef539e23d9
child 1609 68f9c68e7bc9
permissions -rw-r--r--
scripts: fis addToolVersion wrt binutils

binutils' config file has moved; update the addToolVerion script accordingly.
     1 # binutils options
     2 
     3 comment "GNU binutils"
     4 
     5 config BINUTILS_VERSION
     6     string
     7 
     8 choice
     9     bool
    10     prompt "binutils version"
    11 # Don't remove next line
    12 # CT_INSERT_VERSION_BELOW
    13 
    14 config BINUTILS_V_2_19_1
    15     bool
    16     prompt "2.19.1"
    17 
    18 config BINUTILS_V_2_19
    19     bool
    20     prompt "2.19"
    21 
    22 config BINUTILS_V_2_18
    23     bool
    24     prompt "2.18"
    25 
    26 config BINUTILS_V_2_17
    27     bool
    28     prompt "2.17"
    29 
    30 config BINUTILS_V_2_16_1
    31     bool
    32     prompt "2.16.1"
    33 
    34 endchoice
    35 
    36 config BINUTILS_VERSION
    37     string
    38 # Don't remove next line
    39 # CT_INSERT_VERSION_STRING_BELOW
    40     default "2.19.1" if BINUTILS_V_2_19_1
    41     default "2.19" if BINUTILS_V_2_19
    42     default "2.18" if BINUTILS_V_2_18
    43     default "2.17" if BINUTILS_V_2_17
    44     default "2.16.1" if BINUTILS_V_2_16_1
    45 
    46 config BINUTILS_EXTRA_CONFIG
    47     string
    48     prompt "binutils extra config"
    49     default ""
    50     help
    51       Extra flags passed onto ./configure when configuring
    52 
    53 config BINUTILS_FOR_TARGET
    54     bool
    55     prompt "binutils libraries for the target"
    56     depends on ! BARE_METAL
    57     default n
    58     help
    59       Some utilities may need binutils libraries to be available on
    60       the target, eg. oprofile.
    61 
    62 if BINUTILS_FOR_TARGET
    63 
    64 config BINUTILS_FOR_TARGET_IBERTY
    65     bool
    66     prompt "libiberty"
    67     default y
    68 
    69 config BINUTILS_FOR_TARGET_BFD
    70     bool
    71     prompt "libbfd"
    72     default y
    73 
    74 endif # BINUTILS_FOR_TARGET