[Lldb-commits] [lldb] Add a new SBExpressionOptions::SetLanguage() API (NFCI) (PR #89981)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 26 16:08:35 PDT 2024


================
@@ -239,6 +239,9 @@ def delete_module_cache(path):
 if is_configured("server"):
     dotest_cmd += ["--server", config.server]
 
+if is_configured("lldb_built_include_dir"):
+    dotest_cmd += ["--lldb-built-include-dir", config.lldb_built_include_dir]
----------------
JDevlieghere wrote:

If you do:
```
 is_configured("config.lldb_obj_root"):
  dotest_cmd += ["--lldb-built-include-dir", os.path.join(config.lldb_obj_root, 'include')] 
```

you can get rid of `config.lldb_built_include_dir`. 

https://github.com/llvm/llvm-project/pull/89981


More information about the lldb-commits mailing list