summaryrefslogtreecommitdiff
path: root/debian/patches/latomic.diff
blob: d78c7469d77b1debe75b728b2b53d4d3a4a90bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
From: Benjamin Barenblat <bbaren@google.com>
Subject: Use libatomic if necessary
Bug-Debian: https://bugs.debian.org/973492

On some architectures, notably armel, Abseil needs symbols defined in
libatomic. Abseil does not currently have a well-developed system to
declare external library dependencies, so just have the linker determine
if anything needs libatomic and add the DT_NEEDED entry where necessary.

--- a/absl/copts/AbseilConfigureCopts.cmake
+++ b/absl/copts/AbseilConfigureCopts.cmake
@@ -64,4 +64,8 @@
   set(ABSL_TEST_COPTS "")
 endif()
 
+list(APPEND ABSL_DEFAULT_LINKOPTS
+    "-Wl,--as-needed" "-latomic" "-Wl,--no-as-needed"
+)
+
 set(ABSL_CXX_STANDARD "${CMAKE_CXX_STANDARD}")