File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -162,17 +162,13 @@ desirable for building Bitcoin Core release binaries."
162
162
(define (make-gcc-with-pthreads gcc )
163
163
(package-with-extra-configure-variable gcc " --enable-threads" " posix" ))
164
164
165
- ; ; Required to support std::filesystem for mingw-w64 target.
166
- (define (make-gcc-without-newlib gcc )
167
- (package-with-extra-configure-variable gcc " --with-newlib" " no" ))
168
-
169
165
(define (make-mingw-pthreads-cross-toolchain target )
170
166
"Create a cross-compilation toolchain package for TARGET"
171
167
(let* ((xbinutils (cross-binutils target))
172
168
(pthreads-xlibc mingw-w64-x86_64-winpthreads)
173
169
(pthreads-xgcc (make-gcc-with-pthreads
174
170
(cross-gcc target
175
- #:xgcc (make-gcc-without-newlib (make- ssp-fixed-gcc base-gcc) )
171
+ #:xgcc (make-ssp-fixed-gcc base-gcc)
176
172
#:xbinutils xbinutils
177
173
#:libc pthreads-xlibc))))
178
174
; ; Define a meta-package that propagates the resulting XBINUTILS, XLIBC, and
You can’t perform that action at this time.
0 commit comments