mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-21 01:21:27 +00:00
scripts: check g++ only for host
g++ is only needed when building additonal libs on the HOST, so check wheter g++ is available for the HOST compiler only Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com> [Yann E. MORIN: fix space damage] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
This commit is contained in:
parent
9c6c090d7b
commit
9815852ae0
@ -421,11 +421,15 @@ if [ -z "${CT_RESTART}" ]; then
|
||||
else
|
||||
case "${tool}" in
|
||||
# We'll at least need some of them...
|
||||
ar|as|gcc|g++|ld|nm|objcopy|objdump|ranlib)
|
||||
ar|as|gcc|ld|nm|objcopy|objdump|ranlib)
|
||||
CT_Abort "Missing: '${t}${tool}${!s}' or '${t}${tool}' or '${tool}' : either needed!"
|
||||
;;
|
||||
# Some are conditionnally required
|
||||
# Add them in alphabetical (C locale) ordering
|
||||
g++)
|
||||
# g++ (needed for companion lib), only needed for HOST
|
||||
CT_TestAndAbort "Missing: '${t}${tool}${!s}' or '${t}${tool}' or '${tool}' : either needed!" "${m}" = "HOST"
|
||||
;;
|
||||
gcj)
|
||||
CT_TestAndAbort "Missing: '${t}${tool}${!s}' or '${t}${tool}' or '${tool}' : either needed!" "${CT_CC_LANG_JAVA}" = "y"
|
||||
;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user