mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-02 11:06:42 +00:00
scripts/gcc: Canadian Cross skip -print-multi-lib log output
Attempting to ${CT_TARGET}-gcc -print-multi-lib will fail In do_cc_core_backend, for the final compiler in a canadian cross baremetal, warn that multi-libs cannot be determined In do_cc_backend, for either final compiler for a canadian cross, warn that multi-libs cannot be determined (Plus fixed CT_PREFIX_DIR in do_cc_backend to be ${prefix}) Signed-off-by: "David Holsgrove" <david.holsgrove@xilinx.com> Message-Id: <CAM=EW8aQDoNx-CkJHjXBoDP4iTDJ8z5hh3=KhO5UTU6rp3Pj=w@mail.gmail.com> Patchwork-Id: 189053
This commit is contained in:
parent
5094e8bc0a
commit
071606c0a0
@ -461,6 +461,10 @@ do_cc_core_backend() {
|
|||||||
CT_DoExecLog ALL ln -sfv "${CT_TARGET}-gcc${ext}" "${prefix}/bin/${CT_TARGET}-cc${ext}"
|
CT_DoExecLog ALL ln -sfv "${CT_TARGET}-gcc${ext}" "${prefix}/bin/${CT_TARGET}-cc${ext}"
|
||||||
|
|
||||||
if [ "${CT_MULTILIB}" = "y" ]; then
|
if [ "${CT_MULTILIB}" = "y" ]; then
|
||||||
|
if [ "${CT_CANADIAN}" = "y" -a "${mode}" = "baremetal" \
|
||||||
|
-a "${host}" = "${CT_HOST}" ]; then
|
||||||
|
CT_DoLog WARN "Canadian Cross unable to confirm multilibs configured correctly"
|
||||||
|
else
|
||||||
multilibs=( $( "${prefix}/bin/${CT_TARGET}-gcc" -print-multi-lib \
|
multilibs=( $( "${prefix}/bin/${CT_TARGET}-gcc" -print-multi-lib \
|
||||||
|tail -n +2 ) )
|
|tail -n +2 ) )
|
||||||
if [ ${#multilibs[@]} -ne 0 ]; then
|
if [ ${#multilibs[@]} -ne 0 ]; then
|
||||||
@ -474,6 +478,7 @@ do_cc_core_backend() {
|
|||||||
CT_DoLog WARN "gcc configured for multilib, but none available"
|
CT_DoLog WARN "gcc configured for multilib, but none available"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user