Dear all I have llvm 3.6.0. But when I open JIT folder in the source directory I find it empty! Any explanation? Regards, Marwa Yusuf Teaching Assistant - Computer Engineering Department Faculty of Engineering - Benha University E-JUST MSc Student Computer Science & Engineering Dept. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20141117/9b1ca6b3/attachment.html>
Hi,> I have llvm 3.6.0. But when I open JIT folder in the source directory I find > it empty! > > Any explanation?The JIT folder contained the legacy JIT which was based on a different code emission path than the rest of LLVM. It had been spottily maintained for a while, only worked on x86 and ARM I think, and was finally removed from trunk after 3.5 was released. The replacement is called "MCJIT" and lives in corresponding files & directories. Cheers. Tim.