Is it true that if an LLVM toolchain is compiled as a cross-toolchain, MCJIT is not expected to work?
I’m still working on a toolchain that cross-compiles from Windows to ARM Linux, and I’ve managed to get clang and lld tests to pass, but some (not all) MCJIT tests are failing.
If the answer is yes, what would be the appropriate way to skip those tests?
Sergej.
_______________________________________________
LLVM Developers mailing list
llvm...@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev
On 2 Sep 2019, at 21:16, David Blaikie <dbla...@gmail.com> wrote:I think the answer is: These tests are buggy & should be fixed. They should be "not run" if the native target isn't compiled in but is needed for a test.
Thank you!By native target you mean the host? If yes, I think I could try to fix that.