; Improve 'native-comp-debug' documentation

* lisp/emacs-lisp/comp.el (native-comp-debug): Improve doc.
* doc/lispref/compile.texi (Native-Compilation Variables): Likewise.
This commit is contained in:
Andrea Corallo 2024-07-08 11:05:29 +02:00
parent 67f291ddae
commit 7668385390
2 changed files with 6 additions and 1 deletions

View file

@ -1024,6 +1024,9 @@ Like 1, and in addition dump pseudo-C code.
Like 2, and in addition dump the GCC intermediate passes and
@file{libgccjit} log file.
@end table
When generated the pseudo C code is deposed in the .eln output
directory.
@end defopt
@defopt native-comp-verbose

View file

@ -75,7 +75,9 @@ This is intended for debugging the compiler itself.
1 emit debug symbols.
2 emit debug symbols and dump pseudo C code.
3 emit debug symbols and dump: pseudo C code, GCC intermediate
passes and libgccjit log file."
passes and libgccjit log file.
When generated the pseudo C code is deposed in the .eln output
directory."
:type 'natnum
:safe #'natnump
:version "29.1")