summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorTomas Hlavaty <tom@logand.com>2017-04-28 23:42:40 +0200
committerTomas Hlavaty <tom@logand.com>2017-04-28 23:51:58 +0200
commitf1cf8125f095414c158c1f22313cc9f0c697751f (patch)
tree1c926c73ce762f3052188f37f23434a7add683f4 /pkgs/development/compilers
parent6e53534c2f46713d722c7fd8f376c868dff897d8 (diff)
downloadnixpkgs-f1cf8125f095414c158c1f22313cc9f0c697751f.tar
nixpkgs-f1cf8125f095414c158c1f22313cc9f0c697751f.tar.gz
nixpkgs-f1cf8125f095414c158c1f22313cc9f0c697751f.tar.bz2
nixpkgs-f1cf8125f095414c158c1f22313cc9f0c697751f.tar.lz
nixpkgs-f1cf8125f095414c158c1f22313cc9f0c697751f.tar.xz
nixpkgs-f1cf8125f095414c158c1f22313cc9f0c697751f.tar.zst
nixpkgs-f1cf8125f095414c158c1f22313cc9f0c697751f.zip
sbcl: enable threadSupport also on aarch64-linux
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/sbcl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix
index a139ca4a779..dcd110954c1 100644
--- a/pkgs/development/compilers/sbcl/default.nix
+++ b/pkgs/development/compilers/sbcl/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, writeText, sbclBootstrap
 , sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
-, threadSupport ? (stdenv.isi686 || stdenv.isx86_64)
+, threadSupport ? (stdenv.isi686 || stdenv.isx86_64 || "aarch64-linux" == stdenv.system)
   # Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die.
   # Note that the created binaries still need `patchelf --set-interpreter ...`
   # to get rid of ${glibc} dependency.