diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-27 22:51:44 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-27 23:03:11 -0500 |
commit | 3c7bbec47073d95445811c74d4822da60bd2132c (patch) | |
tree | c539e0744fc1388ccdaa3b8843860e8d41e3c243 | |
parent | e5dc38d30d42eebc8c15005ed4dee0970205570f (diff) | |
download | guix-3c7bbec47073d95445811c74d4822da60bd2132c.tar guix-3c7bbec47073d95445811c74d4822da60bd2132c.tar.gz |
gnu: libjami: Produce usable debug symbols.
* gnu/packages/jami.scm (libjami)[configure-flags]: Add '--enable-debug'.
-rw-r--r-- | gnu/packages/jami.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm index 443e42e2db..160d0f560b 100644 --- a/gnu/packages/jami.scm +++ b/gnu/packages/jami.scm @@ -410,7 +410,7 @@ ;; FIXME: Fails to link when building libjami as a shared library: ;; bindings.cpp:(.text+0x24): undefined reference to `jami::Logger::log ;; [...]. - #:configure-flags #~(list "--disable-agent") + #:configure-flags #~(list "--disable-agent" "--enable-debug") #:make-flags #~(list "V=1") ;build verbosely #:phases #~(modify-phases %standard-phases |