aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Corallo2021-02-26 20:11:31 +0100
committerAndrea Corallo2021-02-26 20:11:31 +0100
commit42fc752a14b23be95f02b598930f13a96883d3a0 (patch)
tree483070c09fbcca05d10460b9e220ef359072473d
parentb84c1727ea035cd47ab9ac5cb6627d402896f21d (diff)
downloademacs-42fc752a14b23be95f02b598930f13a96883d3a0.tar.gz
emacs-42fc752a14b23be95f02b598930f13a96883d3a0.zip
* Change native compiler configure flag into '--with-native-compilation'
* configure.ac: Rename configure nativecomp flags into --with-native-compilation.
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index fe0dc921dce..3dff9ea2e2d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -484,7 +484,7 @@ OPTION_DEFAULT_ON([gnutls],[don't use -lgnutls for SSL/TLS support])
484OPTION_DEFAULT_ON([zlib],[don't compile with zlib decompression support]) 484OPTION_DEFAULT_ON([zlib],[don't compile with zlib decompression support])
485OPTION_DEFAULT_ON([modules],[don't compile with dynamic modules support]) 485OPTION_DEFAULT_ON([modules],[don't compile with dynamic modules support])
486OPTION_DEFAULT_ON([threads],[don't compile with elisp threading support]) 486OPTION_DEFAULT_ON([threads],[don't compile with elisp threading support])
487OPTION_DEFAULT_OFF([nativecomp],[compile with Emacs Lisp native compiler support]) 487OPTION_DEFAULT_OFF([native-compilation],[compile with Emacs Lisp native compiler support])
488 488
489AC_ARG_WITH([file-notification],[AS_HELP_STRING([--with-file-notification=LIB], 489AC_ARG_WITH([file-notification],[AS_HELP_STRING([--with-file-notification=LIB],
490 [use a file notification library (LIB one of: yes, inotify, kqueue, gfile, w32, no)])], 490 [use a file notification library (LIB one of: yes, inotify, kqueue, gfile, w32, no)])],
@@ -3786,7 +3786,7 @@ AC_DEFUN([libgccjit_not_found], [
3786 AC_MSG_ERROR([elisp native compiler requested but libgccjit not found. 3786 AC_MSG_ERROR([elisp native compiler requested but libgccjit not found.
3787Please try installing libgccjit or similar package. 3787Please try installing libgccjit or similar package.
3788If you are sure you want Emacs compiled without elisp native compiler, pass 3788If you are sure you want Emacs compiled without elisp native compiler, pass
3789 --without-nativecomp 3789 --without-native-compilation
3790to configure.])]) 3790to configure.])])
3791 3791
3792AC_DEFUN([libgccjit_dev_not_found], [ 3792AC_DEFUN([libgccjit_dev_not_found], [
@@ -3808,7 +3808,7 @@ Here instructions on how to compile and install libgccjit from source:
3808 3808
3809HAVE_NATIVE_COMP=no 3809HAVE_NATIVE_COMP=no
3810LIBGCCJIT_LIB= 3810LIBGCCJIT_LIB=
3811if test "${with_nativecomp}" != "no"; then 3811if test "${with_native_compilation}" != "no"; then
3812 if test "${HAVE_PDUMPER}" = no; then 3812 if test "${HAVE_PDUMPER}" = no; then
3813 AC_MSG_ERROR(['--with-nativecomp' requires '--with-dumping=pdumper']) 3813 AC_MSG_ERROR(['--with-nativecomp' requires '--with-dumping=pdumper'])
3814 fi 3814 fi