mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: glnemo2: Fix build with gcc@14.
* gnu/packages/astronomy.scm (glnemo2) [arguments] <configure-flags>: Ignore 3 warnings. Change-Id: I03fe28d04e3c9801fc0254706643d5a3c6d235a8
This commit is contained in:
parent
5576831163
commit
34b16f9201
1 changed files with 8 additions and 3 deletions
|
@ -802,8 +802,8 @@ corrections.")
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://gitlab.lam.fr/jclamber/glnemo2")
|
(url "https://gitlab.lam.fr/jclamber/glnemo2")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1jmmxszh8d2jmfghig36nhykff345mqnpssfa64d0r7l9cnfp3cn"))))
|
(base32 "1jmmxszh8d2jmfghig36nhykff345mqnpssfa64d0r7l9cnfp3cn"))))
|
||||||
|
@ -811,7 +811,12 @@ corrections.")
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:tests? #f ; No test target
|
#:tests? #f ; No test target
|
||||||
#:configure-flags #~(list "CPPFLAGS=-fcommon")
|
#:configure-flags
|
||||||
|
#~(list "CPPFLAGS=-fcommon"
|
||||||
|
(string-append "-DCMAKE_C_FLAGS="
|
||||||
|
" -Wno-error=implicit-function-declaration"
|
||||||
|
" -Wno-error=implicit-int"
|
||||||
|
" -Wno-error=int-conversion"))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-libraries-paths
|
(add-after 'unpack 'patch-libraries-paths
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue