aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrea Corallo2020-09-08 10:58:59 +0200
committerAndrea Corallo2020-09-08 13:02:45 +0200
commit15acd27d1c0de8b56bab61daa0a8fcd4fef0fdc4 (patch)
treea26cfe6e5b29d1d899d75ac62a89394a58f43382 /src
parentff89ec0d366f6fa8cf25702f8b3bc3d4cd0833b4 (diff)
downloademacs-15acd27d1c0de8b56bab61daa0a8fcd4fef0fdc4.tar.gz
emacs-15acd27d1c0de8b56bab61daa0a8fcd4fef0fdc4.zip
* src/comp.c (Fcomp__compile_ctxt_to_file): Don't cleanup caches at bootstrap.
Diffstat (limited to 'src')
-rw-r--r--src/comp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/comp.c b/src/comp.c
index 5880224ac77..71a36a60a08 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -4359,7 +4359,10 @@ DEFUN ("comp--compile-ctxt-to-file", Fcomp__compile_ctxt_to_file,
4359 GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY, 4359 GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY,
4360 SSDATA (tmp_file)); 4360 SSDATA (tmp_file));
4361 4361
4362 CALL1I (comp-clean-up-stale-eln, file_name); 4362 /* FIXME: this if workaround a cc-bytecomp compilation issue
4363 appearing on the Docker build that must be investigated. */
4364 if (NILP (Fsymbol_value(intern_c_string ("byte-native-for-bootstrap"))))
4365 CALL1I (comp-clean-up-stale-eln, file_name);
4363 CALL2I (comp-delete-or-replace-file, file_name, tmp_file); 4366 CALL2I (comp-delete-or-replace-file, file_name, tmp_file);
4364 4367
4365 if (!noninteractive) 4368 if (!noninteractive)