diff options
author | Chris Marusich <cmmarusich@gmail.com> | 2022-01-20 16:08:25 -0800 |
---|---|---|
committer | Chris Marusich <cmmarusich@gmail.com> | 2022-01-24 09:12:59 -0800 |
commit | ecb3f1b96a5895999cd800187b2197a78b56760a (patch) | |
tree | 9c380ad9b6b918ae9973b98e039977876b38dc26 /gnu/packages/lua.scm | |
parent | 5b465de06c8d310edb067234769d43c9e7c8d4cc (diff) |
gnu: luajit: Remove powerpc64le-linux from supported-systems.
* gnu/packages/lua.scm (luajit)[supported-systems]: New field. Set it to the
result of deleting "powerpc64le-linux" from %supported-systems.
Diffstat (limited to 'gnu/packages/lua.scm')
-rw-r--r-- | gnu/packages/lua.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/lua.scm b/gnu/packages/lua.scm index 99f09a26f1..c828ded1a5 100644 --- a/gnu/packages/lua.scm +++ b/gnu/packages/lua.scm @@ -171,6 +171,9 @@ for configuration, scripting, and rapid prototyping.") #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))))) (home-page "https://www.luajit.org/") (synopsis "Just in time compiler for Lua programming language version 5.1") + ;; On powerpc64le-linux, the build fails with an error: "No support for + ;; PowerPC 64 bit mode (yet)". See: https://issues.guix.gnu.org/49220 + (supported-systems (delete "powerpc64le-linux" %supported-systems)) (description "LuaJIT is a Just-In-Time Compiler (JIT) for the Lua programming language. Lua is a powerful, dynamic and light-weight programming |