aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-03-31 20:40:28 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-05-23 18:46:28 +0200
commit1911e34d8482fb5c180dd6d98681765059810751 (patch)
treec325c764d65e36ee60c15ab7c82c172b1166bd5a
parent5d9bdf4fd1bc1160294de05c21df9c7c19aa7e1b (diff)
downloadhardware_replicant_libsamsung-ipc-1911e34d8482fb5c180dd6d98681765059810751.tar.gz
hardware_replicant_libsamsung-ipc-1911e34d8482fb5c180dd6d98681765059810751.tar.bz2
hardware_replicant_libsamsung-ipc-1911e34d8482fb5c180dd6d98681765059810751.zip
scripts: guix.scm: use --enable-debug
Replicant 6.0 is currently the main project using libsamsung-ipc and it uses --enable-debug to show the hexadecimal dump of the samsung-ipc packets, so it's a good idea to do compilation tests with it. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--scripts/guix.scm8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/guix.scm b/scripts/guix.scm
index 10d0b74..b723b7a 100644
--- a/scripts/guix.scm
+++ b/scripts/guix.scm
@@ -116,7 +116,9 @@
(lambda _
(substitute* (find-files "." ".*\\.py$")
(("/usr/bin/env python") (which "python3")))
- #t)))))
+ #t)))
+ #:configure-flags
+ (list "--enable-debug")))
(synopsis "libsamsung-ipc is a free software implementation of the Samsung IPC modem protocol")
(description
"libsamsung-ipc is a free software implementation of the Samsung IPC modem protocol,
@@ -158,6 +160,8 @@ found in many Samsung smartphones and tablets.")
(substitute* (find-files "." ".*\\.py$")
(("/usr/bin/env python") (which "python3")))
#t)))
+ #:configure-flags
+ (list "--enable-debug")
#:make-flags (list ,%common-strict-cflags)))))
(define-public libsamsung-ipc-clang-autotools
@@ -181,6 +185,8 @@ found in many Samsung smartphones and tablets.")
(substitute* (find-files "." ".*\\.py$")
(("/usr/bin/env python") (which "python3")))
#t)))
+ #:configure-flags
+ (list "--enable-debug")
#:make-flags (list ,%common-strict-cflags ,%clang-strict-cflags)))))
(define-public libsamsung-ipc-clang-android