Variable: native-comp-driver-options

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

Value

nil

Documentation

Options passed verbatim to the native compiler's back-end driver.

Note that not all options are meaningful; typically only the options affecting the assembler and linker are likely to be useful.

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-driver-options nil
  "Options passed verbatim to the native compiler's back-end driver.
Note that not all options are meaningful; typically only the options
affecting the assembler and linker are likely to be useful.

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