mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 19:44:09 +00:00
sbcl: fix disabling threadSupport
This commit is contained in:
parent
13f82b0445
commit
194a2ae86a
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
|||||||
(disable (x)
|
(disable (x)
|
||||||
(setf features (remove x features))))
|
(setf features (remove x features))))
|
||||||
''
|
''
|
||||||
+ stdenv.lib.optionalString threadSupport "(enable :sb-thread)"
|
+ (if threadSupport then "(enable :sb-thread)" else "(disable :sb-thread)")
|
||||||
+ stdenv.lib.optionalString stdenv.isArm "(enable :arm)"
|
+ stdenv.lib.optionalString stdenv.isArm "(enable :arm)"
|
||||||
+ ''
|
+ ''
|
||||||
)) " > customize-target-features.lisp
|
)) " > customize-target-features.lisp
|
||||||
|
Loading…
Reference in New Issue
Block a user