mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-03 11:34:09 +00:00
When moving gcc libs, prefer the same directory as libc
If libc ended up in a directory other than /lib, place GCC's libs in that directory as well. Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
parent
6f226b5efe
commit
fc2f73fc08
@ -790,7 +790,7 @@ do_gcc_for_build() {
|
|||||||
|
|
||||||
gcc_movelibs() {
|
gcc_movelibs() {
|
||||||
local multi_flags multi_dir multi_os_dir multi_root multi_index multi_count
|
local multi_flags multi_dir multi_os_dir multi_root multi_index multi_count
|
||||||
local gcc_dir
|
local gcc_dir dst_dir
|
||||||
|
|
||||||
for arg in "$@"; do
|
for arg in "$@"; do
|
||||||
eval "${arg// /\\ }"
|
eval "${arg// /\\ }"
|
||||||
@ -803,6 +803,15 @@ gcc_movelibs() {
|
|||||||
# GCC didn't install anything outside of sysroot
|
# GCC didn't install anything outside of sysroot
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
# Depending on the selected libc, we may or may not have the ${multi_os_dir_gcc}
|
||||||
|
# created by libc installation. If we do, use it. If we don't, use ${multi_os_dir}
|
||||||
|
# to avoid creating an otherwise empty directory.
|
||||||
|
dst_dir="${multi_root}/lib/${multi_os_dir_gcc}"
|
||||||
|
if [ ! -d "${dst_dir}" ]; then
|
||||||
|
dst_dir="${multi_root}/lib/${multi_os_dir}"
|
||||||
|
fi
|
||||||
|
CT_SanitizeVarDir dst_dir gcc_dir
|
||||||
|
|
||||||
ls "${gcc_dir}" | while read f; do
|
ls "${gcc_dir}" | while read f; do
|
||||||
case "${f}" in
|
case "${f}" in
|
||||||
*.ld)
|
*.ld)
|
||||||
@ -812,8 +821,8 @@ gcc_movelibs() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
if [ -f "${gcc_dir}/${f}" ]; then
|
if [ -f "${gcc_dir}/${f}" ]; then
|
||||||
CT_DoExecLog ALL mkdir -p "${multi_root}/lib/${multi_os_dir}"
|
CT_DoExecLog ALL mkdir -p "${dst_dir}"
|
||||||
CT_DoExecLog ALL mv "${gcc_dir}/${f}" "${multi_root}/lib/${multi_os_dir}/${f}"
|
CT_DoExecLog ALL mv "${gcc_dir}/${f}" "${dst_dir}/${f}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user