[flang] [llvm] [Flang] Remove FLANG_INCLUDE_RUNTIME (PR #124126)
Michael Kruse via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 07:14:19 PDT 2025
================
@@ -187,6 +187,19 @@ foreach(proj IN LISTS LLVM_ENABLE_RUNTIMES)
endif()
endforeach()
+option(FLANG_ENABLE_FLANG_RT "Implicitly add LLVM_ENABLE_RUNTIMES=flang-rt when compiling Flang" ON)
+if ("flang" IN_LIST LLVM_ENABLE_PROJECTS)
+ if (NOT "flang-rt" IN_LIST LLVM_ENABLE_RUNTIMES)
+ message(STATUS "Enabling Flang-RT as a dependency of Flang"
+ "Flang-RT is required for a fully working Flang toolchain."
+ "If you intend to compile Flang-RT separately following the instructions at"
+ "https://github.com/llvm/llvm-project/blob/main/flang-rt/README.md#standalone-runtimes-build"
----------------
Meinersbur wrote:
Is it ok to update the docs in a follow-up? Consolidating this README.md and https://flang.llvm.org/docs/GettingStarted.html#building-flang-rt-for-accelerators itself would be a larger patch. Also think that advanced topics like FLANG_RT_EXPERIMENTAL_OFFLOAD_SUPPORT does not belong into a GettingStarted.
https://github.com/llvm/llvm-project/pull/124126
More information about the llvm-commits
mailing list