Skip to content

Commit e08e354

Browse files
committedJul 7, 2017
luajit: revert to 2.1 on aarch64 for now
https://nix-cache.s3.amazonaws.com/log/irncmyl5d6h21jzg5rm10q8s2sxqirmv-luajit-2.0.5.drv It's hard to debug for me, without an aarch64 machine.
1 parent 50430cb commit e08e354

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎pkgs/development/interpreters/luajit/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ rec {
44
luajit =
55
# Compatibility problems with lightuserdata pointers; see:
66
# https://github.com/LuaJIT/LuaJIT/blob/v2.1/doc/status.html#L101
7-
if hostPlatform.is64bit && (hostPlatform.isArm || hostPlatform.isSunOS)
7+
if hostPlatform.is64bit && (/*hostPlatform.isArm ||*/ hostPlatform.isSunOS)
8+
# FIXME: fix the aarch64 build
89
then luajit_2_0
910
else luajit_2_1;
1011

0 commit comments

Comments
 (0)
Please sign in to comment.