search for: pritchey

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

Did you mean: ritchey
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
...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 build > LLVM with Visual Studio 2003? > > > > The "Getting Started with the LLVM System using Microsoft Visua...
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 versions ear...
2011 May 20
1
[LLVMdev] LLVMdev Digest, Vol 83, Issue 33
...es, without needing to change the Makefile and the > configure script. > > What is the simplest way of doing that ? > > Thanks > > Julien > > > ------------------------------ > > Message: 11 > Date: Fri, 20 May 2011 10:50:20 -0400 > From: Philip Ritchey <pritchey at microsemi-wl.com> > Subject: Re: [LLVMdev] Compile a project into LLVM Bitcode > To: Julien Henry <Julien.Henry at imag.fr>, LLVM Developers Mailing List > <llvmdev at cs.uiuc.edu> > Message-ID: > <D80FAF663650884686CE45C915341D8616D7932F at EAGLE.a...
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