mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
Put CFG_BUILD triples into CFG_HOST triples.
I've configured with the parameters suggested by @brson in #18670 and confirmed that it works on Gentoo Linux amd64. Fixes #18670. Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
This commit is contained in:
parent
4a788a2003
commit
59399088ca
8
configure
vendored
8
configure
vendored
@ -1037,6 +1037,14 @@ for target_file in ${CFG_SRC_DIR}mk/cfg/*.mk; do
|
|||||||
CFG_SUPPORTED_TARGET="${CFG_SUPPORTED_TARGET} $(basename "$target_file" .mk)"
|
CFG_SUPPORTED_TARGET="${CFG_SUPPORTED_TARGET} $(basename "$target_file" .mk)"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# copy build-triples to host-triples so that builds are a subset of hosts
|
||||||
|
V_TEMP=""
|
||||||
|
for i in $CFG_BUILD $CFG_HOST;
|
||||||
|
do
|
||||||
|
echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
|
||||||
|
done
|
||||||
|
CFG_HOST=$V_TEMP
|
||||||
|
|
||||||
# copy host-triples to target-triples so that hosts are a subset of targets
|
# copy host-triples to target-triples so that hosts are a subset of targets
|
||||||
V_TEMP=""
|
V_TEMP=""
|
||||||
for i in $CFG_HOST $CFG_TARGET;
|
for i in $CFG_HOST $CFG_TARGET;
|
||||||
|
Loading…
Reference in New Issue
Block a user