aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 2b01a37f5ab..9339d60866c 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -683,8 +683,12 @@ main (int argc, char **argv)
683 /* Record (approximately) where the stack begins. */ 683 /* Record (approximately) where the stack begins. */
684 stack_bottom = &stack_bottom_variable; 684 stack_bottom = &stack_bottom_variable;
685 685
686#ifndef CANNOT_DUMP
686 dumping = !initialized && (strcmp (argv[argc - 1], "dump") == 0 687 dumping = !initialized && (strcmp (argv[argc - 1], "dump") == 0
687 || strcmp (argv[argc - 1], "bootstrap") == 0); 688 || strcmp (argv[argc - 1], "bootstrap") == 0);
689#else
690 dumping = false;
691#endif
688 692
689 /* True if address randomization interferes with memory allocation. */ 693 /* True if address randomization interferes with memory allocation. */
690# ifdef __PPC64__ 694# ifdef __PPC64__