From b24f0531e331e745b99d7eeb989b86754d5ae870 Mon Sep 17 00:00:00 2001 From: mgoin Date: Wed, 9 Jul 2025 13:33:36 -0400 Subject: [PATCH] Fix flags Signed-off-by: mgoin --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c13961b55dc54..e615cc6f2fd9a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -175,7 +175,7 @@ endif() # Set nvcc fatbin compression. # if(${CMAKE_CUDA_COMPILER_VERSION} VERSION_GREATER 12.8 AND VLLM_GPU_LANG STREQUAL "CUDA") - list(APPEND VLLM_GPU_FLAGS "-Xfatbin -compress-all -compress-mode=size") + list(APPEND VLLM_GPU_FLAGS "-Xfatbin" "-compress-all" "-compress-mode=size") endif()