search for: llvmsourceroot

Displaying 3 results from an estimated 3 matches for "llvmsourceroot".

2010 Jan 31
0
[LLVMdev] Compiling Kaleidoscope on Windows
...se it would be obvious to know the involved steps for building a component. First of all, use /MDd (for debug builds) or /MD (for release builds) on the command line. The required LLVM libraries can be listed using the `llvm-config' script on Unix or MinGW. The dependencies are listed too in %LLVMSourceRoot%/cmake/modules/LLVMLibDeps.cmake bus as this is a bit inconvenient to read, here they are for you: -lLLVMX86Disassembler -lLLVMX86AsmParser -lLLVMMCParser -lLLVMX86AsmPrinter -lLLVMX86CodeGen -lLLVMSelectionDAG -lLLVMAsmPrinter -lLLVMX86Info -lLLVMInterpreter -lLLVMJIT -lLLVMExecutionEngine -...
2010 Jan 31
2
[LLVMdev] Compiling Kaleidoscope on Windows
I don't suppose anyone knows what (or how to find out what) the actual command to compile Kaleidoscope is? I followed cmake/nmake down through maybe half a dozen levels before getting lost, so I tried to develop a compiler invocation from scratch. I got as far as cl /EHsc /I\d\llvm-2.6\include /I\llvm\include /wd4355 toy.cpp which successfully generated toy.obj and spat out 86 link time
2010 Jan 31
2
[LLVMdev] Compiling Kaleidoscope on Windows
...e involved steps for building a component. > > First of all, use /MDd (for debug builds) or /MD (for release builds) on > the command line. The required LLVM libraries can be listed using the > `llvm-config' script on Unix or MinGW. The dependencies are listed too > in > > %LLVMSourceRoot%/cmake/modules/LLVMLibDeps.cmake > > bus as this is a bit inconvenient to read, here they are for you: > >  -lLLVMX86Disassembler -lLLVMX86AsmParser -lLLVMMCParser >  -lLLVMX86AsmPrinter -lLLVMX86CodeGen -lLLVMSelectionDAG >  -lLLVMAsmPrinter -lLLVMX86Info -lLLVMInterpreter -lLLVM...