-
Notifications
You must be signed in to change notification settings - Fork 349
[AArch64][FMV] Enable tests for ACLE FMV on Linux. #98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Enabling Linux part of llvm#87
# TODO: this test is currently only supported on Darwin platforms: | ||
if (TARGET_OS MATCHES "Darwin") | ||
list(APPEND Source acle-fmv-features.c) | ||
endif() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it get added to Sources
automatically for all platforms now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think so looking into
add_subdirectory(AArch64) |
But I tested that on aarch64/x86 Linux only
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, seems fine. If we have trouble with non-posix systems (Fuchsia? Windows?) I guess those can be opted out if the buildbots complain.
Co-authored-by: Jon Roelofs <[email protected]>
One of these is failing on our bot: https://lab.llvm.org/buildbot/#/builders/183/builds/19626 It's hard to find the failures in these test suite dumps, so far I only see:
I'll see if I can find the reason for that. |
The patch fixes buildbot failures discovered in llvm#98 by checking for compiler-rt availability. Existence of compiler-rt builtin check was added to find_compiler_rt_library function.
The patch fixes buildbot failures discovered in #98 by checking for compiler-rt availability. Existence of compiler-rt builtin check was added to find_compiler_rt_library function.
Enabling Linux part of #87