Marius Wachtler
2009-Oct-27 02:02 UTC
[LLVMdev] [PATCH] Add missing file (SCCVN.cpp) to the cmake build system
Hello When I compile LLVM trunk with Visual Studio 2008 and cmake, the build is failing because a new file is not yet added to the build system. Attached you can find a patch which fixes the problem for me. Marius Wachtler Index: lib/Transforms/Scalar/CMakeLists.txt ==================================================================--- lib/Transforms/Scalar/CMakeLists.txt (revision 85194) +++ lib/Transforms/Scalar/CMakeLists.txt (working copy) @@ -23,6 +23,7 @@ Reassociate.cpp Reg2Mem.cpp SCCP.cpp + SCCVN.cpp Scalar.cpp ScalarReplAggregates.cpp SimplifyCFGPass.cpp -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091027/d6a8b62d/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: CMakeLists.patch Type: application/octet-stream Size: 373 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091027/d6a8b62d/attachment.obj>
Mike Stump
2009-Oct-27 02:14 UTC
[LLVMdev] [PATCH] Add missing file (SCCVN.cpp) to the cmake build system
On Oct 26, 2009, at 7:02 PM, Marius Wachtler wrote:> When I compile LLVM trunk with Visual Studio 2008 and cmake, the > build is failing because a new file is not yet added to the build > system.Fixed in r85197. Thanks.