diff --git a/debian/changelog b/debian/changelog index 6ca9354f..ff3e0b43 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Fri, 09 Jun 2017 12:04:56 +0200 diff --git a/debian/patches/lldb-disable-swig-error.diff b/debian/patches/lldb-disable-swig-error.diff new file mode 100644 index 00000000..49fcc821 --- /dev/null +++ b/debian/patches/lldb-disable-swig-error.diff @@ -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. diff --git a/debian/patches/series b/debian/patches/series index 19caa18d..58de66c8 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -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