Displaying 4 results from an estimated 4 matches for "howtoembedllvmwithxcod".
Did you mean:
howtoembedllvmwithxcode
2013 Jan 10
4
[LLVMdev] Requesting Feedback on my LLVM How-To
I've been writing up my experience embedding LLVM in a Cocoa app. If anyone would like to see it and give feedback, I'd appreciate it. It's still not finished, but the first part is there:
http://roderickmann.org/stuff/LLVMTut/HowToEmbedLLVMWithXcode.html
If it's worthy, hopefully it'll end up in the LLVM docs.
--
Rick
2013 Jan 11
0
[LLVMdev] Requesting Feedback on my LLVM How-To
...t;rmann at latencyzero.com> wrote:
> I've been writing up my experience embedding LLVM in a Cocoa app. If anyone would like to see it and give feedback, I'd appreciate it. It's still not finished, but the first part is there:
>
> http://roderickmann.org/stuff/LLVMTut/HowToEmbedLLVMWithXcode.html
This is great. People across the net have been begging for tutorials
of this nature.
> If it's worthy, hopefully it'll end up in the LLVM docs.
The major issue I see is that this tutorial is for a hardcoded version
(3.2) of LLVM. It would have to be reworked to always be on ToT...
2013 Jan 10
0
[LLVMdev] Requesting Feedback on my LLVM How-To
...latencyzero.com> wrote:
> I've been writing up my experience embedding LLVM in a Cocoa app. If
> anyone would like to see it and give feedback, I'd appreciate it. It's
> still not finished, but the first part is there:
>
> http://roderickmann.org/stuff/LLVMTut/HowToEmbedLLVMWithXcode.html
>
> If it's worthy, hopefully it'll end up in the LLVM docs.
>
That's a very nice start! Do you plan on sandboxing the execution? It
seems like just blindly executing the compiled code could easily crash the
application if you have bad IR. I know that's a bit more...
2013 Jan 11
1
[LLVMdev] Requesting Feedback on my LLVM How-To
...atencyzero.com> wrote:
>> I've been writing up my experience embedding LLVM in a Cocoa app. If anyone would like to see it and give feedback, I'd appreciate it. It's still not finished, but the first part is there:
>>
>> http://roderickmann.org/stuff/LLVMTut/HowToEmbedLLVMWithXcode.html
>
> This is great. People across the net have been begging for tutorials
> of this nature.
Thanks! As was I…
>> If it's worthy, hopefully it'll end up in the LLVM docs.
>
> The major issue I see is that this tutorial is for a hardcoded version
> (3.2) of LL...