gnu: mgba: Update to 0.10.3.
* gnu/packages/emulators.scm (mgba): Update to 0.10.3. <#:configure-flags>: Turn off "BUILD_LTO" to fix a build issue. Change-Id: I21a3dfd0f1a493cd7bf629ab7facc6fbe9547213master
parent
d858edd5fd
commit
5a0b97a07c
|
@ -736,7 +736,7 @@ The following systems are supported:
|
||||||
(define-public mgba
|
(define-public mgba
|
||||||
(package
|
(package
|
||||||
(name "mgba")
|
(name "mgba")
|
||||||
(version "0.10.2")
|
(version "0.10.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -746,7 +746,7 @@ The following systems are supported:
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1wwpjcblp2c1svab4z1if5xb7707wsy6zw590lwdz9za35i0h37q"))
|
"1h4wsx76kylsn4f4418swbp6zjp1x94dfn751iks1i6i529pfay1"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Make sure we don't use the bundled software.
|
;; Make sure we don't use the bundled software.
|
||||||
|
@ -760,7 +760,8 @@ The following systems are supported:
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no "test" target
|
`(#:tests? #f ;no "test" target
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "-DUSE_LZMA=OFF" ;do not use bundled LZMA
|
(list "-DBUILD_LTO=OFF" ;FIXME: <https://github.com/mgba-emu/mgba/issues/3115>
|
||||||
|
"-DUSE_LZMA=OFF" ;do not use bundled LZMA
|
||||||
"-DUSE_LIBZIP=OFF"))) ;use "zlib" instead
|
"-DUSE_LIBZIP=OFF"))) ;use "zlib" instead
|
||||||
(native-inputs (list pkg-config qttools-5))
|
(native-inputs (list pkg-config qttools-5))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Reference in New Issue