mirror of
https://github.com/reactos/CMake.git
synced 2024-12-01 15:30:40 +00:00
CUDA: Do not pass unsupported @rspfile arguments to NVCC
The nvcc compiler does not support `@<rspfile>` arguments. It does offer a `--options-file` argument that can be investigated later. Fixes: #17797
This commit is contained in:
parent
ac925ec09e
commit
f64732f59b
@ -33,3 +33,9 @@ else()
|
||||
endif()
|
||||
|
||||
endif()
|
||||
|
||||
# FIXME: investigate use of --options-file.
|
||||
# Tell Makefile generator that nvcc does not support @<rspfile> syntax.
|
||||
set(CMAKE_CUDA_USE_RESPONSE_FILE_FOR_INCLUDES 0)
|
||||
set(CMAKE_CUDA_USE_RESPONSE_FILE_FOR_LIBRARIES 0)
|
||||
set(CMAKE_CUDA_USE_RESPONSE_FILE_FOR_OBJECTS 0)
|
||||
|
Loading…
Reference in New Issue
Block a user