sbcl: compile with linkable runtime
This commit is contained in:
parent
23f71e9427
commit
219130a2f0
1 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
{ lib, stdenv, fetchurl, fetchpatch, writeText, sbclBootstrap
|
{ lib, stdenv, fetchurl, fetchpatch, writeText, sbclBootstrap
|
||||||
, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
|
, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
|
||||||
, threadSupport ? (stdenv.isi686 || stdenv.isx86_64 || "aarch64-linux" == stdenv.hostPlatform.system || "aarch64-darwin" == stdenv.hostPlatform.system)
|
, threadSupport ? (stdenv.isi686 || stdenv.isx86_64 || "aarch64-linux" == stdenv.hostPlatform.system || "aarch64-darwin" == stdenv.hostPlatform.system)
|
||||||
|
, linkableRuntime ? (stdenv.isi686 || stdenv.isx86_64)
|
||||||
, disableImmobileSpace ? false
|
, disableImmobileSpace ? false
|
||||||
# Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die.
|
# 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 ...`
|
# Note that the created binaries still need `patchelf --set-interpreter ...`
|
||||||
|
@ -74,6 +75,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
enableFeatures = with lib;
|
enableFeatures = with lib;
|
||||||
optional threadSupport "sb-thread" ++
|
optional threadSupport "sb-thread" ++
|
||||||
|
optional linkableRuntime "sb-linkable-runtime" ++
|
||||||
optional stdenv.isAarch32 "arm";
|
optional stdenv.isAarch32 "arm";
|
||||||
|
|
||||||
disableFeatures = with lib;
|
disableFeatures = with lib;
|
||||||
|
|
Loading…
Reference in a new issue