diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2017-12-21 21:26:27 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2018-01-10 15:45:57 (GMT) |
commit | a91fde135d8a9fb03a28d0760f0c052a26350b91 (patch) | |
tree | 4c4ab14b6c4b49ef9edf835009b53de5bfd593c6 /Tests/CudaOnly/ResolveDeviceSymbols/CMakeLists.txt | |
parent | 1f29bc4092edf57cfb61882d7d7358db7e53ebe6 (diff) | |
download | CMake-a91fde135d8a9fb03a28d0760f0c052a26350b91.zip CMake-a91fde135d8a9fb03a28d0760f0c052a26350b91.tar.gz CMake-a91fde135d8a9fb03a28d0760f0c052a26350b91.tar.bz2 |
CUDA: gencode signature that list multiple code types now supported.
Fixes #17263
Diffstat (limited to 'Tests/CudaOnly/ResolveDeviceSymbols/CMakeLists.txt')
-rw-r--r-- | Tests/CudaOnly/ResolveDeviceSymbols/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CudaOnly/ResolveDeviceSymbols/CMakeLists.txt b/Tests/CudaOnly/ResolveDeviceSymbols/CMakeLists.txt index 83473ae..0c453a9 100644 --- a/Tests/CudaOnly/ResolveDeviceSymbols/CMakeLists.txt +++ b/Tests/CudaOnly/ResolveDeviceSymbols/CMakeLists.txt @@ -21,7 +21,7 @@ endif() # Resolve the device symbols into that static library # Verify that we can't use those device symbols from anything that links # to the static library -string(APPEND CMAKE_CUDA_FLAGS " -gencode arch=compute_30,code=compute_30") +string(APPEND CMAKE_CUDA_FLAGS " -gencode arch=compute_30,code=[compute_30] -gencode arch=compute_50,code=\\\"compute_50\\\"") set(CMAKE_CXX_STANDARD 11) set(CMAKE_CUDA_STANDARD 11) |