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 a16211c commit e6f5aa9Copy full SHA for e6f5aa9
llvm/runtimes/CMakeLists.txt
@@ -524,6 +524,14 @@ if(build_runtimes)
524
endif()
525
endforeach()
526
527
+ # Tools needed by build_symbolizer.sh.
528
+ if("compiler-rt" IN_LIST LLVM_ENABLE_RUNTIMES AND COMPILER_RT_ENABLE_INTERNAL_SYMBOLIZER)
529
+ foreach(dep clang llvm-tblgen opt llvm-ar llvm-link)
530
+ if(TARGET ${dep})
531
+ list(APPEND extra_deps ${dep})
532
+ endif()
533
+ endforeach()
534
535
if("openmp" IN_LIST LLVM_ENABLE_RUNTIMES OR "offload" IN_LIST LLVM_ENABLE_RUNTIMES)
536
if (${LLVM_TOOL_FLANG_BUILD})
537
message(STATUS "Configuring build of omp_lib.mod and omp_lib_kinds.mod via flang")
0 commit comments