Variable: native-comp-compiler-options

native-comp-compiler-options is a customizable variable defined in comp.el.gz.

Value

nil

Documentation

Command line options passed verbatim to GCC compiler.

Note that not all options are meaningful and some options might even break your Emacs. Use at your own risk.

Passing these options is only available in libgccjit version 9 and above.

This variable was added, or its default value changed, in Emacs 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defcustom native-comp-compiler-options nil
  "Command line options passed verbatim to GCC compiler.
Note that not all options are meaningful and some options might even
break your Emacs.  Use at your own risk.

Passing these options is only available in libgccjit version 9
and above."
  :type '(repeat string)
  :version "28.1")