mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 23:36:35 +01:00
gnu: the-silver-searcher: Fix build.
* gnu/packages/code.scm (the-silver-searcher)[arguments]: Pass the -fcommon flag that is required since the GCC 10 switch.
This commit is contained in:
parent
9de5bded7a
commit
f91097c509
1 changed files with 4 additions and 0 deletions
|
@ -310,6 +310,10 @@ (define-public the-silver-searcher
|
|||
(base32
|
||||
"0w1icjqd8hd45rn1y6nbfznk1a6ip54whwbfbhxp7ws2hn3ilqnr"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; Required since GCC 10, see:
|
||||
;; https://gcc.gnu.org/gcc-10/porting_to.html.
|
||||
`(#:configure-flags (list "CFLAGS=-fcommon")))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue