2010-01-12 20:09:30 +00:00
|
|
|
# Companion tools config options
|
|
|
|
|
|
|
|
menu "Companion tools"
|
|
|
|
|
2014-03-11 21:11:43 +00:00
|
|
|
# Tools that require make-3.81 to build should select this:
|
2014-02-20 18:23:08 +00:00
|
|
|
config COMP_TOOLS_make_3_81_NEEDED
|
|
|
|
bool
|
2014-03-11 21:11:43 +00:00
|
|
|
|
|
|
|
config COMP_TOOLS_FORCE_make_3_81
|
|
|
|
def_bool y
|
|
|
|
depends on COMP_TOOLS_make_3_81_NEEDED
|
2014-02-20 18:23:08 +00:00
|
|
|
depends on ! CONFIGURE_has_make381
|
|
|
|
select COMP_TOOLS
|
|
|
|
select COMP_TOOLS_make
|
|
|
|
|
2010-01-12 20:09:30 +00:00
|
|
|
comment "READ HELP before you say 'Y' below !!!"
|
2014-02-20 18:23:08 +00:00
|
|
|
|
2010-01-12 20:09:30 +00:00
|
|
|
config COMP_TOOLS
|
|
|
|
bool
|
|
|
|
prompt "Build some companion tools"
|
|
|
|
help
|
|
|
|
Crosstool-NG relies on some external tools to be recent enough, namely:
|
2011-01-28 23:57:02 +00:00
|
|
|
make = 3.81 (in some cases)
|
2010-01-12 21:47:14 +00:00
|
|
|
m4 >= 1.4.12
|
2010-01-12 20:09:30 +00:00
|
|
|
autoconf >= 2.63
|
2010-01-12 21:47:36 +00:00
|
|
|
automake >= 1.10.2
|
2010-01-12 21:47:57 +00:00
|
|
|
libtool >= 2.2.4
|
2010-01-12 20:09:30 +00:00
|
|
|
|
|
|
|
If your system has older versions, we can build them for you,
|
|
|
|
but you are strongly encouraged to update your system instead!
|
|
|
|
|
|
|
|
if COMP_TOOLS
|
|
|
|
|
2011-01-28 23:57:02 +00:00
|
|
|
config COMP_TOOLS_make
|
|
|
|
bool
|
|
|
|
prompt "make"
|
|
|
|
|
2014-12-07 14:57:11 +00:00
|
|
|
config COMP_TOOLS_make_gmake
|
|
|
|
bool
|
|
|
|
prompt "Add gmake symlink to companion gnu/make"
|
|
|
|
depends on COMP_TOOLS_make
|
|
|
|
|
2010-01-12 21:47:14 +00:00
|
|
|
config COMP_TOOLS_m4
|
|
|
|
bool
|
|
|
|
prompt "m4"
|
|
|
|
|
2010-01-12 20:09:30 +00:00
|
|
|
config COMP_TOOLS_autoconf
|
|
|
|
bool
|
|
|
|
prompt "autoconf"
|
|
|
|
|
2010-01-12 21:47:36 +00:00
|
|
|
config COMP_TOOLS_automake
|
|
|
|
bool
|
|
|
|
prompt "automake"
|
|
|
|
|
2010-01-12 21:47:57 +00:00
|
|
|
config COMP_TOOLS_libtool
|
|
|
|
bool
|
|
|
|
prompt "libtool"
|
|
|
|
|
2010-01-12 20:09:30 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
endmenu
|