Skip to content

Commit

Permalink
apacheGH-44358: [Packaging][Debian] Add workaround for CUDA include path
Browse files Browse the repository at this point in the history
This is not happen on Debian GNU/Linux stable and unstable. This is
happen only on Debian GNU/Linux testing. So this may be a temporary
problem.
  • Loading branch information
kou committed Oct 9, 2024
1 parent d4516c5 commit 6cf715f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ RUN \
valac \
zlib1g-dev && \
if apt list | grep '^nvidia-cuda-toolkit/'; then \
apt install -y -V ${quiet} nvidia-cuda-toolkit; \
apt install -y -V ${quiet} nvidia-cuda-toolkit && \
# GH-44358: Workaround for non-existent path error
mkdir -p \
/usr/lib/nvidia-cuda-toolkit/include/$(dpkg-architecture -qDEB_HOST_MULTIARCH); \
fi && \
apt clean

0 comments on commit 6cf715f

Please sign in to comment.