This target doesn't currently do anything, but it is required by the runtimes build.
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
I'm not sure what you mean here -- can you provide a bit more context? Note that we gate the adding of the unittests on whether we should build XRay and whether the target can run the unit tests. We already add the testsuite in line 31 in this same file.
Can you say something about whether the target you're building for can run the tests?
We're building compiler-rt runtimes using LLVM's new runtimes directory. The CMakeLists.txt for runtimes checks whether each component has a check-${component} and if not it throws an error, see: https://github.com/llvm-mirror/llvm/blob/master/runtimes/CMakeLists.txt#L118. Currently our build is broken because check-xray-fdr is missing, adding an empty target at least unbreaks the build. Alternatively, we could alter that check to e.g. to only give a warning. Adding @beanz who is the author of that check if he has some opinion.
Ah, okay -- that's a good enough explanation for me. :) Thanks @phosek -- I was just wondering whether that build had a bot that sent out messages yet? Or will that happen at some point later when things have been "fixed"?
Thanks! AFAIK there's not bot yet which would be doing the runtimes build. I'm hoping to set up a LLVM Buildbot builder for Fuchsia which is going to be using that setup, hopefully within a week or two.