diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2023-08-04 14:04:39 -0700 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2023-08-04 14:34:01 -0700 |
| commit | e0053bc04e6b80ece8b334b268c2942e012009b9 (patch) | |
| tree | 13eed5b6dac2b4577e335ed8ff72cac5134a0694 /lldb/bindings/python | |
| parent | 043d03d25bd7eadef66685de298342b35fe6b466 (diff) | |
| download | llvm-e0053bc04e6b80ece8b334b268c2942e012009b9.tar.gz llvm-e0053bc04e6b80ece8b334b268c2942e012009b9.tar.bz2 llvm-e0053bc04e6b80ece8b334b268c2942e012009b9.zip | |
[lldb] Bump SWIG minimum version to 4
SWIG 4 was released in 2019 and has been the de-facto standard for a
while now. All bots are running SWIG 4.0 or later.
This was motivated by #64279 which discovered that 662548c broke the
LLDB build with SWIG 3 on Windows.
Differential revision: https://reviews.llvm.org/D156804
Diffstat (limited to 'lldb/bindings/python')
| -rw-r--r-- | lldb/bindings/python/python.swig | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/bindings/python/python.swig b/lldb/bindings/python/python.swig index b1f6c4b9301d..278c0eed2bab 100644 --- a/lldb/bindings/python/python.swig +++ b/lldb/bindings/python/python.swig @@ -52,10 +52,6 @@ except ImportError: # Relative import should work if we are being loaded by Python. from . import $module" %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. -#endif // The name of the module to be created. %module(docstring=DOCSTRING, moduleimport=MODULEIMPORT) lldb |
