search for: ritchey

Displaying 5 results from an estimated 5 matches for "ritchey".

Did you mean: richey
2011 May 17
3
[LLVMdev] LLVM and Visual Studio 2003
Hi, I have what I think is a simple question: Is it at all possible to build LLVM with Visual Studio 2003? The "Getting Started with the LLVM System using Microsoft Visual Studio" document states that versions earlier than 2005 SP1 will not work because they do not support the C++ standard well enough. Is it just some features of LLVM that require better C++ support and so building
2011 May 18
1
[LLVMdev] LLVM and Visual Studio 2003
...inadequate and then determine if those parts can be removed so that VS2k3 can build a subset of LLVM, and hopefully the subset of LLVM that I need (which is the code generator). Thanks, Philip From: Aaron Gray [mailto:aaronngray.lists at gmail.com] Sent: Tuesday, May 17, 2011 7:42 PM To: Philip Ritchey Cc: llvmdev at cs.uiuc.edu Subject: Re: [LLVMdev] LLVM and Visual Studio 2003 On 17 May 2011 21:56, Philip Ritchey <pritchey at microsemi-wl.com<mailto:pritchey at microsemi-wl.com>> wrote: > Hi, > > > > I have what I think is a simple question: Is it at all possible to...
2011 May 17
0
[LLVMdev] LLVM and Visual Studio 2003
On 17 May 2011 21:56, Philip Ritchey <pritchey at microsemi-wl.com> wrote: > Hi, > > > > I have what I think is a simple question: Is it at all possible to build > LLVM with Visual Studio 2003? > > > > The “Getting Started with the LLVM System using Microsoft Visual Studio” > document states that...
2011 May 20
1
[LLVMdev] LLVMdev Digest, Vol 83, Issue 33
...compiler for ppc fails to build (Duncan Sands) > 8. Re: x86 cross compiler for ppc fails to build (Kalle Raiskila) > 9. Re: [PATCH] OpenCL half support (Anton Lokhmotov) > 10. Compile a project into LLVM Bitcode (Julien Henry) > 11. Re: Compile a project into LLVM Bitcode (Philip Ritchey) > 12. Re: Compile a project into LLVM Bitcode (Julien Henry) > 13. Re: Compile a project into LLVM Bitcode (John Criswell) > 14. Re: subregisters, def-kill (Jakob Stoklund Olesen) > 15. I want to know examples of recursive types on LLVM IR. > (Jin Gu Kang) > > > --...
2011 May 20
0
[LLVMdev] Compile a project into LLVM Bitcode
You can use Clang to compile source to bitcode: clang -c hello.c -emit-llvm -o hello.bc Hope that helps, Philip -----Original Message----- From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Julien Henry Sent: Friday, May 20, 2011 10:42 AM To: LLVM Developers Mailing List Subject: [LLVMdev] Compile a project into LLVM Bitcode Hi all, I'm trying to