[BUG] cuDF fails to build if -DPython_LIBRARY
is not set in the cmake command
#13189
Labels
-DPython_LIBRARY
is not set in the cmake command
#13189
Related PR: #13188
It was noticed that a recent build of cudf failed:
The difference between this run and the last successful build is that scikit-build went from 0.17.1 to 0.17.2.
The consequence of this scikit-build change resulted in the generated cmake command not having the
-DPython_LIBRARY
option specified.In the successful build we can see that option set:
Interestingly, I don't think we ever needed the file itself. Just the string needs to be defined.
The manylinux container (in which we do the build) has the static libpython libraries tarred in a special location (to save space in the docker container):
We don't (and, I don't think ever needed to, not since the earliest proof-of-concept of cibuildwheel) untar those libraries. So it seems that despite not needing the actual library to exist, the cmake command fails simply because the string is missing.
The text was updated successfully, but these errors were encountered: