Fix a build failure in lldb (missing declaration)

This commit is contained in:
Sylvestre Ledru 2013-12-16 09:45:05 +00:00
parent 251c7df5d2
commit 0e002891ba
3 changed files with 17 additions and 2 deletions

5
debian/changelog vendored
View File

@ -1,9 +1,10 @@
llvm-toolchain-3.4 (1:3.4~+rc2-4) UNRELEASED; urgency=low
llvm-toolchain-3.4 (1:3.4~+-1~exp1) UNRELEASED; urgency=low
* Relative call in the chroot without proc failed.
See: fix-an-issue-in-chroot-witout-proc.diff
* Fix a build failure in lldb (missing declaration)
-- Sylvestre Ledru <sylvestre@debian.org> Mon, 09 Dec 2013 17:37:49 +0100
-- Sylvestre Ledru <sylvestre@debian.org> Sun, 15 Dec 2013 21:54:01 +0100
llvm-toolchain-3.4 (1:3.4~+rc2-3) unstable; urgency=low

View File

@ -0,0 +1,12 @@
Index: llvm-toolchain-3.4_3.4~+/lldb/source/Host/common/Host.cpp
===================================================================
--- llvm-toolchain-3.4_3.4~+.orig/lldb/source/Host/common/Host.cpp 2013-12-15 21:56:52.000000000 +0100
+++ llvm-toolchain-3.4_3.4~+/lldb/source/Host/common/Host.cpp 2013-12-16 10:08:05.144077914 +0100
@@ -1217,6 +1217,7 @@
}
if (tmpdir_cstr)
{
+ Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_THREAD));
g_lldb_tmp_dir.SetCString(tmpdir_cstr);
if (log)
log->Printf("Host::GetLLDBPath(ePathTypeLLDBTempSystemDir) => '%s'", g_lldb_tmp_dir.GetCString());

View File

@ -33,3 +33,5 @@ debian-mips64-n32-multiarch.diff
force-gcc-header-obj.diff
do-not-fail-on-unexpected-pass.diff
fix-an-issue-in-chroot-witout-proc.diff
lldb-missing-declaration.diff