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:
Matthew Flatt 2014-06-13 16:05:20 +01:00
parent dda2520a12
commit 49691c4000
2 changed files with 5 additions and 2 deletions

@ -1 +1 @@
Subproject commit 8988164a6e18abb1b796add19a6941021f61db56
Subproject commit a4521921cea66170c4b55373cda6191fb47730d5

View File

@ -296,7 +296,10 @@
(if win?
'("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?)
(list rand-patch)
null))]