-
Notifications
You must be signed in to change notification settings - Fork 232
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
Was the ARM support reverted? #164
Comments
BUILD.boost points to assembly files at https://github.com/nelhage/rules_boost/blob/master/BUILD.boost#L103 which cannot be compiled for ARM64(aarch64), boost library already has requisite ARM64 files for the same. Also, some default conditions are required to successfully compile on ARM64 platform as discussed here - ray-project/ray#7184. I've made a patch to address this issue,
But this patch may break dependency for ARMv7 as I've not figured out how to include files for both ARM32 and ARM64 under If anyone can advise me on how to achieve that, I will update the patch and submit a PR. |
I think you'll probably want to add some a It looks like config_setting(
name = "linux_aarch64",
constraint_values = [
"@bazel_tools//platforms:linux",
"@bazel_tools//platforms:aarch64",
],
visibility = ["//visibility:public"],
) |
Closing this issue, as the patch has been merged successfully. |
Hi, bazel is not able build boost in ARM (aarch64). I'm trying to build ray project.
Errors
If I manually add linux_arm to
New error occurs at 1586:1,
If I add linux_arm there as well,
Second error (1586:1) disappears, but first error reappears again (116:1).
I see that the ARM specific changes provided
here- #121 is not in the latest rules; have they become invalid?
The text was updated successfully, but these errors were encountered: