Hi, I’m trying to build llvm on windows. My build steps are:
- download source from https://codeload.github.com/llvm/llvm-project/zip/refs/tags/llvmorg-13.0.1
cd llvm-project-llvmorg-13.0.1 && mkdir build && cd ./build
cmake ../llvm -Thost=x64 -DLLVM_ENABLE_PROJECTS='clang'
- using Visual Studio 2022 to open the generated
LLVM.sin
and pressBuild - Build solution
After successful build, I can’t find llvm/IR/LegacyPassManager.h
in ./build/include
file, Did I miss some settings?