Tue Aug 15 10:52:08 2023 UTC ()
emacs29: disable gcc13-libjit option on Darwin-*-aarch64

No support for Darwin's Aarch64 ABI in any GCC major release yet.
It's on it's way but probably not before GCC 15.


(tnn)
diff -r1.3 -r1.4 pkgsrc/editors/emacs29/options.mk

cvs diff -r1.3 -r1.4 pkgsrc/editors/emacs29/options.mk (expand / switch to context diff)
--- pkgsrc/editors/emacs29/options.mk 2023/08/14 05:13:31 1.3
+++ pkgsrc/editors/emacs29/options.mk 2023/08/15 10:52:08 1.4
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.3 2023/08/14 05:13:31 wiz Exp $
+# $NetBSD: options.mk,v 1.4 2023/08/15 10:52:08 tnn Exp $
 
 ### Set options
 PKG_OPTIONS_VAR=			PKG_OPTIONS.emacs
@@ -21,7 +21,11 @@
 # imagemagick is disabled because of stability/security
 # svg is omitted because it is rarely needed and heavyweight due to the rust dependency
 # xaw3d is omitted because it is only valid with xaw
-PKG_SUGGESTED_OPTIONS=	dbus libgccjit gnutls gtk3 jansson libotf libwebp tree-sitter xml x11
+PKG_SUGGESTED_OPTIONS=	dbus gnutls gtk3 jansson libotf libwebp tree-sitter xml x11
+
+.if empty(MACHINE_PLATFORM:MDarwin-*-aarch64)
+PKG_SUGGESTED_OPTIONS+=	libgccjit
+.endif
 
 .include "../../mk/bsd.options.mk"