-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Unified: Enable on Arm64 #22478
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
Unified: Enable on Arm64 #22478
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 |
|---|---|---|
|
|
@@ -43,7 +43,7 @@ codeql_pkg_files( | |
| name = "extractor-arch", | ||
| exes = codeql_platform_select( | ||
| linux64 = ["//unified/extractor"], | ||
| linux_arm64 = ["//unified/extractor-unsupported-os:extractor"], | ||
| linux_arm64 = ["//unified/extractor"], | ||
| osx64 = ["//unified/extractor"], | ||
| win64 = ["//unified/extractor-unsupported-os:extractor"], | ||
|
Comment on lines
44
to
48
Contributor
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. at this point we can simplify to exes = codeql_platform_select(
win64 = ["//unified/extractor-unsupported-os:extractor"],
otherwise = ["//unified/extractor"],
),
Contributor
Author
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. Let me get this merged and do a small follow-up.
Contributor
Author
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. |
||
| ), | ||
|
|
||
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.
Fair, but these are broken all over the place. We should probably find a way to get rid of most or all of them.