diff options
author | Alexey Neyman <stilor@att.net> | 2019-03-04 00:22:02 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2019-03-04 00:22:02 -0800 |
commit | b3cce054ef381502af4f58105604081bf431ac9e (patch) | |
tree | 991fc932da90da7fbbd055a46dc53395889f2dd3 /scripts/crosstool-NG.sh | |
parent | da11216f8d2630a3a3409ae17549bc0f472d64b6 (diff) | |
download | crosstool-ng-b3cce054ef381502af4f58105604081bf431ac9e.tar.gz crosstool-ng-b3cce054ef381502af4f58105604081bf431ac9e.tar.bz2 crosstool-ng-b3cce054ef381502af4f58105604081bf431ac9e.zip |
Meet our new companion tool, bison
Which is here courtesy of CentOS6, which only has bison 2.4 - while new
glibc requires 2.7.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/crosstool-NG.sh')
-rw-r--r-- | scripts/crosstool-NG.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/crosstool-NG.sh b/scripts/crosstool-NG.sh index 2e60f200..db15b890 100644 --- a/scripts/crosstool-NG.sh +++ b/scripts/crosstool-NG.sh @@ -458,6 +458,7 @@ if [ -z "${CT_RESTART}" ]; then fi # Not all tools are available for all platforms, but some are required. + # TBD do we need these as shell wrappers? exec is slow on Cygwin, and this makes exec twice for each compiler/linker run if [ -n "${where}" ]; then CT_DoLog DEBUG " '${!v}-${tool}' -> '${where}'" printf "#${BANG}${CT_CONFIG_SHELL}\nexec '${where}' \"\${@}\"\n" >"${CT_BUILDTOOLS_PREFIX_DIR}/bin/${!v}-${tool}" @@ -468,7 +469,7 @@ if [ -z "${CT_RESTART}" ]; then 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 + # Some are conditionally required # Add them in alphabetical (C locale) ordering g++) # g++ (needed for companion lib), only needed for HOST |