Merge pull request #153010 from Kloenk/guile_3_m1

guile_3_0: fix aarch64-darwin build
This commit is contained in:
Bobby Rong 2022-01-03 18:14:33 +08:00 committed by GitHub
commit 70f42a33cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,10 @@ 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";
postInstall = ''
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"