config/companion_tools.in
author Ray Donnelly <mingw.android@gmail.com>
Thu Feb 20 18:22:50 2014 +0000 (2014-02-20)
changeset 3291 ccef9a13c09b
parent 2285 7d1e018167b5
child 3292 9321d9d7af9b
permissions -rw-r--r--
Companion tools are no longer experimental

Signed-off-by: Ray Donnelly <mingw.android@gmail.com>
Message-Id: <3e204a5cf9648db53a6a.1392920970@advancedsearch.virginmedia.com>
Patchwork-Id: 322301
     1 # Companion tools config options
     2 
     3 menu "Companion tools"
     4 
     5 comment "READ HELP before you say 'Y' below !!!"
     6 config COMP_TOOLS
     7     bool
     8     prompt "Build some companion tools"
     9     help
    10       Crosstool-NG relies on some external tools to be recent enough, namely:
    11         make = 3.81 (in some cases)
    12         m4 >= 1.4.12
    13         autoconf >= 2.63
    14         automake >= 1.10.2
    15         libtool >= 2.2.4
    16       
    17       If your system has older versions, we can build them for you,
    18       but you are strongly encouraged to update your system instead!
    19 
    20 if COMP_TOOLS
    21 
    22 config COMP_TOOLS_make
    23     bool
    24     prompt "make"
    25 
    26 config COMP_TOOLS_m4
    27     bool
    28     prompt "m4"
    29 
    30 config COMP_TOOLS_autoconf
    31     bool
    32     prompt "autoconf"
    33 
    34 config COMP_TOOLS_automake
    35     bool
    36     prompt "automake"
    37 
    38 config COMP_TOOLS_libtool
    39     bool
    40     prompt "libtool"
    41 
    42 endif
    43 
    44 endmenu