mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: argagg: Fix build on i686-linux.
* gnu/packages/cpp.scm (argagg): Fix build on i686-linux. [arguments]<#:configure-flags>: Add "-Wno-error=sign-conversion" to CMAKE_CXX_FLAGS. Change-Id: I3b114fbd5b641b515499c2470fa6acb69309d5be
This commit is contained in:
parent
5723089335
commit
fda4641865
1 changed files with 5 additions and 1 deletions
|
|
@ -155,7 +155,11 @@
|
|||
(outputs '("out" "doc"))
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(list "-DCMAKE_CXX_FLAGS=-Wno-error=array-bounds=")
|
||||
#:configure-flags #~(list
|
||||
(format #f "-DCMAKE_CXX_FLAGS=~a"
|
||||
(string-join
|
||||
(list "-Wno-error=array-bounds="
|
||||
"-Wno-error=sign-conversion"))))
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(add-after 'install 'move-doc
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue