-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Red hat based system - MakeFile #30
Comments
So you built it using
Many systems don't have
This is most likely, because you are missing the include for clang's C runtime. In the |
That is true
Ah didn't know that, yeah well then you have to make a cmakelists which uses macros to find the libraries.
Ah yeah forgot to change the additional_options, I will try that today. |
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 filelibclang.so
is located at/usr/lib64/llvm
for a red hat based x64 system. And theclang_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 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.The text was updated successfully, but these errors were encountered: