diff options
author | Joseph Mingrone <jrm@FreeBSD.org> | 2022-04-01 14:30:16 +0000 |
---|---|---|
committer | Joseph Mingrone <jrm@FreeBSD.org> | 2022-04-01 14:54:07 +0000 |
commit | 9c5da5f27f0d53b2ce00f75a36bc9587cc91315c (patch) | |
tree | 0242e668561ffb42397ec3b5c8618333a5c9f447 | |
parent | e6554ec2918564f6caac9bc69e0eb336cc2feef4 (diff) |
editors/emacs-devel: Note that NATIVECOMP is experimental
Building Emacs with support for compiling elisp to native code is an
interesting idea, but up to now there are no obvious performance
improvements. There are problems though. Background compilation can
eat up CPU, Emacs may fail to build (e.g., bug 2629490), and some
dependent ports may encounter problems. Thus, note that the option is
experimental to give users reasonable expectations.
Discussed with: abbe, yasu
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | editors/emacs-devel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/emacs-devel/Makefile b/editors/emacs-devel/Makefile index fb6fc88028cd..ebd2254a0941 100644 --- a/editors/emacs-devel/Makefile +++ b/editors/emacs-devel/Makefile @@ -112,7 +112,7 @@ M17N_DESC= M17N support for text-shaping [implies XFT] MAGICK_DESC= ImageMagick image processing support (deprecated) MAILUTILS_DESC= Mail framework via GNU Mailutils MODULES_DESC= Dynamic modules support -NATIVECOMP_DESC= Emacs Lisp native compiler support +NATIVECOMP_DESC= Emacs Lisp native compiler support (experimental) OTF_DESC= Opentype fonts [implies XFT] PGTK_DESC= Pure GTK GUI [implies CAIRO, GTK3] SCROLLBARS_DESC= Toolkit scroll-bars |