I am looking to use llvm on windows. I know there is a pre-compiled llvm windows distribution, but this does not seem to provide libllvm. The software that I am looking to use makes use of libllvm (it is unix based, but I would like to port it to windows). I really did not wish to spend my time compiling llvm (i.e. installing it's dependencies) from scratch. What options do I have ?
On 05/31/2010 10:02 AM, John Lask wrote:> I am looking to use llvm on windows. I know there is a pre-compiled llvm > windows distribution, but this does not seem to provide libllvm. The > software that I am looking to use makes use of libllvm (it is unix > based, but I would like to port it to windows). I really did not wish to > spend my time compiling llvm (i.e. installing it's dependenciesThere are no dependencies. You just need cmake to generate a visual studio project file. Best regards, --Edwin
Török Edwin wrote:> On 05/31/2010 10:02 AM, John Lask wrote: > > I am looking to use llvm on windows. I know there is a pre-compiled > > llvm windows distribution, but this does not seem to provide libllvm. > > The software that I am looking to use makes use of libllvm (it is unix > > based, but I would like to port it to windows). I really did not wish > > to spend my time compiling llvm (i.e. installing it's dependencies > > There are no dependencies. You just need cmake to generate a visual studio > project file.I don't suppose anyone has a turn-key solution as simple as "unzip to C:\llvm and build the VS solution"? Cheers, Jon.