From f47638a3534c99fb8fef501c5827e9e32a6b4a2e Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 28 Oct 2014 01:14:34 +0100 Subject: gnu: Mark a few packages as unsupported on MIPS. * gnu/packages/gprolog.scm (gprolog): Add 'supported-systems' field. * gnu/packages/qemu.scm (qemu-headless): Likewise. * gnu/packages/qt.scm (qt): Likewise. * gnu/packages/scheme.scm (racket): Likewise. --- gnu/packages/gprolog.scm | 5 ++++- gnu/packages/qemu.scm | 5 ++++- gnu/packages/qt.scm | 7 ++++++- gnu/packages/scheme.scm | 6 +++++- 4 files changed, 19 insertions(+), 4 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/gprolog.scm b/gnu/packages/gprolog.scm index de323da57c..8c41bf4682 100644 --- a/gnu/packages/gprolog.scm +++ b/gnu/packages/gprolog.scm @@ -52,4 +52,7 @@ solving over finite domains. It accepts Prolog+ constraint programs and produces a compiled, native binary which can function in a stand-alone manner. It also features an interactive interpreter.") - (license (list gpl2+ lgpl3+)))) + (license (list gpl2+ lgpl3+)) + + ;; See 'configure' for the list of supported architectures. + (supported-systems (delete "mips64el-linux" %supported-systems)))) diff --git a/gnu/packages/qemu.scm b/gnu/packages/qemu.scm index 33d23572bd..75a14b6e8f 100644 --- a/gnu/packages/qemu.scm +++ b/gnu/packages/qemu.scm @@ -125,7 +125,10 @@ the KVM kernel module in Linux. When using KVM, QEMU can virtualize x86, server and embedded PowerPC, and S390 guests.") ;; Many files are GPLv2+, but some are GPLv2-only---e.g., `memory.c'. - (license gpl2))) + (license gpl2) + + ;; Several tests fail on MIPS; see . + (supported-systems (delete "mips64el-linux" %supported-systems)))) (define-public qemu ;; QEMU with GUI support. diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 3df0066c4f..391cfac77e 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -145,7 +145,12 @@ X11 (yet).") (synopsis "Cross-platform GUI library") (description "Qt is a cross-platform application and UI framework for developers using C++ or QML, a CSS & JavaScript like language.") - (license lgpl2.1))) + (license lgpl2.1) + + ;; Qt 4: 'QBasicAtomicPointer' leads to build failures on MIPS; + ;; see . + ;; Qt 5: assembler error; see . + (supported-systems (delete "mips64el-linux" %supported-systems)))) (define-public qt-4 (package (inherit qt) diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index 8e4f6ae3ec..40ea5b930c 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -422,4 +422,8 @@ implementation techniques and as an expository tool.") R6RS) and related languages, such as Typed Racket. It features a compiler and a virtual machine with just-in-time native compilation, as well as a large set of libraries.") - (license lgpl2.0+))) + (license lgpl2.0+) + + ;; Fails to build on MIPS with "address or size is not OS PAGE ALIGNED". + ;; See . + (supported-systems (delete "mips64el-linux" %supported-systems)))) -- cgit v1.2.3