gnu: mingw: Update to 10.0.0.
* gnu/packages/mingw.scm (mingw): Update to 10.0.0. [arguments] Disable parallel building to avoid failures trying to access empty .a files. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
parent
b3f1666dd6
commit
5791736e5e
|
@ -46,7 +46,7 @@ specified, recurse and return a mingw-w64 with support for winpthreads."
|
||||||
(package
|
(package
|
||||||
(name (string-append "mingw-w64" "-" machine
|
(name (string-append "mingw-w64" "-" machine
|
||||||
(if with-winpthreads? "-winpthreads" "")))
|
(if with-winpthreads? "-winpthreads" "")))
|
||||||
(version "8.0.0")
|
(version "10.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -54,7 +54,7 @@ specified, recurse and return a mingw-w64 with support for winpthreads."
|
||||||
"mirror://sourceforge/mingw-w64/mingw-w64/"
|
"mirror://sourceforge/mingw-w64/mingw-w64/"
|
||||||
"mingw-w64-release/mingw-w64-v" version ".tar.bz2"))
|
"mingw-w64-release/mingw-w64-v" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0qjpb9rviasfshk337j5r32ncmrwml8sv6qnmb1lp4mkdbm41is4"))
|
(base32 "15089y4rlj6g1m2m3cm3awndw3rbzhznl7skd0vkmikjxl546sxs"))
|
||||||
(patches
|
(patches
|
||||||
(search-patches "mingw-w64-6.0.0-gcc.patch"
|
(search-patches "mingw-w64-6.0.0-gcc.patch"
|
||||||
"mingw-w64-dlltool-temp-prefix.patch"
|
"mingw-w64-dlltool-temp-prefix.patch"
|
||||||
|
@ -108,6 +108,7 @@ specified, recurse and return a mingw-w64 with support for winpthreads."
|
||||||
xlibc "/lib" ":"
|
xlibc "/lib" ":"
|
||||||
xlibc "/" ,triplet "/lib"))))))))
|
xlibc "/" ,triplet "/lib"))))))))
|
||||||
#:make-flags (list "DEFS=-DHAVE_CONFIG_H -D__MINGW_HAS_DXSDK=1")
|
#:make-flags (list "DEFS=-DHAVE_CONFIG_H -D__MINGW_HAS_DXSDK=1")
|
||||||
|
#:parallel-build? #f ; parallel builds often fail with empty .a files
|
||||||
#:tests? #f ; compiles and includes glibc headers
|
#:tests? #f ; compiles and includes glibc headers
|
||||||
#:strip-binaries? #f))
|
#:strip-binaries? #f))
|
||||||
(home-page "https://mingw-w64.org")
|
(home-page "https://mingw-w64.org")
|
||||||
|
|
Reference in New Issue