fix glib build for Windows 64
The previous build attempted to cooperate with Valgrind in a way that truncates a 64-bit address to a 32-bit address. Disable Valgrind cooperation. (Other builds seem ok for now, but future rebuilds will disable Valgrind cooperation for them, too.)
This commit is contained in:
parent
dda2520a12
commit
49691c4000
|
@ -1 +1 @@
|
||||||
Subproject commit 8988164a6e18abb1b796add19a6941021f61db56
|
Subproject commit a4521921cea66170c4b55373cda6191fb47730d5
|
|
@ -296,7 +296,10 @@
|
||||||
(if win?
|
(if win?
|
||||||
'("libiconv")
|
'("libiconv")
|
||||||
'()))
|
'()))
|
||||||
#:env path-flags
|
#:env (append path-flags
|
||||||
|
;; Disable Valgrind support, which particularly
|
||||||
|
;; goes wrong for 64-bit Windows builds.
|
||||||
|
(list (list "CPPFLAGS" "-DNVALGRIND=1")))
|
||||||
#:patches (if (and win? m32?)
|
#:patches (if (and win? m32?)
|
||||||
(list rand-patch)
|
(list rand-patch)
|
||||||
null))]
|
null))]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user