https://github.com/clayborg commented:

Looks good to me.

FYI: here is how you might be able to try cross compiling by editing the 
Makefile and removing the `@skipIf*`. The compile command for cross compiling 
looks like:
```
clang++ -target x86_64-pc-linux-elf -g -gsplit-dwarf -c main.cpp
```
You will want to try adding a bogus `-target x86_64--carp` and make sure the 
test stops or can handle not compiling correctly. This will help you figure out 
what will happen if `-target x86_64-pc-linux-elf` doesn't work because ELF or 
linux support isn't compiled into clang. If you can't gracefully handle this 
case, then just leave the `@skip` decorators as is

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