Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/flang
diff options
context:
space:
mode:
authorDiana Picus <diana.picus@linaro.org>2022-05-02 14:41:07 +0300
committerDiana Picus <diana.picus@linaro.org>2022-05-16 11:30:53 +0300
commit3d2e05d542e646891745c5278a09950d3c4fb4a5 (patch)
treed91e0be6f7580b879c40af661e9191a2306e00dc /flang
parent05c3fe075d608a3e14f6ab272a24132912ebc861 (diff)
[flang] Install Fortran_main library
At the moment the Fortran_main library is not installed, so it cannot be found by the driver when run from an install directory. This patch fixes the issue by replacing llvm_add_library with add_flang_library, which already contains all the proper incantations for installing a library. It also enhances add_flang_library to support a STATIC arg which forces the library to be static even when BUILD_SHARED_LIBS is on. Differential Revision: https://reviews.llvm.org/D124759 Co-authored-by: Dan Palermo <Dan.Palermo@amd.com>
Diffstat (limited to 'flang')
-rw-r--r--flang/cmake/modules/AddFlang.cmake4
-rw-r--r--flang/runtime/FortranMain/CMakeLists.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/flang/cmake/modules/AddFlang.cmake b/flang/cmake/modules/AddFlang.cmake
index 369e303e148a..f6fc2ac363fc 100644
--- a/flang/cmake/modules/AddFlang.cmake
+++ b/flang/cmake/modules/AddFlang.cmake
@@ -18,7 +18,7 @@ endmacro()
macro(add_flang_library name)
cmake_parse_arguments(ARG
- "SHARED"
+ "SHARED;STATIC"
""
"ADDITIONAL_HEADERS"
${ARGN})
@@ -53,7 +53,7 @@ macro(add_flang_library name)
else()
# llvm_add_library ignores BUILD_SHARED_LIBS if STATIC is explicitly set,
# so we need to handle it here.
- if (BUILD_SHARED_LIBS)
+ if (BUILD_SHARED_LIBS AND NOT ARG_STATIC)
set(LIBTYPE SHARED OBJECT)
else()
set(LIBTYPE STATIC OBJECT)
diff --git a/flang/runtime/FortranMain/CMakeLists.txt b/flang/runtime/FortranMain/CMakeLists.txt
index aa214cee31ff..1d840ee5d1a3 100644
--- a/flang/runtime/FortranMain/CMakeLists.txt
+++ b/flang/runtime/FortranMain/CMakeLists.txt
@@ -1,3 +1,3 @@
-llvm_add_library(Fortran_main STATIC
+add_flang_library(Fortran_main STATIC
Fortran_main.c
)