-
Notifications
You must be signed in to change notification settings - Fork 194
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
Add conda
compilers
#702
Add conda
compilers
#702
Conversation
@ajschmidt8 I see this failure message in the logs but it's not immediately clear to me what it means:
At a glance, the file that seems to be causing the error doesn't seem to have any typos. |
Now it seems like it's struggling to find the std c++ libs. |
nvcc isn't finding the conda compilers, it's using the host compiler (c++4.8.2) instead. We need to add |
Looks like there's an error explicitly being thrown by scikit-build now. @vyasr are you familiar with this one? Is it a simple path issue or something deeper?
|
I'm going to make some more adjustments to these |
@ajschmidt8 @cjnolet this is the error fixed by #701. We need to backport that fix to 22.06 now that we are switching raft to conda compilers in 22.06. |
I will backport that in my PR. thanks @vyasr |
`CMAKE_ARGS` is a special environment variable in conda-forge's build process, so we need to avoid shadowing it. Authors: - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: rapidsai#701
sure if this is the problem).
…ill not" This reverts commit b40fb3f.
rerun tests |
Great to see this one in! 🎉 Nice work all 🙏 |
Our
devel
Docker containers need to be switched to usingconda
compilers to resolve a linking error.raft
is in those containers, but hasn't yet been built withconda
compilers. This PR addresses that.These changes won't cleanly merge into
branch-22.08
unfortunately due to the changes in #641, but we can address that another time.