config/binutils/binutils.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Dec 22 00:34:56 2010 +0100 (2010-12-22)
changeset 2227 5158aa602e58
parent 2097 056a2c826185
child 2243 1fb02a4ca444
permissions -rw-r--r--
docs: overview.txt is gone, point to the new documentation

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 # binutils options
     2 
     3 comment "GNU binutils"
     4 
     5 choice
     6     bool
     7     prompt "binutils version"
     8 # Don't remove next line
     9 # CT_INSERT_VERSION_BELOW
    10 
    11 config BINUTILS_V_2_21
    12     bool
    13     depends on EXPERIMENTAL
    14     prompt "2.21"
    15 
    16 config BINUTILS_V_2_20_1
    17     bool
    18     prompt "2.20.1"
    19 
    20 config BINUTILS_V_2_20
    21     bool
    22     prompt "2.20"
    23 
    24 config BINUTILS_V_2_19_1
    25     bool
    26     prompt "2.19.1"
    27 
    28 config BINUTILS_V_2_19
    29     bool
    30     prompt "2.19"
    31 
    32 config BINUTILS_V_2_18
    33     bool
    34     prompt "2.18"
    35 
    36 config BINUTILS_V_2_17
    37     bool
    38     prompt "2.17 (OBSOLETE)"
    39     depends on OBSOLETE
    40 
    41 config BINUTILS_V_2_16_1
    42     bool
    43     prompt "2.16.1 (OBSOLETE)"
    44     depends on OBSOLETE
    45 
    46 endchoice
    47 
    48 config BINUTILS_VERSION
    49     string
    50 # Don't remove next line
    51 # CT_INSERT_VERSION_STRING_BELOW
    52     default "2.21" if BINUTILS_V_2_21
    53     default "2.20.1" if BINUTILS_V_2_20_1
    54     default "2.20" if BINUTILS_V_2_20
    55     default "2.19.1" if BINUTILS_V_2_19_1
    56     default "2.19" if BINUTILS_V_2_19
    57     default "2.18" if BINUTILS_V_2_18
    58     default "2.17" if BINUTILS_V_2_17
    59     default "2.16.1" if BINUTILS_V_2_16_1
    60 
    61 config BINUTILS_EXTRA_CONFIG
    62     string
    63     prompt "binutils extra config"
    64     default ""
    65     help
    66       Extra flags passed onto ./configure when configuring
    67 
    68 config BINUTILS_FOR_TARGET
    69     bool
    70     prompt "binutils libraries for the target"
    71     depends on ! BARE_METAL
    72     depends on ! BACKEND
    73     default n
    74     help
    75       Some utilities may need binutils libraries to be available on
    76       the target, eg. oprofile.
    77 
    78 if BINUTILS_FOR_TARGET
    79 
    80 config BINUTILS_FOR_TARGET_IBERTY
    81     bool
    82     prompt "libiberty"
    83     default y
    84 
    85 config BINUTILS_FOR_TARGET_BFD
    86     bool
    87     prompt "libbfd"
    88     default y
    89 
    90 endif # BINUTILS_FOR_TARGET