From c54b9afb87de599953566ecca24ba71bd48fd69a Mon Sep 17 00:00:00 2001 From: Jan Wielkiewicz Date: Sun, 12 Jul 2020 18:00:49 +0200 Subject: gnu: pjproject-jami: Build without debugging assertions. This fixes a bug where Jami crashes while disconnecting from an audio call. * gnu/packages/jami.scm (pjproject-jami)[arguments]: Use -DNDEBUG flag. Signed-off-by: Christopher Baines --- gnu/packages/jami.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm index c2f65ee66a..85a06026ed 100644 --- a/gnu/packages/jami.scm +++ b/gnu/packages/jami.scm @@ -142,8 +142,10 @@ ;; against pjproject-jami: ;; relocation R_X86_64_32S against `.rodata' can not be used when ;; making a shared object; - "CFLAGS=-fPIC" - "CXXFLAGS=-fPIC") + ;; -DNDEBUG is needed to prevent assertion from happening and + ;; stopping the daemon. + "CFLAGS=-fPIC -DNDEBUG" + "CXXFLAGS=-fPIC -DNDEBUG") #:phases (modify-phases %standard-phases (add-after 'unpack 'make-git-checkout-writable -- cgit v1.2.3