Skip to content

Commit a290412

Browse files
Try without full paths
Signed-off-by: Dillon Cullinan <[email protected]>
1 parent 2e07221 commit a290412

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

container/Dockerfile.sglang

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,9 +529,9 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \
529529
export CMAKE_C_COMPILER_LAUNCHER="sccache" && \
530530
export CMAKE_CXX_COMPILER_LAUNCHER="sccache" && \
531531
export CMAKE_CUDA_COMPILER_LAUNCHER="sccache" && \
532-
export CC=$(which gcc) && \
533-
export CXX=$(which g++) && \
534-
export CUDA_CXX=$(which nvcc) && \
532+
export CC="gcc" && \
533+
export CXX="g++" && \
534+
export CUDA_CXX="nvcc" && \
535535
cd /sgl-workspace/nvshmem && \
536536
if [ "$GRACE_BLACKWELL" = true ]; then CUDA_ARCH="90;100;120"; else CUDA_ARCH="90"; fi && \
537537
NVSHMEM_SHMEM_SUPPORT=0 \

0 commit comments

Comments
 (0)