mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-09 10:05:49 +00:00
* Hopefully fix the ftbfs under mipsel (mipsel-ftbfs.diff)
This commit is contained in:
parent
14229a8cfb
commit
7c99a7ea19
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -5,6 +5,7 @@ llvm-toolchain-3.3 (1:3.3-2) unstable; urgency=low
|
||||
* Fix duplicate underscore.js and jquery.js
|
||||
* Move libjs-jquery & libjs-underscore dependencies to llvm-X.Y-doc
|
||||
* 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
|
||||
|
||||
|
27
debian/patches/mipsel-ftbfs.diff
vendored
Normal file
27
debian/patches/mipsel-ftbfs.diff
vendored
Normal 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))
|
||||
{
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -25,3 +25,4 @@ kfreebsd.diff
|
||||
add-ubuntu-saucy.patch
|
||||
lldb33-to-r183444.patch
|
||||
disabletestlldb.diff
|
||||
mipsel-ftbfs.diff
|
||||
|
Loading…
Reference in New Issue
Block a user