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
In the make file you make the link sudo ln -sf /usr/lib/llvm-3.5/lib/libclang-3.5.so.1 ./lib/libclang.so
since the new release the default version of clang is 3.6.0 and the line should therefore be updated to sudo ln -sf /usr/lib/llvm-3.6/lib/libclang-3.6.so.1 ./lib/libclang.so
The problem with this solution is that the version has to be manually updated every time. Perhaps there is a way to force the installation of a certain version as default.
Note: You can write sudo apt-get install clang-3.5
to force it to install this version. However this does not install the clang command, but only clang-3.5.
I absolutely love this plugin, keep doing a great work!
The text was updated successfully, but these errors were encountered:
In the make file you make the link
sudo ln -sf /usr/lib/llvm-3.5/lib/libclang-3.5.so.1 ./lib/libclang.so
since the new release the default version of clang is 3.6.0 and the line should therefore be updated to
sudo ln -sf /usr/lib/llvm-3.6/lib/libclang-3.6.so.1 ./lib/libclang.so
The problem with this solution is that the version has to be manually updated every time. Perhaps there is a way to force the installation of a certain version as default.
Note: You can write
sudo apt-get install clang-3.5
to force it to install this version. However this does not install the
clang
command, but onlyclang-3.5
.I absolutely love this plugin, keep doing a great work!
The text was updated successfully, but these errors were encountered: