diff options
author | Horst Kronstorfer" <horst.kronstorfer@aon.at> | 2011-01-08 18:07:02 +0100 |
---|---|---|
committer | Horst Kronstorfer" <horst.kronstorfer@aon.at> | 2011-01-08 18:07:02 +0100 |
commit | ad1758acba66c00fde92c12606a71870d8fabe4a (patch) | |
tree | 909237602b2bb9ab62becbfd1d0d932b7f483f51 | |
parent | c22278ee103016b82a90daf7530c39411869a907 (diff) | |
download | crosstool-ng-ad1758acba66c00fde92c12606a71870d8fabe4a.tar.gz crosstool-ng-ad1758acba66c00fde92c12606a71870d8fabe4a.tar.bz2 crosstool-ng-ad1758acba66c00fde92c12606a71870d8fabe4a.zip |
debug/ltrace: fix building for mips
ltrace 0.5.3 currently fails to build for target mips because MY_TARGET
(introduced by patches/ltrace/0.5.3/150-allow-configurable-arch.patch)
is set to 'mips' via CT_ARCH, while the mips specific stuff in ltrace
(0.5.3) is stored under sysdeps/linux-gnu/mipsel:
result: *** No rule to make target `mips/arch.h', needed by `sysdep.h'.
Stop.
The following patch fixes this issue
Signed-off-by: "Horst Kronstorfer" <horst.kronstorfer@aon.at>
[yann.morin.1998@anciens.enib.fr: reformat commit log]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 2115901c7f07181d92ddbd7dd7ebeaa72e4fb176)
-rw-r--r-- | scripts/build/debug/400-ltrace.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/build/debug/400-ltrace.sh b/scripts/build/debug/400-ltrace.sh index 522756d3..cf9d01ad 100644 --- a/scripts/build/debug/400-ltrace.sh +++ b/scripts/build/debug/400-ltrace.sh @@ -33,6 +33,7 @@ do_debug_ltrace_build() { x86:32) ltrace_host="i386";; x86:64) ltrace_host="x86_64";; powerpc:*) ltrace_host="ppc";; + mips:*) ltrace_host="mipsel";; *) ltrace_host="${CT_ARCH}";; esac CC="${CT_TARGET}-${CT_CC}" \ |