Package Details: abseil-cpp11 20220623.1-2

Git Clone URL: https://aur.archlinux.org/abseil-cpp11.git (read-only, click to copy)
Package Base: abseil-cpp11
Description: Common C++ libraries (legacy for C++11)
Upstream URL: https://abseil.io
Licenses: Apache
Submitter: osamc
Maintainer: osamc
Last Packager: osamc
Votes: 0
Popularity: 0.000000
First Submitted: 2023-12-14 23:35 (UTC)
Last Updated: 2024-01-21 15:43 (UTC)

Pinned Comments

osamc commented on 2023-12-24 21:09 (UTC)

This AUR package is a mirror and automatically updated from the proaudio binary repo project at https://github.com/osam-cologne/archlinux-proaudio

If possible, open a GitHub issue or PR instead of commenting here, thanks!

Latest Comments

ccorn commented on 2024-01-21 01:22 (UTC) (edited on 2024-01-21 02:08 (UTC) by ccorn)

This installation needs a runtime library path setting to be usable:

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -23,6 +23,8 @@ build() {
     -DCMAKE_INSTALL_PREFIX=/usr \
     -DCMAKE_INSTALL_INCLUDEDIR=/usr/include/$pkgname \
     -DCMAKE_INSTALL_LIBDIR=lib/$pkgname \
+    -DCMAKE_SKIP_INSTALL_RPATH=OFF \
+    -DCMAKE_INSTALL_RPATH=/usr/lib/$pkgname \
     -DCMAKE_CXX_STANDARD=11 \
     -DBUILD_SHARED_LIBS=ON \
     -DABSL_USE_EXTERNAL_GOOGLETEST=ON \

With this change, users of this version only need to add

-Dabsl_DIR=/usr/lib/abseil-cpp11/cmake/absl \
-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON

to their cmake command line.

This change has now been proposed as a pull request.

osamc commented on 2023-12-24 21:09 (UTC)

This AUR package is a mirror and automatically updated from the proaudio binary repo project at https://github.com/osam-cologne/archlinux-proaudio

If possible, open a GitHub issue or PR instead of commenting here, thanks!