Comment 0 for bug 1414438

Revision history for this message
Krzysztof Laskowski (krzysztof-laskowski-1986) wrote :

File cindex.py contains reference to incorrect version of libclang library (3.3 instead of 3.4 as the package name and metadata would suggest):

aurzenligl@aurzenligl-pc ~/tmp/ubuntu_bugreport $ diff -c /usr/lib/python2.7/dist-packages/clang/cindex.py cindex.corrected.py
*** /usr/lib/python2.7/dist-packages/clang/cindex.py 2015-01-25 14:38:29.277584224 +0100
--- cindex.corrected.py 2015-01-25 14:39:13.785584456 +0100
***************
*** 3358,3364 ****
          elif name == 'Windows':
              file = 'libclang.dll'
          else:
! file = 'libclang-3.3.so'

          if Config.library_path:
              file = Config.library_path + '/' + file
--- 3358,3364 ----
          elif name == 'Windows':
              file = 'libclang.dll'
          else:
! file = 'libclang-3.4.so'

          if Config.library_path:
              file = Config.library_path + '/' + file