diff options
author | Benjamin Barenblat <bbaren@google.com> | 2022-01-31 16:58:42 -0500 |
---|---|---|
committer | Benjamin Barenblat <bbaren@google.com> | 2022-01-31 16:58:42 -0500 |
commit | 8bd0ae5f71bfbbe3509f644cba58157810b65269 (patch) | |
tree | 401d928708cef25c002d87ebc0a0fe2161274dba /debian/changelog | |
parent | ab52b3b9670a5bb555c148d9d5638a1a7fa3e877 (diff) | |
download | abseil-8bd0ae5f71bfbbe3509f644cba58157810b65269.tar.gz abseil-8bd0ae5f71bfbbe3509f644cba58157810b65269.tar.bz2 abseil-8bd0ae5f71bfbbe3509f644cba58157810b65269.zip |
Stop forcing -Wl,--as-needed on dependents
Commit 8081530e824c092d36b1ef7947783c5859eb8b61 added -Wl,--as-needed
-latomic -Wl,--no-as-needed to ensure libatomic got linked on platforms
that needed it (see https://bugs.debian.org/973492). However, this
inadventantly added -Wl,--no-as-needed to dependents’ link lines when
they built with CMake. Switch to -Wl,--push-state,--as-needed -latomic
-Wl,--pop-state instead to ensure dependents’ link settings remain
intact. As an added bonus, this removes -Wl,--as-needed from the Abseil
build itself, allowing a bunch of libraries that don’t actually need
libc to omit a libc dependency.
Closes: https://bugs.debian.org/1001596
Diffstat (limited to 'debian/changelog')
-rw-r--r-- | debian/changelog | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index f69c9522..0347674f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ abseil (0~20210324.2-1) UNRELEASED; urgency=medium * Correct debian/watch search URLs to avoid picking up rc versions. * Mangle upstream version in debian/watch to match manual mangling in debian/changelog. + * Stop forcing -Wl,--no-as-needed on dependents. (Closes: #1001596) * Compute Thumb function bounds correctly. (Closes: #987314) * Reenable unit tests on arm64 and mips64el. |