So, as always Red Hat based systems (fedora) always need a bit of special guidance when compiling.
This time I had to alter the makefile to set the clang_libs variable to -L/usr/lib64/llvm -lclang. It seems that the file libclang.so is located at /usr/lib64/llvm for a red hat based x64 system. And the clang_prefix was changed to /usr/lib/clang/3.4.2.
I'm not sure if it worth to add another condition to the makefile. But I though I should mention this if someone else is trying to use this awesome sublime package on their red hat system. Just saw #5 that fixes this issue completely
I have to note, I do get errors like /usr/lib/gcc/x86_64-redhat-linux/4.8.3/include/xmmintrin.h:213:10: error: use of undeclared identifier '__builtin_ia32_andps' but it continues parsing and giving the correct warnings and errors for the stuff that matters, so I'm not complaining.
So, as always Red Hat based systems (fedora) always need a bit of special guidance when compiling.
This time I had to alter the makefile to set the
clang_libsvariable to-L/usr/lib64/llvm -lclang. It seems that the filelibclang.sois located at/usr/lib64/llvmfor a red hat based x64 system. And theclang_prefixwas changed to/usr/lib/clang/3.4.2.I'm not sure if it worth to add another condition to the makefile. But I though I should mention this if someone else is trying to use this awesome sublime package on their red hat system.Just saw #5 that fixes this issue completelyI have to note, I do get errors like
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/include/xmmintrin.h:213:10: error: use of undeclared identifier '__builtin_ia32_andps'but it continues parsing and giving the correct warnings and errors for the stuff that matters, so I'm not complaining.