diff options
author | Alexey Neyman <stilor@att.net> | 2017-03-26 23:32:27 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-03-26 23:32:27 -0700 |
commit | a596ec5b39f900b1f4b481cc46afd20b0e5457d2 (patch) | |
tree | 03d289cf72e5a49f746ee110d903467f68fbed96 /scripts/build/arch.sh | |
parent | de1366132956a7672ad895dd2effee64ca30769c (diff) | |
download | crosstool-ng-a596ec5b39f900b1f4b481cc46afd20b0e5457d2.tar.gz crosstool-ng-a596ec5b39f900b1f4b481cc46afd20b0e5457d2.tar.bz2 crosstool-ng-a596ec5b39f900b1f4b481cc46afd20b0e5457d2.zip |
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.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/build/arch.sh b/scripts/build/arch.sh index 75d3e211..5a8d84c5 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}" |