mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #153010 from Kloenk/guile_3_m1
guile_3_0: fix aarch64-darwin build
This commit is contained in:
commit
70f42a33cb
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user