summaryrefslogtreecommitdiff
path: root/scripts/build/arch.sh
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-03-27 06:32:27 (GMT)
committerAlexey Neyman <stilor@att.net>2017-03-27 06:32:27 (GMT)
commita596ec5b39f900b1f4b481cc46afd20b0e5457d2 (patch)
tree03d289cf72e5a49f746ee110d903467f68fbed96 /scripts/build/arch.sh
parentde1366132956a7672ad895dd2effee64ca30769c (diff)
Fix up the sysroot issue for sh4 in a different way
(see the comments in the code for details on the issue) Old workaround in 100-gcc.sh stopped working (probably, due to one of GCC version upgrades), so switch to the other approach originally described there: adjust the list of multilibs to not include the default target explicitly. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/arch.sh')
-rw-r--r--scripts/build/arch.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/build/arch.sh b/scripts/build/arch.sh
index 75d3e21..5a8d84c 100644
--- a/scripts/build/arch.sh
+++ b/scripts/build/arch.sh
@@ -5,6 +5,11 @@ CT_DoArchTupleValues() {
:;
}
+# Adjust the list of multilibs for the target
+CT_DoArchMultilibList() {
+ :;
+}
+
# Multilib: change the target triplet according to CFLAGS
# Usage: CT_DoArchGlibcAdjustTuple <variable-name> <CFLAGS>
CT_DoArchMultilibTarget() {
@@ -43,7 +48,7 @@ CT_DoArchUClibcCflags() {
# Likely, any non-default cflags need to be reflected into the config.
# It may work if we just pass them into EXTRA_CFLAGS, but we have no
- # idea as they might interact with the CFLAGS inferred by uClibc from
+ # idea how they might interact with the CFLAGS inferred by uClibc from
# the configuration file.
if [ "${cflags}" != "" ]; then
CT_DoLog WARN "Multilib configuration not supported for uClibc/${CT_ARCH}"