summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2023-01-17 10:49:00 +0100
committerMathieu Othacehe <othacehe@gnu.org>2023-01-17 10:50:58 +0100
commit34c7dd7e09fe714229a1ed723994c385d91bd457 (patch)
treefe238dbe1b46d7cc010e88468600f40f1477ee1f /guix
parentd6f1b9487da3e6f9c3ef49dea9c97c0408a25777 (diff)
build-system/meson: Add mips64el cross compilation support.
* guix/build-system/meson.scm (make-machine-alist): Add it.
Diffstat (limited to 'guix')
-rw-r--r--guix/build-system/meson.scm1
1 files changed, 1 insertions, 0 deletions
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"