From 4c8997c12336803d9dcc7529e44acb6602260147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sat, 20 Jul 2024 15:40:54 +0200 Subject: [PATCH] =?UTF-8?q?gnu:=20rr:=20Add=20=E2=80=98supported-systems?= =?UTF-8?q?=E2=80=99=20field.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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