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.
Probably introduced at or before Emacs version 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defcustom native-comp-driver-options
(cond ((eq system-type 'darwin) '("-Wl,-w"))
((eq system-type 'cygwin) '("-Wl,-dynamicbase")))
"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)
:version "28.1")