-
Notifications
You must be signed in to change notification settings - Fork 344
[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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
@@ -1,10 +1,9 @@ | ||||
if(CMAKE_C_COMPILER_ID STREQUAL "Clang") | ||||
if(TARGET_OS STREQUAL "Linux") | ||||
list(APPEND CFLAGS --rtlib=compiler-rt) | ||||
list(APPEND LDFLAGS --rtlib=compiler-rt) | ||||
endif() | ||||
if(ARCH STREQUAL "AArch64") | ||||
set(Source ) | ||||
# 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 commentThe reason will be displayed to describe this comment to others. Learn more. Does it get added to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think so looking into
But I tested that on aarch64/x86 Linux only There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||||
llvm_singlesource(PREFIX "aarch64-") | ||||
endif() | ||||
endif() |
Uh oh!
There was an error while loading. Please reload this page.