From d78b35076a6f1dc3f18f9c5deaf55bbab99a7688 Mon Sep 17 00:00:00 2001 From: Chunan Zeng Date: Wed, 16 Sep 2026 16:41:29 -0700 Subject: [PATCH] [CI] Fix missing elfutils headers in CUDA 13.4 DeepGEMM build (#39855) --- docker/Dockerfile.cu134 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/Dockerfile.cu134 b/docker/Dockerfile.cu134 index 049437799..86e58bfe5 100644 --- a/docker/Dockerfile.cu134 +++ b/docker/Dockerfile.cu134 @@ -354,7 +354,9 @@ ARG DEEPGEMM_REF ARG SGL_DEEP_GEMM_VERSION=0.1.5.post2 ARG TVM_FFI_VERSION=0.1.11 +# DeepJIT's exception handling requires elfutils/libdwfl.h and libelf headers. RUN yum install -y --nogpgcheck git wget tar gcc gcc-c++ make \ + elfutils-devel elfutils-libelf-devel \ && yum clean all && rm -rf /var/cache/yum RUN --mount=type=cache,id=cu134-wheels-pip,target=/root/.cache/pip \