diff options
author | Norbert Lange <nolange79@gmail.com> | 2019-10-10 17:49:49 +0200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-09-24 16:08:25 +1300 |
commit | c91133acc18c62814b8954fb9dfdff8f6e1e6fdc (patch) | |
tree | f1a0a24d1033086d613e5f013cefac1c1211e2df /scripts | |
parent | 334f6d6479096b20e80fd39e35f404319bc251b5 (diff) | |
download | crosstool-ng-c91133acc18c62814b8954fb9dfdff8f6e1e6fdc.tar.gz crosstool-ng-c91133acc18c62814b8954fb9dfdff8f6e1e6fdc.tar.bz2 crosstool-ng-c91133acc18c62814b8954fb9dfdff8f6e1e6fdc.zip |
fix toolchain build with linker plugins
older binutils dont automatically pick up plugins,
but need to manually use wrappers like gcc-ar.
This fix allows to compile the host toolchain with -ftlo
on debian stretch.
Signed-off-by: Norbert Lange <nolange79@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/crosstool-NG.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/scripts/crosstool-NG.sh b/scripts/crosstool-NG.sh index 383de66d..2269262d 100644 --- a/scripts/crosstool-NG.sh +++ b/scripts/crosstool-NG.sh @@ -437,7 +437,7 @@ if [ -z "${CT_RESTART}" ]; then t="${!r}-" fi - for tool in ar as dlltool gcc g++ gcj gnatbind gdc gnatmake ld libtool nm objcopy objdump ranlib strip windres; do + for tool in ar as dlltool gcc gcc-ar gcc-nm gcc-ranlib g++ gcj gnatbind gdc gnatmake ld libtool nm objcopy objdump ranlib strip windres; do # First try with prefix + suffix # Then try with prefix only # Then try with suffix only, but only for BUILD, and HOST iff REAL_BUILD == REAL_HOST @@ -490,6 +490,16 @@ if [ -z "${CT_RESTART}" ]; then esac fi done + + # Incase the toolchain is built using plugins (-flto), + # the gcc wrappers are needed for older binutils + for tool in ar nm ranlib; do + if [ -x "${CT_BUILDTOOLS_PREFIX_DIR}/bin/${!v}-gcc-${tool}" ]; then + CT_DoLog DEBUG " '${!v}-${tool}' -> '${!v}-gcc-${tool}'" + # this already is a script, so just copy over + CT_DoExecLog ALL cp "${CT_BUILDTOOLS_PREFIX_DIR}/bin/${!v}-gcc-${tool}" "${CT_BUILDTOOLS_PREFIX_DIR}/bin/${!v}-${tool}" + fi + done done # Some makeinfo versions are a pain in [put your most sensible body part here]. |