llvmbot wrote:

<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Alex Langford (bulbazord)

<details>
<summary>Changes</summary>

lldb-dotest was likely getting LLDB_FRAMEWORK_DIR from another place before. 
Now it's undefined when lldb-dotest is configured, so it's an empty string. 
Some API tests will fail to link against LLDB.

---
Full diff: https://github.com/llvm/llvm-project/pull/174658.diff


1 Files Affected:

- (modified) lldb/utils/lldb-dotest/CMakeLists.txt (+1) 


``````````diff
diff --git a/lldb/utils/lldb-dotest/CMakeLists.txt 
b/lldb/utils/lldb-dotest/CMakeLists.txt
index f3f75015637f4..c6077fad3b918 100644
--- a/lldb/utils/lldb-dotest/CMakeLists.txt
+++ b/lldb/utils/lldb-dotest/CMakeLists.txt
@@ -30,6 +30,7 @@ if ("libcxx" IN_LIST LLVM_ENABLE_RUNTIMES)
 endif()
 
 set(LLVM_TOOLS_DIR "${LLVM_TOOLS_BINARY_DIR}")
+set(LLDB_FRAMEWORK_DIR "${LLDB_FRAMEWORK_ABSOLUTE_BUILD_DIR}/LLDB.framework")
 set(vars
   LLDB_TEST_COMMON_ARGS
   LLDB_TEST_USER_ARGS

``````````

</details>


https://github.com/llvm/llvm-project/pull/174658
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to