Updating to clang 3.7, while compiling étoilé, the following file has this output:
Languages/LanguageKit/CodeGen/LLVMCompat.h:30:10: fatal error:
'llvm/DebugInfo.h' file not found
include <llvm/DebugInfo.h>
This is because DebugInfo.h is now located in:
/usr/local/include/llvm/IR/DebugInfo.h (on ubuntu)
so the path in llvm changed to llvm/IR/DebugInfo.h.
This fix is needed to complete the LanguageKit build.
It oculd be just a problem in ubuntu or a problem in my Ubuntu. I'll check and will close or confirm the problem as soon as I can.
Update: problem confirmed, fix needed. I just checked the file, it includes llvm/DebugInfo.h
Updating to clang 3.7, while compiling étoilé, the following file has this output:
Languages/LanguageKit/CodeGen/LLVMCompat.h:30:10: fatal error:
'llvm/DebugInfo.h' file not found
include <llvm/DebugInfo.h>
This is because DebugInfo.h is now located in:
/usr/local/include/llvm/IR/DebugInfo.h (on ubuntu)
so the path in llvm changed to llvm/IR/DebugInfo.h.
This fix is needed to complete the LanguageKit build.
It oculd be just a problem in ubuntu or a problem in my Ubuntu. I'll check and will close or confirm the problem as soon as I can.
Update: problem confirmed, fix needed. I just checked the file, it includes llvm/DebugInfo.h