You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I've been contributing to ClangAutoComplete and decided to move it over to libclang. Then I've found your plugin. So probably you will see me more often here :)
Anyway. I totally agree that there has to be an autocomplete plugin with an out-of-the-box experience. So glad you have started it.
Loading up this plugin currently fails on Ubuntu 14.04.3 x64, Sublime Text 3 v. 3103.
Full error:
Traceback (most recent call last):
File "/opt/sublime_text/sublime_plugin.py", line 78, in reload_plugin
m = importlib.import_module(modulename)
File "./importlib/__init__.py", line 90, in import_module
File "<frozen importlib._bootstrap>", line 1584, in _gcd_import
File "<frozen importlib._bootstrap>", line 1565, in _find_and_load
File "<frozen importlib._bootstrap>", line 1532, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 584, in _check_name_wrapper
File "<frozen importlib._bootstrap>", line 1022, in load_module
File "<frozen importlib._bootstrap>", line 1003, in load_module
File "<frozen importlib._bootstrap>", line 560, in module_for_loader_wrapper
File "<frozen importlib._bootstrap>", line 868, in _load_module
File "<frozen importlib._bootstrap>", line 313, in _call_with_frames_removed
File "/home/igor/.config/sublime-text-3/Packages/clangHelper/codeCompletion.py", line 22, in <module>
if get_libclang_version() == '36':
File "/home/igor/.config/sublime-text-3/Packages/clangHelper/tools/libclang_version.py", line 19, in get_libclang_version
File "./ctypes/__init__.py", line 353, in __init__
OSError: libclang.so: cannot open shared object file: No such file or directory
I have checked the versions of everything an I run everything 64 bit, so it's not the architecture mismatch. I believe this is due to the fact that I've been running a non-default version of clang. Ubuntu defaults to an old clang-3.4. This one guarantees there exists a libclang.so. If I have, say, clang-3.6 instead there will be no libclang.so and the ctypes module then cannot initialize. I still don't fully understand why this is the case, but I have not dug deeper yet, too.
Anyway, there maybe has to be a setting to account for those of us not having standard clang version.
The text was updated successfully, but these errors were encountered:
Hello! I've been contributing to ClangAutoComplete and decided to move it over to
libclang
. Then I've found your plugin. So probably you will see me more often here :)Anyway. I totally agree that there has to be an autocomplete plugin with an out-of-the-box experience. So glad you have started it.
Loading up this plugin currently fails on Ubuntu 14.04.3 x64, Sublime Text 3 v. 3103.
Full error:
I have checked the versions of everything an I run everything 64 bit, so it's not the architecture mismatch. I believe this is due to the fact that I've been running a non-default version of clang. Ubuntu defaults to an old
clang-3.4
. This one guarantees there exists alibclang.so
. If I have, say,clang-3.6
instead there will be nolibclang.so
and thectypes
module then cannot initialize. I still don't fully understand why this is the case, but I have not dug deeper yet, too.Anyway, there maybe has to be a setting to account for those of us not having standard
clang
version.The text was updated successfully, but these errors were encountered: