about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-04 01:39:41 +0100
committerGitHub <noreply@github.com>2023-11-04 01:39:41 +0100
commit0c9c53ab679528cf07e8c8c1121a341030146c12 (patch)
tree899346fd9c0b071bd018d192163991cf457f23d2 /pkgs/development/interpreters
parentb229731c4d8c6ae13552e6f9033b84e0aef5bf50 (diff)
parentb4829c8372fc4d417dce6537fa0f419df5ae02b1 (diff)
downloadnixlib-0c9c53ab679528cf07e8c8c1121a341030146c12.tar
nixlib-0c9c53ab679528cf07e8c8c1121a341030146c12.tar.gz
nixlib-0c9c53ab679528cf07e8c8c1121a341030146c12.tar.bz2
nixlib-0c9c53ab679528cf07e8c8c1121a341030146c12.tar.lz
nixlib-0c9c53ab679528cf07e8c8c1121a341030146c12.tar.xz
nixlib-0c9c53ab679528cf07e8c8c1121a341030146c12.tar.zst
nixlib-0c9c53ab679528cf07e8c8c1121a341030146c12.zip
Merge pull request #265302 from IogaMaster/guile-jit-macos
guile: enable jit on aarch64-darwin
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/guile/3.0.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/guile/3.0.nix b/pkgs/development/interpreters/guile/3.0.nix
index 818377912808..2fe786271a78 100644
--- a/pkgs/development/interpreters/guile/3.0.nix
+++ b/pkgs/development/interpreters/guile/3.0.nix
@@ -104,9 +104,6 @@ builder rec {
     # See below.
     "--without-threads"
   ]
-  # Disable JIT on Apple Silicon, as it is not yet supported
-  # https://debbugs.gnu.org/cgi/bugreport.cgi?bug=44505";
-  ++ lib.optional (stdenv.isDarwin && stdenv.isAarch64) "--enable-jit=no"
   # At least on x86_64-darwin '-flto' autodetection is not correct:
   #  https://github.com/NixOS/nixpkgs/pull/160051#issuecomment-1046193028
   ++ lib.optional (stdenv.isDarwin) "--disable-lto";