From 34c7dd7e09fe714229a1ed723994c385d91bd457 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Tue, 17 Jan 2023 10:49:00 +0100 Subject: build-system/meson: Add mips64el cross compilation support. * guix/build-system/meson.scm (make-machine-alist): Add it. --- guix/build-system/meson.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/guix/build-system/meson.scm b/guix/build-system/meson.scm index 9fee6c4570..b0bf8cb6e6 100644 --- a/guix/build-system/meson.scm +++ b/guix/build-system/meson.scm @@ -55,6 +55,7 @@ for TRIPLET." ((target-x86-64? triplet) "x86_64") ((target-arm32? triplet) "arm") ((target-aarch64? triplet) "aarch64") + ((target-mips64el? triplet) "mips64") ((target-powerpc? triplet) (if (target-64bit? triplet) "ppc64" -- cgit 1.4.1