-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Bazel build error for boost when building from source on ARM(aarch64) #7184
Comments
@heavyinfo Hi, heavyinfo. I encountered the same issue, so do you solve it now? |
@JasonWayne Yes I did! But, after a long deep dive into the world of Bazel build rules and boost libraries. Basically, the above errors require
That's because in boost library bazel rule So, TL,DR; |
The patch has been merged in the upstream, so this may no longer be an issue provided ray continues to use upstream bazel rules for boost libraries. |
Not related but all I could find on Google:
|
I'm trying to build ray from source on Jetson Nano (aarch64).
I already have working PyArrow, bazel in my system, I compiled the requisite files to the ray build folder as required.x
Ubuntu 18.04, Linux Titan 4.9.140-tegra #1 SMP PREEMPT Sat Oct 19 15:54:06 PDT 2019 aarch64 aarch64 aarch64 GNU/Linux
bazel 2.1.0- (@non-git)
Python 3.6.9
ray - latest cloned from here.
But, I get the following error at 116:1 when building ray -
If I manually add
linux_arm
toNew 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 have installed boost libraries in system already for other projects, can I some how avoid bazel download of boost and add it manually like I did for PyArrow?
The text was updated successfully, but these errors were encountered: