mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: rr: Update to 5.9.0.
* gnu/packages/debug.scm (rr): Update to 5.9.0. [native-inputs]: Remove ninja. [inputs]: Add zstd:lib. [arguments]<#:configure-flags>: Add zstd:lib to rpath. Change-Id: If9417dad0c8d40ec2bea42e55830fd5638d0098d
This commit is contained in:
parent
73d1cbd729
commit
f8f49bf558
1 changed files with 10 additions and 4 deletions
|
@ -773,7 +773,7 @@ error reporting, better tracing, profiling, and a debugger.")
|
||||||
(define-public rr
|
(define-public rr
|
||||||
(package
|
(package
|
||||||
(name "rr")
|
(name "rr")
|
||||||
(version "5.8.0")
|
(version "5.9.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -781,7 +781,7 @@ error reporting, better tracing, profiling, and a debugger.")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"16w6vvvgww4i2f0jk5zlrr6606fj8kps21fnw0pshyw88l141rqn"))
|
"18bahi9b7pz8s7vq8r52fg4pdnj62ymx4yyqjkiwnxlp06pdgqd3"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -795,6 +795,7 @@ error reporting, better tracing, profiling, and a debugger.")
|
||||||
(string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath="
|
(string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath="
|
||||||
(assoc-ref %build-inputs "capnproto")
|
(assoc-ref %build-inputs "capnproto")
|
||||||
"/lib,-rpath=" (assoc-ref %build-inputs "zlib")
|
"/lib,-rpath=" (assoc-ref %build-inputs "zlib")
|
||||||
|
"/lib,-rpath=" (assoc-ref %build-inputs "zstd")
|
||||||
"/lib")
|
"/lib")
|
||||||
,@(if (and (not (%current-target-system))
|
,@(if (and (not (%current-target-system))
|
||||||
(member (%current-system)
|
(member (%current-system)
|
||||||
|
@ -818,9 +819,14 @@ error reporting, better tracing, profiling, and a debugger.")
|
||||||
(setenv "HOME" (getcwd))
|
(setenv "HOME" (getcwd))
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config ninja which))
|
(list lldb pkg-config which))
|
||||||
(inputs
|
(inputs
|
||||||
(list gdb capnproto python python-pexpect zlib))
|
(list gdb
|
||||||
|
capnproto
|
||||||
|
python
|
||||||
|
python-pexpect
|
||||||
|
zlib
|
||||||
|
`(,zstd "lib")))
|
||||||
|
|
||||||
;; List of supported systems according to 'src/preload/raw_syscall.S'.
|
;; List of supported systems according to 'src/preload/raw_syscall.S'.
|
||||||
(supported-systems '("x86_64-linux" "i686-linux" "aarch64-linux"))
|
(supported-systems '("x86_64-linux" "i686-linux" "aarch64-linux"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue