civodul pushed a commit to branch master
in repository guix.
commit 4c8997c12336803d9dcc7529e44acb6602260147
Author: Ludovic Courtès <[email protected]>
AuthorDate: Sat Jul 20 15:40:54 2024 +0200
gnu: rr: Add ‘supported-systems’ field.
* gnu/packages/debug.scm (rr)[supported-systems]: New field.
Change-Id: I6d93b1eae91fbe6c963e737afd6e5d2a30160ac1
---
gnu/packages/debug.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index d34b4fdf28..2cdf87e266 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -782,6 +782,10 @@ error reporting, better tracing, profiling, and a
debugger.")
(list pkg-config ninja which))
(inputs
(list gdb capnproto python python-pexpect zlib))
+
+ ;; List of supported systems according to 'src/preload/raw_syscall.S'.
+ (supported-systems '("x86_64-linux" "i686-linux" "aarch64-linux"))
+
(home-page "https://rr-project.org/")
(synopsis "Record and replay debugging framework")
(description