config/companion_tools.in
author Cody P Schafer <dev@codyps.com>
Mon May 12 00:02:13 2014 +0200 (2014-05-12)
changeset 3322 eb13867a034c
parent 3292 9321d9d7af9b
permissions -rw-r--r--
arch/powerpc: add powerpc64le support

Technically, I don't forbid powerpcle support either, but I'm not sure that
there is any library/compiler support for that at the moment (though the hw
technically makes it possible).

powerpc64le needs glibc 2.19 and gcc 4.9. I haven't looked into the support
tools, but at least gdb 7.5 is too old (7.7.1 definitely has support).

Also make powerpc64 non-experimental. It's practically old at this point.

Signed-off-by: Cody P Schafer <dev@codyps.com>
[yann.morin.1998@free.fr: use ${target_endian_le} and ${target_bits_64}]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <64bfbbced9dd8f62e0d6.1399801945@gun>
Patchwork-Id: 347775
     1 # Companion tools config options
     2 
     3 menu "Companion tools"
     4 
     5 # Tools that require make-3.81 to build should select this:
     6 config COMP_TOOLS_make_3_81_NEEDED
     7     bool
     8 
     9 config COMP_TOOLS_FORCE_make_3_81
    10     def_bool y
    11     depends on COMP_TOOLS_make_3_81_NEEDED
    12     depends on ! CONFIGURE_has_make381
    13     select COMP_TOOLS
    14     select COMP_TOOLS_make
    15 
    16 comment "READ HELP before you say 'Y' below !!!"
    17 
    18 config COMP_TOOLS
    19     bool
    20     prompt "Build some companion tools"
    21     help
    22       Crosstool-NG relies on some external tools to be recent enough, namely:
    23         make = 3.81 (in some cases)
    24         m4 >= 1.4.12
    25         autoconf >= 2.63
    26         automake >= 1.10.2
    27         libtool >= 2.2.4
    28       
    29       If your system has older versions, we can build them for you,
    30       but you are strongly encouraged to update your system instead!
    31 
    32 if COMP_TOOLS
    33 
    34 config COMP_TOOLS_make
    35     bool
    36     prompt "make"
    37 
    38 config COMP_TOOLS_m4
    39     bool
    40     prompt "m4"
    41 
    42 config COMP_TOOLS_autoconf
    43     bool
    44     prompt "autoconf"
    45 
    46 config COMP_TOOLS_automake
    47     bool
    48     prompt "automake"
    49 
    50 config COMP_TOOLS_libtool
    51     bool
    52     prompt "libtool"
    53 
    54 endif
    55 
    56 endmenu