diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-10-17 00:34:27 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-10-17 00:34:27 +0200 |
commit | 618ffc0ad52ae0f8a467561d16d6aab05739fca0 (patch) | |
tree | a22907965d0c8b0dc80510539fd5bdf2633f7e3f /gnu | |
parent | 258bbc4fdcc8a0538c9b151d5a8e82a82092a3cb (diff) | |
download | guix-618ffc0ad52ae0f8a467561d16d6aab05739fca0.tar.gz |
gnu: aumix: Build with '-fcommon'.
* gnu/packages/linux.scm (aumix)[arguments]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9254b314a9..bcb3232eb6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3206,6 +3206,9 @@ settings.") (base32 "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj")))) (build-system gnu-build-system) + (arguments + ;; Allow compilation with GCC 10. + '(#:configure-flags '("CFLAGS=-O2 -g -fcommon"))) (inputs `(("ncurses" ,ncurses))) (home-page "http://www.jpj.net/~trevor/aumix.html") (synopsis "Audio mixer for X and the console") |