* Hopefully fix the ftbfs under mipsel (mipsel-ftbfs.diff)

This commit is contained in:
Sylvestre Ledru 2013-06-20 08:45:33 +00:00
parent 14229a8cfb
commit 7c99a7ea19
3 changed files with 29 additions and 0 deletions

1
debian/changelog vendored
View File

@ -5,6 +5,7 @@ llvm-toolchain-3.3 (1:3.3-2) unstable; urgency=low
* Fix duplicate underscore.js and jquery.js * Fix duplicate underscore.js and jquery.js
* Move libjs-jquery & libjs-underscore dependencies to llvm-X.Y-doc * Move libjs-jquery & libjs-underscore dependencies to llvm-X.Y-doc
* Add lldb-X.Y manpage * Add lldb-X.Y manpage
* Hopefully fix the ftbfs under mipsel (mipsel-ftbfs.diff)
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 14 Jun 2013 11:45:26 +0200 -- Sylvestre Ledru <sylvestre@debian.org> Fri, 14 Jun 2013 11:45:26 +0200

27
debian/patches/mipsel-ftbfs.diff vendored Normal file
View File

@ -0,0 +1,27 @@
Index: llvm-toolchain-3.3-3.3/lldb/source/Plugins/Process/Linux/LinuxSignals.cpp
===================================================================
--- llvm-toolchain-3.3-3.3.orig/lldb/source/Plugins/Process/Linux/LinuxSignals.cpp 2013-06-20 10:10:31.000000000 +0200
+++ llvm-toolchain-3.3-3.3/lldb/source/Plugins/Process/Linux/LinuxSignals.cpp 2013-06-20 10:11:57.000000000 +0200
@@ -45,7 +45,9 @@
ADDSIGNAL(PIPE, false, true, true, "write to pipe with reading end closed");
ADDSIGNAL(ALRM, false, false, true, "alarm");
ADDSIGNAL(TERM, false, true, true, "termination requested");
+#ifdef SIGSTKFLT
ADDSIGNAL(STKFLT, false, true, true, "stack fault");
+#endif
ADDSIGNAL(CHLD, false, false, true, "child process exit");
ADDSIGNAL(CONT, false, true, true, "process continue");
ADDSIGNAL(STOP, false, true, true, "process stop");
Index: llvm-toolchain-3.3-3.3/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
===================================================================
--- llvm-toolchain-3.3-3.3.orig/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp 2013-06-20 10:10:31.000000000 +0200
+++ llvm-toolchain-3.3-3.3/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp 2013-06-20 10:11:57.000000000 +0200
@@ -149,7 +149,7 @@
// TOOD: need a better way to detect when "long double" types are
// the same bytes size as "double"
-#if !defined(__arm__)
+#if !defined(__arm__) && !defined(__mips__)
case sizeof (long double):
if (sizeof (long double) == sizeof(uint32_t))
{

View File

@ -25,3 +25,4 @@ kfreebsd.diff
add-ubuntu-saucy.patch add-ubuntu-saucy.patch
lldb33-to-r183444.patch lldb33-to-r183444.patch
disabletestlldb.diff disabletestlldb.diff
mipsel-ftbfs.diff