mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
maint: Remove GCC from the packages to cross-build.
* etc/release-manifest.scm (%packages-to-cross-build): Remove GCC.
This commit is contained in:
parent
e2385584db
commit
1e6fe44da8
1 changed files with 6 additions and 5 deletions
|
@ -62,11 +62,12 @@ (define %system-packages
|
||||||
|
|
||||||
(define %packages-to-cross-build
|
(define %packages-to-cross-build
|
||||||
;; Packages that must be cross-buildable from x86_64-linux.
|
;; Packages that must be cross-buildable from x86_64-linux.
|
||||||
(cons (@ (gnu packages gcc) gcc)
|
;; FIXME: Add (@ (gnu packages gcc) gcc) when <https://bugs.gnu.org/40463>
|
||||||
(map specification->package
|
;; is fixed.
|
||||||
'("coreutils" "grep" "sed" "findutils" "diffutils" "patch"
|
(map specification->package
|
||||||
"gawk" "gettext" "gzip" "xz"
|
'("coreutils" "grep" "sed" "findutils" "diffutils" "patch"
|
||||||
"hello" "guile@2.2" "zlib"))))
|
"gawk" "gettext" "gzip" "xz"
|
||||||
|
"hello" "guile@2.2" "zlib")))
|
||||||
|
|
||||||
(define %packages-to-cross-build-for-mingw
|
(define %packages-to-cross-build-for-mingw
|
||||||
;; Many things don't build for MinGW. Restrict to what's known to work.
|
;; Many things don't build for MinGW. Restrict to what's known to work.
|
||||||
|
|
Loading…
Reference in a new issue