summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/debug.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm
index 8787652a620..df3eb572faf 100644
--- a/gnu/packages/debug.scm
+++ b/gnu/packages/debug.scm
@@ -361,6 +361,12 @@ tool.")
361 ((#:phases phases) 361 ((#:phases phases)
362 #~(modify-phases #$phases 362 #~(modify-phases #$phases
363 (delete 'replace-firmwares) 363 (delete 'replace-firmwares)
364 (add-after 'unpack 'set-addr2line-path
365 (lambda* (#:key inputs #:allow-other-keys)
366 (substitute* "accel/tcg/tcg-runtime.c"
367 (("\"addr2line")
368 (string-append
369 "\"" (search-input-file inputs "bin/addr2line"))))))
364 (delete 'patch-embedded-shebangs) 370 (delete 'patch-embedded-shebangs)
365 (delete 'fix-optionrom-makefile) 371 (delete 'fix-optionrom-makefile)
366 (delete 'disable-unusable-tests) 372 (delete 'disable-unusable-tests)
@@ -398,6 +404,7 @@ tool.")
398 (delete-file "tests/qemu-iotests/267")))) 404 (delete-file "tests/qemu-iotests/267"))))
399 '()))))) 405 '())))))
400 (inputs (modify-inputs inputs 406 (inputs (modify-inputs inputs
407 (append gcc)
401 (delete "dtc"))) 408 (delete "dtc")))
402 (home-page "https://github.com/AFLplusplus/qemuafl") 409 (home-page "https://github.com/AFLplusplus/qemuafl")
403 (synopsis "QEMU for AFL++"))))) 410 (synopsis "QEMU for AFL++")))))