================
@@ -130,3 +130,29 @@ def test_dwos_not_loaded_table_output(self):
                 "0x[a-zA-Z0-9]{16}\s+E\s+.*foo\.dwo",
             ],
         )
+
+    @skipIfRemote
+    @skipIfDarwin
+    @skipIfWindows
----------------
clayborg wrote:

The standard clang won't emit .dwo files when you build on a mac unless you 
specify the target triple. Then you also run into cases where someone might not 
have your architecture enabled in clang so it won't be able to build with the 
specified triple. I haven't looked at the Makefile for this, but I am guessing 
it is building with the clang we built, which we know supports the default 
triple, but we don't know if it will support a specified triple that allows 
.dwo files to be created. Any darwin clang producing darwin binaries won't make 
.dwos

https://github.com/llvm/llvm-project/pull/71230
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to