diff options
author | Andrew Chow <achow101-github@achow101.com> | 2022-07-06 17:24:20 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2022-07-06 17:24:20 -0400 |
commit | 5bff18bce5d9d8bd1bae0cb89facf73c829c947b (patch) | |
tree | 043984457e20471143a1e24e2f20e40134476382 /contrib/guix/manifest.scm | |
parent | aeab1b42e67cc8146bfc7d127d15633bd652fe60 (diff) |
guix: patch gcc 10 with pthreads to remap guix store paths
Diffstat (limited to 'contrib/guix/manifest.scm')
-rw-r--r-- | contrib/guix/manifest.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/guix/manifest.scm b/contrib/guix/manifest.scm index 6c6dd0c5ee..12b563eac2 100644 --- a/contrib/guix/manifest.scm +++ b/contrib/guix/manifest.scm @@ -147,7 +147,10 @@ desirable for building Bitcoin Core release binaries." base-gcc)) (define (make-gcc-with-pthreads gcc) - (package-with-extra-configure-variable gcc "--enable-threads" "posix")) + (package-with-extra-configure-variable + (package-with-extra-patches gcc + (search-our-patches "gcc-10-remap-guix-store.patch")) + "--enable-threads" "posix")) (define (make-mingw-w64-cross-gcc cross-gcc) (package-with-extra-patches cross-gcc |