summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorcoopi <coopi@noreply.codeberg.org>2026-07-27 10:10:17 +0400
committerNguyễn Gia Phong <cnx@loang.net>2026-07-29 11:20:06 +0900
commit3005ed77e706977c6ed125d3516408b44e308ea8 (patch)
treed8e5c842b3ef3cfa3ef869d2f38ead11f83cab0d /gnu/packages/cpp.scm
parent3ccae2c20158d534da9d22e34f5c31574ed132b7 (diff)
gnu: cpptrace: Enable libunwind support.
* gnu/packages/cpp.scm (cpptrace)[inputs]: Add libunwind. [arguments]<#:configure-flags>: Enable libunwind support. Merges: https://codeberg.org/guix/guix/pulls/10202 Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 15ec745649e..9da8d2fd28c 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -411,6 +411,7 @@ parser, IO and conversion utilities.")
411 "-DCPPTRACE_USE_EXTERNAL_ZSTD=ON" 411 "-DCPPTRACE_USE_EXTERNAL_ZSTD=ON"
412 "-DCPPTRACE_USE_EXTERNAL_LIBDWARF=ON" 412 "-DCPPTRACE_USE_EXTERNAL_LIBDWARF=ON"
413 "-DCPPTRACE_FIND_LIBDWARF_WITH_PKGCONFIG=ON" 413 "-DCPPTRACE_FIND_LIBDWARF_WITH_PKGCONFIG=ON"
414 "-DCPPTRACE_UNWIND_WITH_LIBUNWIND=ON"
414 "-DBUILD_SHARED_LIBS=ON" 415 "-DBUILD_SHARED_LIBS=ON"
415 "-DCPPTRACE_USE_EXTERNAL_GTEST=ON") 416 "-DCPPTRACE_USE_EXTERNAL_GTEST=ON")
416 #:phases 417 #:phases
@@ -428,7 +429,7 @@ parser, IO and conversion utilities.")
428 (native-inputs 429 (native-inputs
429 (list googletest pkg-config)) 430 (list googletest pkg-config))
430 (inputs 431 (inputs
431 (list libdwarf zlib zstd)) 432 (list libdwarf libunwind zlib zstd))
432 (home-page "https://github.com/jeremy-rifkin/cpptrace") 433 (home-page "https://github.com/jeremy-rifkin/cpptrace")
433 (synopsis "Stacktrace library for C++11 and newer") 434 (synopsis "Stacktrace library for C++11 and newer")
434 (description "@code{cpptrace} is a simple and portable C++ stacktrace 435 (description "@code{cpptrace} is a simple and portable C++ stacktrace