Skip to content

Commit 0b66d22

Browse files
committed
guix: Use gcc-9 for mingw-w64 instead of 8
The libtool unsorted 'find' determinism issue seemed to have been solved in gcc-9's git: d41cd173e23ebea7c758644d6ad6e0fde1c2e3a6 or SVN: r262451 Furthermore, it seems that Ubuntu Focal 20.04 LTS is going to ship with gcc 9 and mingw-w64 7, which will match what we have now. ----- A note on this: Careful observers will see that previously I stated that all released versions of gcc were bootstrapped with a libtool 2.2.7a, meaning that they all had the unsorted 'find' determinism issue first resolved in libtool 2.2.7b. However, I was mistaken, gcc's ltmain.sh CLAIMS it was generated by libtool 2.2.7a, but it was in fact edited manually. It seems that gcc maintains their own versions of ltmain.sh and libtool.m4, and only sometimes backports patches from upstream. Quite confusing.
1 parent ba0b99b commit 0b66d22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/guix/manifest.scm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ desirable for building Bitcoin Core release binaries."
128128
(pthreads-xlibc mingw-w64-x86_64-winpthreads)
129129
(pthreads-xgcc (make-gcc-with-pthreads
130130
(cross-gcc target
131-
#:xgcc (make-ssp-fixed-gcc gcc-8)
131+
#:xgcc (make-ssp-fixed-gcc gcc-9)
132132
#:xbinutils xbinutils
133133
#:libc pthreads-xlibc))))
134134
;; Define a meta-package that propagates the resulting XBINUTILS, XLIBC, and

0 commit comments

Comments
 (0)