config/binutils/binutils.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Oct 27 20:09:54 2009 +0100 (2009-10-27)
changeset 1609 68f9c68e7bc9
parent 1604 b3f0173f10f3
child 1614 3f76cdbceb6e
permissions -rw-r--r--
binutils: remove duplicate config entries for binutils & elf2flt
     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_19_1
    12     bool
    13     prompt "2.19.1"
    14 
    15 config BINUTILS_V_2_19
    16     bool
    17     prompt "2.19"
    18 
    19 config BINUTILS_V_2_18
    20     bool
    21     prompt "2.18"
    22 
    23 config BINUTILS_V_2_17
    24     bool
    25     prompt "2.17"
    26 
    27 config BINUTILS_V_2_16_1
    28     bool
    29     prompt "2.16.1"
    30 
    31 endchoice
    32 
    33 config BINUTILS_VERSION
    34     string
    35 # Don't remove next line
    36 # CT_INSERT_VERSION_STRING_BELOW
    37     default "2.19.1" if BINUTILS_V_2_19_1
    38     default "2.19" if BINUTILS_V_2_19
    39     default "2.18" if BINUTILS_V_2_18
    40     default "2.17" if BINUTILS_V_2_17
    41     default "2.16.1" if BINUTILS_V_2_16_1
    42 
    43 config BINUTILS_EXTRA_CONFIG
    44     string
    45     prompt "binutils extra config"
    46     default ""
    47     help
    48       Extra flags passed onto ./configure when configuring
    49 
    50 config BINUTILS_FOR_TARGET
    51     bool
    52     prompt "binutils libraries for the target"
    53     depends on ! BARE_METAL
    54     default n
    55     help
    56       Some utilities may need binutils libraries to be available on
    57       the target, eg. oprofile.
    58 
    59 if BINUTILS_FOR_TARGET
    60 
    61 config BINUTILS_FOR_TARGET_IBERTY
    62     bool
    63     prompt "libiberty"
    64     default y
    65 
    66 config BINUTILS_FOR_TARGET_BFD
    67     bool
    68     prompt "libbfd"
    69     default y
    70 
    71 endif # BINUTILS_FOR_TARGET