gnu: Don't build the mips64el-linux-gnuabi64 cross-compiler on i686.
Fixes <http://bugs.gnu.org/19598>. Reported by Mark H Weaver <mhw@netris.org>. * gnu/packages/cross-base.scm (xgcc-mips64el): Remove "i686-linux" from 'supported-systems'.
This commit is contained in:
parent
df5188ddfa
commit
6ee01481c3
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -308,10 +308,15 @@ XBINUTILS and the cross tool chain."
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
(define-public xgcc-mips64el
|
(define-public xgcc-mips64el
|
||||||
(let ((triplet "mips64el-linux-gnuabi64")) ; N64 ABI
|
(let* ((triplet "mips64el-linux-gnuabi64") ;N64 ABI
|
||||||
(cross-gcc triplet
|
(xgcc (cross-gcc triplet
|
||||||
(cross-binutils triplet)
|
(cross-binutils triplet)
|
||||||
(cross-libc triplet))))
|
(cross-libc triplet))))
|
||||||
|
;; Don't attempt to build this cross-compiler on i686;
|
||||||
|
;; see <http://bugs.gnu.org/19598>.
|
||||||
|
(package (inherit xgcc)
|
||||||
|
(supported-systems (delete "i686-linux"
|
||||||
|
(package-supported-systems xgcc))))))
|
||||||
|
|
||||||
(define-public xgcc-avr
|
(define-public xgcc-avr
|
||||||
;; AVR cross-compiler, used to build AVR-Libc.
|
;; AVR cross-compiler, used to build AVR-Libc.
|
||||||
|
|
Loading…
Reference in New Issue