[llvm] [flang-rt] Use --as-needed for linking flang-rt libraries. (PR #130856)
Slava Zakharin via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 12:45:44 PDT 2025
https://github.com/vzakhari updated https://github.com/llvm/llvm-project/pull/130856
>From 76c2d561f9c0b07bb0e96d2a90e7a8eb0ceae9d5 Mon Sep 17 00:00:00 2001
From: Slava Zakharin <szakharin at nvidia.com>
Date: Tue, 11 Mar 2025 15:29:37 -0700
Subject: [PATCH 1/2] [flang-rt] Use --as-needed for linking flang-rt
libraries.
This change makes sure that there is no unnecessary library
dependencies like libc++/libstdc++.
---
flang-rt/CMakeLists.txt | 7 ++++++-
flang-rt/cmake/modules/AddFlangRT.cmake | 11 +++++++++++
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/flang-rt/CMakeLists.txt b/flang-rt/CMakeLists.txt
index e3dcd504cf532..8d525cd1fb37d 100644
--- a/flang-rt/CMakeLists.txt
+++ b/flang-rt/CMakeLists.txt
@@ -245,6 +245,12 @@ check_cxx_compiler_flag("-UTESTFLAG" FLANG_RT_SUPPORTS_UNDEFINE_FLAG)
# Check whether -fno-lto is supported.
check_cxx_compiler_flag(-fno-lto FLANG_RT_HAS_FNO_LTO_FLAG)
+# Check whether -Wl,--as-needed is supported.
+check_linker_flag(C "-Wl,--as-needed" LINKER_SUPPORTS_AS_NEEDED)
+if (LINKER_SUPPORTS_AS_NEEDED)
+ set(LINKER_AS_NEEDED_OPT "-Wl,--as-needed")
+endif()
+
# Different platform may have different name for the POSIX thread library.
# For example, libpthread.a on AIX. Search for it as it is needed when
# building the shared flang_rt.runtime.so.
@@ -295,7 +301,6 @@ elseif (FLANG_RT_GCC_RESOURCE_DIR)
endif ()
-
#####################
# Build Preparation #
#####################
diff --git a/flang-rt/cmake/modules/AddFlangRT.cmake b/flang-rt/cmake/modules/AddFlangRT.cmake
index c9a180e16163a..7263a125c0586 100644
--- a/flang-rt/cmake/modules/AddFlangRT.cmake
+++ b/flang-rt/cmake/modules/AddFlangRT.cmake
@@ -186,6 +186,17 @@ function (add_flangrt_library name)
else ()
set_target_properties(${tgtname} PROPERTIES FOLDER "Flang-RT/Libraries")
endif ()
+
+ # flang-rt libraries must not depend on libc++/libstdc++,
+ # so set the linker language to C to avoid the unnecessary
+ # library dependence. Note that libc++/libstdc++ may still
+ # come through CMAKE_CXX_IMPLICIT_LINK_LIBRARIES.
+ set_target_properties(${tgtname} PROPERTIES LINKER_LANGUAGE C)
+ # Use --as-needed to avoid unnecessary dependencies.
+ if (LINKER_AS_NEEDED_OPT)
+ set_property(TARGET ${tgtname} APPEND_STRING PROPERTY
+ LINK_FLAGS "${LINKER_AS_NEEDED_OPT}")
+ endif()
endforeach ()
# Define how to compile and link the library.
>From 8e21a0028f92620703fbf89095375c6a8e9c2f13 Mon Sep 17 00:00:00 2001
From: Slava Zakharin <szakharin at nvidia.com>
Date: Wed, 12 Mar 2025 12:18:42 -0700
Subject: [PATCH 2/2] Addressed review comments.
---
flang-rt/CMakeLists.txt | 5 +++--
flang-rt/cmake/modules/AddFlangRT.cmake | 25 ++++++++++++++-----------
2 files changed, 17 insertions(+), 13 deletions(-)
diff --git a/flang-rt/CMakeLists.txt b/flang-rt/CMakeLists.txt
index 8d525cd1fb37d..e8b24ed300699 100644
--- a/flang-rt/CMakeLists.txt
+++ b/flang-rt/CMakeLists.txt
@@ -246,9 +246,9 @@ check_cxx_compiler_flag("-UTESTFLAG" FLANG_RT_SUPPORTS_UNDEFINE_FLAG)
check_cxx_compiler_flag(-fno-lto FLANG_RT_HAS_FNO_LTO_FLAG)
# Check whether -Wl,--as-needed is supported.
-check_linker_flag(C "-Wl,--as-needed" LINKER_SUPPORTS_AS_NEEDED)
+check_linker_flag(C "LINKER:--as-needed" LINKER_SUPPORTS_AS_NEEDED)
if (LINKER_SUPPORTS_AS_NEEDED)
- set(LINKER_AS_NEEDED_OPT "-Wl,--as-needed")
+ set(LINKER_AS_NEEDED_OPT "LINKER:--as-needed")
endif()
# Different platform may have different name for the POSIX thread library.
@@ -301,6 +301,7 @@ elseif (FLANG_RT_GCC_RESOURCE_DIR)
endif ()
+
#####################
# Build Preparation #
#####################
diff --git a/flang-rt/cmake/modules/AddFlangRT.cmake b/flang-rt/cmake/modules/AddFlangRT.cmake
index 7263a125c0586..67456c4160d96 100644
--- a/flang-rt/cmake/modules/AddFlangRT.cmake
+++ b/flang-rt/cmake/modules/AddFlangRT.cmake
@@ -145,6 +145,20 @@ function (add_flangrt_library name)
if (Threads_FOUND)
target_link_libraries(${name_shared} PUBLIC Threads::Threads)
endif ()
+
+ # Special dependencies handling for shared libraries only:
+ #
+ # flang-rt libraries must not depend on libc++/libstdc++,
+ # so set the linker language to C to avoid the unnecessary
+ # library dependence. Note that libc++/libstdc++ may still
+ # come through CMAKE_CXX_IMPLICIT_LINK_LIBRARIES.
+ set_target_properties(${name_shared} PROPERTIES LINKER_LANGUAGE C)
+ # Use --as-needed to avoid unnecessary dependencies.
+ if (LINKER_AS_NEEDED_OPT)
+ target_link_options(${name_shared} BEFORE PRIVATE
+ "${LINKER_AS_NEEDED_OPT}"
+ )
+ endif()
endif ()
if (libtargets)
@@ -186,17 +200,6 @@ function (add_flangrt_library name)
else ()
set_target_properties(${tgtname} PROPERTIES FOLDER "Flang-RT/Libraries")
endif ()
-
- # flang-rt libraries must not depend on libc++/libstdc++,
- # so set the linker language to C to avoid the unnecessary
- # library dependence. Note that libc++/libstdc++ may still
- # come through CMAKE_CXX_IMPLICIT_LINK_LIBRARIES.
- set_target_properties(${tgtname} PROPERTIES LINKER_LANGUAGE C)
- # Use --as-needed to avoid unnecessary dependencies.
- if (LINKER_AS_NEEDED_OPT)
- set_property(TARGET ${tgtname} APPEND_STRING PROPERTY
- LINK_FLAGS "${LINKER_AS_NEEDED_OPT}")
- endif()
endforeach ()
# Define how to compile and link the library.
More information about the llvm-commits
mailing list