mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
15da72b273
Since the advent of make-3.82, some packages now break due to changes in make-3.82, being stricter than 3.81 when interpreting the Makefiles. This has bugged us a bit too much so far, and I believe fixing all of them is a long road, while simply building make-3.81 is the easiest route for now. Of course, in the long term, packages will get fixed upstream, and we should back-port the fixes to old versions, and get rid of building make-3.81. In the meantime... Reported several times on the mailing list. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
49 lines
867 B
Plaintext
49 lines
867 B
Plaintext
# Companion tools config options
|
|
|
|
if EXPERIMENTAL
|
|
|
|
menu "Companion tools"
|
|
|
|
comment "READ HELP before you say 'Y' below !!!"
|
|
config COMP_TOOLS
|
|
bool
|
|
prompt "Build some companion tools"
|
|
help
|
|
Crosstool-NG relies on some external tools to be recent enough, namely:
|
|
make = 3.81 (in some cases)
|
|
m4 >= 1.4.12
|
|
autoconf >= 2.63
|
|
automake >= 1.10.2
|
|
libtool >= 2.2.4
|
|
|
|
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
|
|
|
|
config COMP_TOOLS_make
|
|
bool
|
|
prompt "make"
|
|
|
|
config COMP_TOOLS_m4
|
|
bool
|
|
prompt "m4"
|
|
|
|
config COMP_TOOLS_autoconf
|
|
bool
|
|
prompt "autoconf"
|
|
|
|
config COMP_TOOLS_automake
|
|
bool
|
|
prompt "automake"
|
|
|
|
config COMP_TOOLS_libtool
|
|
bool
|
|
prompt "libtool"
|
|
|
|
endif
|
|
|
|
endmenu
|
|
|
|
endif
|