Hi, I am going to use LLVM for my Thesis. Is there any LLVM Virtual Machine to download. I have some problem with installing and configuring the LLVM, please let me have the virtual machine link to download if there is any. Regards, Asad -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160927/207c2eeb/attachment.html>
It's not really a virtual machine. The name is misleading. It's an optimizer that uses a virtual instruction set. There is an interpreter, lli, for the virtual instruction set, but in fact it's usually a JIT compiler. You can force it to interpret, which is about 300 times slower. In any case, lli will only run programs compiled for the host computer, so it's not a virtual machine in the usual sense. On Wed, Sep 28, 2016 at 8:22 AM, A. V via llvm-dev <llvm-dev at lists.llvm.org> wrote:> Hi, > > I am going to use LLVM for my Thesis. Is there any LLVM Virtual Machine to > download. I have some problem with installing and configuring the LLVM, > please let me have the virtual machine link to download if there is any. > > > Regards, > Asad > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160929/be4d2630/attachment.html>
> On Sep 28, 2016, at 10:50 AM, Bruce Hoult via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > It's not really a virtual machine. The name is misleading. It's an optimizer that uses a virtual instruction set.Yes, the wikipedia introduction covers it: https://en.wikipedia.org/wiki/LLVM — Mehdi> > There is an interpreter, lli, for the virtual instruction set, but in fact it's usually a JIT compiler. You can force it to interpret, which is about 300 times slower. In any case, lli will only run programs compiled for the host computer, so it's not a virtual machine in the usual sense. > > On Wed, Sep 28, 2016 at 8:22 AM, A. V via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > Hi, > > I am going to use LLVM for my Thesis. Is there any LLVM Virtual Machine to download. I have some problem with installing and configuring the LLVM, please let me have the virtual machine link to download if there is any. > > > Regards, > Asad > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org> > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev <http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev> > > > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160928/b40a4dd5/attachment.html>
Hi, I am going to use LLVM for my Thesis. Is there any LLVM Virtual Machine to> download. I have some problem with installing and configuring the LLVM, > please let me have the virtual machine link to download if there is any. >I don't know of anybody who has set up a VM to test LLVM. I think having a VM image with pre-compiled LLVM and all the dependencies would indeed be a useful thing. I reckon that vagrant init ubuntu/xenial64 would be a good start; LLVM should build fine on recent Linuxes. Best, Jonas -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160929/b42ae399/attachment.html>
On Thu, Sep 29, 2016 at 9:02 PM, Jonas Wagner via llvm-dev < llvm-dev at lists.llvm.org> wrote:> Hi, > > I am going to use LLVM for my Thesis. Is there any LLVM Virtual Machine to >> download. I have some problem with installing and configuring the LLVM, >> please let me have the virtual machine link to download if there is any. >> > > I don't know of anybody who has set up a VM to test LLVM. I think having a > VM image with pre-compiled LLVM and all the dependencies would indeed be a > useful thing. > > I reckon that vagrant init ubuntu/xenial64 would be a good start; LLVM > should build fine on recent Linuxes. >Hmm. If that's what is wanted, there's this: https://github.com/d11wtq/llvm-docker A little old now, but could be undated. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160929/fe31c630/attachment.html>
On Thu, Sep 29, 2016 at 08:02:14AM +0000, Jonas Wagner via llvm-dev wrote:> I don't know of anybody who has set up a VM to test LLVM. I think having a > VM image with pre-compiled LLVM and all the dependencies would indeed be a > useful thing.I don't think so. What system are you using to run such an VM where you can't easily install the dependencies yourself? You don't need that many things for LLVM, essentially a compiler, cmake, ninja and Python. Joerg