Dockerfile Symlink all LLVM tools
Some checks failed
Build ISO image / build-and-deploy (push) Failing after 6m0s
Build documentation / build-and-deploy (push) Successful in 1m39s

This commit is contained in:
2026-04-23 21:57:21 +02:00
parent 30cc22df45
commit 9a2b4a714f

View File

@@ -17,10 +17,10 @@ RUN wget https://deb.nodesource.com/setup_20.x -O /setup_node.sh && chmod +x /se
RUN apt-get install -y make rsync clang-21 clang-tools-21 llvm-21 bear lld xorriso \
zip gnupg openssh-client nodejs git build-essential qemu-system \
autotools-dev autoconf
autotools-dev autoconf mtools
RUN ln -sf /usr/bin/clang-21 /usr/bin/clang && \
ln -sf /usr/bin/clang-doc-21 /usr/bin/clang-doc && \
ln -sf /usr/bin/llvm-ar-21 /usr/bin/llvm-ar
RUN for tool in /usr/bin/*-21; do \
ln -sf "$tool" "${tool%-21}"; \
done
CMD ["/bin/bash"]