[PATCH] D30635: [XRay] [compiler-rt] Mark arg1 logging test as failing on !x86_64.

Dean Michael Berris via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 6 20:53:22 PST 2017


dberris added a comment.

For compiler-rt, the architecture is determined by CMake and is used to inform the lit config in `test/lit.common.configured.in` -- so you'll find the list of architectures in compiler-rt that are enumerated in `cmake/config-ix.cmake`. There's a list of architectures there, and you'll see things like the following spelled: `mipsel`, `mips64el`, `powerpc64`, `powerpc64le`. You then need to know which architectures the XRay tests are actually enabled, and where they're running. As far as I can tell they are in `cmake/config-ix.cmake` as well. The list is:

  set(ALL_XRAY_SUPPORTED_ARCH ${X86_64} ${ARM32} ${ARM64} ${MIPS32} ${MIPS64} powerpc64le)

Does this make it clearer?


https://reviews.llvm.org/D30635





More information about the llvm-commits mailing list