-
Hello, I have a Dockerfile of my experiments and it seems to fail to link drjit at the end of the compilation process. Thanks a lot.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi @rdavidams I wouldn't expect that specific error message. Can you even build the variant "normally" (local cmake build) ? We build our wheels using Just to be clear, the |
Beta Was this translation helpful? Give feedback.
Hi @rdavidams
I wouldn't expect that specific error message. Can you even build the variant "normally" (local cmake build) ?
We build our wheels using
cibuildwheel
. You can see the exact commands we run here: https://github.com/mitsuba-renderer/mitsuba3/blob/master/.github/workflows/wheels.yml. It doesn't use docker, butcibuildwheel
uses docker on Linux for each individual build so you'll want to be careful if you try using it (docker-in-docker issues).Just to be clear, the
mitsuba
wheel is built withoutdrjit
which is it's own package that is simply set as a requirement/dependency tomitsuba
.