This commit is contained in:
Oscar Vargas Torres 2025-12-05 18:07:59 -08:00 committed by GitHub
commit c1cf67ac5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,7 +30,10 @@ let
# fixes segfaults that only occur on aarch64-linux (#264)
configureFlags = old.configureFlags ++
super.lib.optionals (super.stdenv.isLinux && super.stdenv.isAarch64)
[ "--enable-check-lisp-object-type" ];
[ "--enable-check-lisp-object-type" ] ++
# Disable C23 on macOS due to static_assert conflicts
super.lib.optionals super.stdenv.isDarwin
[ "ac_cv_prog_cc_c23=no" ];
postPatch = old.postPatch + ''
substituteInPlace lisp/loadup.el \