JDevlieghere created this revision. JDevlieghere added reviewers: clayborg, sgraenitz, aprantl. JDevlieghere added a project: LLDB. Herald added a subscriber: mgorny. Herald added a reviewer: EricWF.
As discussed on IRC this morning, when building an in-tree clang for testing we have to have libcxx and libcxxabi checked out. This is a common pitfall that manifests that is non-obvious and manifests itself only after building when running the test suite. Repository: rLLDB LLDB https://reviews.llvm.org/D55837 Files: CMakeLists.txt Index: CMakeLists.txt =================================================================== --- CMakeLists.txt +++ CMakeLists.txt @@ -157,6 +157,8 @@ if(TARGET clang) list(APPEND LLDB_TEST_DEPS clang) + list(APPEND LLDB_TEST_DEPS cxx) + list(APPEND LLDB_TEST_DEPS cxxabi) endif() if(TARGET dsymutil)
Index: CMakeLists.txt =================================================================== --- CMakeLists.txt +++ CMakeLists.txt @@ -157,6 +157,8 @@ if(TARGET clang) list(APPEND LLDB_TEST_DEPS clang) + list(APPEND LLDB_TEST_DEPS cxx) + list(APPEND LLDB_TEST_DEPS cxxabi) endif() if(TARGET dsymutil)
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits