aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrea Corallo2021-01-09 12:24:15 +0100
committerAndrea Corallo2021-01-09 14:05:15 +0100
commit42ff68ec2f1149704da59fd692fafb095a44cce2 (patch)
treea8bb35136fc185404aabf7dcf93cde47f53eff8b /src
parent325c0765dfa4ef363d4f29650568bdafce0f0971 (diff)
downloademacs-42ff68ec2f1149704da59fd692fafb095a44cce2.tar.gz
emacs-42ff68ec2f1149704da59fd692fafb095a44cce2.zip
Improve `comp-libgccjit-reproducer'
* src/comp.c (Fcomp__compile_ctxt_to_file): Better libgccjit reproducer file name. * lisp/emacs-lisp/comp.el (comp-libgccjit-reproducer): Doc update. (comp-final, comp-run-async-workers): Pass `comp-libgccjit-reproducer' setting to child workers.
Diffstat (limited to 'src')
-rw-r--r--src/comp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c
index f6445a7621d..619f5e1b65f 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -4431,7 +4431,7 @@ DEFUN ("comp--compile-ctxt-to-file", Fcomp__compile_ctxt_to_file,
4431 if (!NILP (Fsymbol_value (Qcomp_libgccjit_reproducer))) 4431 if (!NILP (Fsymbol_value (Qcomp_libgccjit_reproducer)))
4432 gcc_jit_context_dump_reproducer_to_file ( 4432 gcc_jit_context_dump_reproducer_to_file (
4433 comp.ctxt, 4433 comp.ctxt,
4434 format_string ("comp_%s_repro.c", SSDATA (base_name))); 4434 format_string ("%s_libgccjit_repro.c", SSDATA (base_name)));
4435 4435
4436 Lisp_Object tmp_file = 4436 Lisp_Object tmp_file =
4437 Fmake_temp_file_internal (base_name, Qnil, build_string (".eln.tmp"), Qnil); 4437 Fmake_temp_file_internal (base_name, Qnil, build_string (".eln.tmp"), Qnil);