Revert "[Build/CI] Fix libcuda.so linkage" (#12552)

This commit is contained in:
Tyler Michael Smith 2025-01-29 16:12:24 -05:00 committed by GitHub
parent 27b78c73ca
commit 73aa6cfdf7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -446,9 +446,6 @@ if(VLLM_GPU_LANG STREQUAL "CUDA")
endif()
message(STATUS "Enabling C extension.")
if(VLLM_GPU_LANG STREQUAL "CUDA")
list(APPEND VLLM_C_LIBS cuda)
endif()
define_gpu_extension_target(
_C
DESTINATION vllm
@ -457,7 +454,6 @@ define_gpu_extension_target(
COMPILE_FLAGS ${VLLM_GPU_FLAGS}
ARCHITECTURES ${VLLM_GPU_ARCHES}
INCLUDE_DIRECTORIES ${CUTLASS_INCLUDE_DIR};${CUTLASS_TOOLS_UTIL_INCLUDE_DIR}
LIBRARIES ${VLLM_C_LIBS}
USE_SABI 3
WITH_SOABI)