Where is llvm-config on windows?

I am open for a Visual Studio answer or a MinGW answer. I just finished creating LLVM 3.2 with CMake and Visual Studio 2010. Everything went smoothly, but I don't have llvm-config . Do I need this? Each example that I see on the tubes uses this tool. If I don’t need it, how can I configure my project to use LLVM?

To be clear, I am not trying to use LLVM tools / compilers (e.g. clang and whatnot). I am trying to write C ++ code that uses LLVM libraries to create LLVM IR and even compile this stuff. I am setting up my include and lib folders. I ran llvm-config on Linux and saw a long list of macros and libraries.

I have a wonderful folder full of goodies. It just does not have llvm-config : C:\Program Files (x86)\LLVM\

+7
source share
1 answer

If you built LLVM in the debug version, all executable files (including llvm-config) were placed in your build directory (containing the project and Visual Studio project files) in the bin/Debug/ subdirectory. For release, replace Debug with Release .

If you're interested in using LLVM on Windows more than building it, see the Windows Snapshot Build .

+2
source

All Articles