We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8988a commit 7fcc336Copy full SHA for 7fcc336
flang-rt/lib/runtime/CMakeLists.txt
@@ -178,6 +178,9 @@ endif ()
178
if ("${LLVM_RUNTIMES_TARGET}" MATCHES "^amdgcn|^nvptx")
179
set(sources ${gpu_sources})
180
elseif(FLANG_RT_EXPERIMENTAL_OFFLOAD_SUPPORT STREQUAL "CUDA")
181
+ # findloc.cpp has some issues with higher compute capability. Remove it
182
+ # from CUDA build until we can lower its memory footprint.
183
+ list(REMOVE_ITEM supported_sources findloc.cpp)
184
set(sources ${supported_sources})
185
else ()
186
set(sources ${supported_sources} ${host_sources} ${f128_sources})
0 commit comments