We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b23690e commit d1592d2Copy full SHA for d1592d2
contrib/guix/manifest.scm
@@ -131,7 +131,10 @@ desirable for building Bitcoin Core release binaries."
131
(define (make-mingw-pthreads-cross-toolchain target)
132
"Create a cross-compilation toolchain package for TARGET"
133
(let* ((xbinutils (binutils-mingw-patches (cross-binutils target)))
134
- (pthreads-xlibc mingw-w64-x86_64-winpthreads)
+ (machine (substring target 0 (string-index target #\-)))
135
+ (pthreads-xlibc (make-mingw-w64 machine
136
+ #:xgcc (cross-gcc target #:xgcc (gcc-mingw-patches base-gcc))
137
+ #:with-winpthreads? #t))
138
(pthreads-xgcc (cross-gcc target
139
#:xgcc (gcc-mingw-patches mingw-w64-base-gcc)
140
#:xbinutils xbinutils
0 commit comments