We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55deea6 + 5939908 commit 4b4a672Copy full SHA for 4b4a672
configure
@@ -1037,6 +1037,14 @@ for target_file in ${CFG_SRC_DIR}mk/cfg/*.mk; do
1037
CFG_SUPPORTED_TARGET="${CFG_SUPPORTED_TARGET} $(basename "$target_file" .mk)"
1038
done
1039
1040
+# copy build-triples to host-triples so that builds are a subset of hosts
1041
+V_TEMP=""
1042
+for i in $CFG_BUILD $CFG_HOST;
1043
+do
1044
+ echo "$V_TEMP" | grep -qF $i || V_TEMP="$V_TEMP${V_TEMP:+ }$i"
1045
+done
1046
+CFG_HOST=$V_TEMP
1047
+
1048
# copy host-triples to target-triples so that hosts are a subset of targets
1049
V_TEMP=""
1050
for i in $CFG_HOST $CFG_TARGET;
0 commit comments