Transform the lldb swig check from a error to a warning

This commit is contained in:
Sylvestre Ledru 2017-06-09 10:08:30 +00:00
parent 94574f32b2
commit 867558419b
3 changed files with 15 additions and 0 deletions

1
debian/changelog vendored
View File

@ -6,6 +6,7 @@ llvm-toolchain-snapshot (1:5.0~svn305065-1~exp1) experimental; urgency=medium
[ Sylvestre Ledru ]
* New snapshot release
* Fix a hurd PATH_MAX issue
* Transform the lldb swig check from a error to a warning
-- Sylvestre Ledru <sylvestre@debian.org> Fri, 09 Jun 2017 12:04:56 +0200

View File

@ -0,0 +1,13 @@
Index: llvm-toolchain-snapshot_5.0~svn305065/lldb/scripts/lldb.swig
===================================================================
--- llvm-toolchain-snapshot_5.0~svn305065.orig/lldb/scripts/lldb.swig
+++ llvm-toolchain-snapshot_5.0~svn305065/lldb/scripts/lldb.swig
@@ -44,7 +44,7 @@ Older swig versions will simply ignore t
%enddef
// These versions will not generate working python modules, so error out early.
#if SWIG_VERSION >= 0x030009 && SWIG_VERSION < 0x030011
-#error Swig versions 3.0.9 and 3.0.10 are incompatible with lldb.
+#warning Swig versions 3.0.9 and 3.0.10 are incompatible with lldb.
#endif
// The name of the module to be created.

View File

@ -45,3 +45,4 @@ silent-test-failing-codeverage.diff
disable-path-test-failing.diff
silent-amd-tet.diff
disable-error-xray.diff
lldb-disable-swig-error.diff