[Lldb-commits] [PATCH] D132316: [CMake] Avoid `LLVM_BINARY_DIR` when other more specific variable are better-suited
Carlos Alberto Enciso via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Aug 25 02:24:36 PDT 2022
CarlosAlbertoEnciso added a comment.
@Ericson2314 It seems that these changes break building on Windows using Visual Studio 2019.
There are 2 issues:
- CMake now creates a directory `$(Configuration)` in the root build directory.
$(Configuration)\lib\cmake\llvm
Location before the changes: lib\cmake\llvm
- The build fails with the errors:
Error C1083 Cannot open include file: 'PPCGenRegisterInfo.inc': No such file or directory LLVMExegesisPowerPC llvm-project\llvm\lib\Target\PowerPC\MCTargetDesc\PPCMCTargetDesc.h
Error C1083 Cannot open include file: 'MipsGenRegisterInfo.inc': No such file or directory LLVMExegesisMips llvm-project\llvm\lib\Target\Mips\MCTargetDesc\MipsMCTargetDesc.h
Error C1083 Cannot open include file: 'X86GenRegisterInfo.inc': No such file or directory LLVMExegesisX86 llvm-project\llvm\lib\Target\X86\MCTargetDesc\X86MCTargetDesc.h
Error C1083 Cannot open include file: 'AArch64GenRegisterInfo.inc': No such file or directory LLVMExegesisAArch64 llvm-project\llvm\lib\Target\AArch64\MCTargetDesc\AArch64MCTargetDesc.h
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132316/new/
https://reviews.llvm.org/D132316
More information about the lldb-commits
mailing list