diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-27 10:54:32 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-28 20:16:06 -0400 |
commit | 0c0d5130af3939ee7da3dad8d045ff45f2a80bf2 (patch) | |
tree | d4fe4964ec3f67b3f7f327d8a82e29a9a85799b1 /gnu | |
parent | bf23e8518fe62a2c3f2fe77444cce98f0d4e6bbd (diff) | |
download | guix-0c0d5130af3939ee7da3dad8d045ff45f2a80bf2.tar.gz guix-0c0d5130af3939ee7da3dad8d045ff45f2a80bf2.zip |
gnu: ffmpeg: Add a debug output.
* gnu/packages/video.scm (ffmpeg) [outputs]: New field.
[arguments]: Add --disable-stripping to configure flags.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/video.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index f0f0683a1a..2c03d4a702 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1587,6 +1587,7 @@ operate properly.") (sha256 (base32 "10kh2f4y4isfqj4xpcqqnzk611jh89ywcjyjnq9c2jcv5p18ggjp")))) + (outputs '("out" "debug")) (build-system gnu-build-system) (inputs (append @@ -1727,6 +1728,8 @@ operate properly.") ;; The static libraries are 23 MiB "--disable-static" + "--disable-stripping" + #$@(if (target-riscv64?) '("--extra-cflags=-fPIC") '()) |