Fixups for warnings on Windows (esp 64bit).
[make.git] / main.c
blob20b445a085cfc5f3bb0704952a7ed1fafc3954b6
1 /* Argument parsing and main program of GNU Make.
2 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
4 Software Foundation, Inc.
5 This file is part of GNU Make.
7 GNU Make is free software; you can redistribute it and/or modify it under the
8 terms of the GNU General Public License as published by the Free Software
9 Foundation; either version 3 of the License, or (at your option) any later
10 version.
12 GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along with
17 this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "make.h"
20 #include "dep.h"
21 #include "filedef.h"
22 #include "variable.h"
23 #include "job.h"
24 #include "commands.h"
25 #include "rule.h"
26 #include "debug.h"
27 #include "getopt.h"
29 #include <assert.h>
30 #ifdef _AMIGA
31 # include <dos/dos.h>
32 # include <proto/dos.h>
33 #endif
34 #ifdef WINDOWS32
35 #include <windows.h>
36 #include <io.h>
37 #include "pathstuff.h"
38 #endif
39 #ifdef __EMX__
40 # include <sys/types.h>
41 # include <sys/wait.h>
42 #endif
43 #ifdef HAVE_FCNTL_H
44 # include <fcntl.h>
45 #endif
47 #ifdef _AMIGA
48 int __stack = 20000; /* Make sure we have 20K of stack space */
49 #endif
51 void init_dir (void);
52 void remote_setup (void);
53 void remote_cleanup (void);
54 RETSIGTYPE fatal_error_signal (int sig);
56 void print_variable_data_base (void);
57 void print_dir_data_base (void);
58 void print_rule_data_base (void);
59 void print_vpath_data_base (void);
61 void verify_file_data_base (void);
63 #if defined HAVE_WAITPID || defined HAVE_WAIT3
64 # define HAVE_WAIT_NOHANG
65 #endif
67 #ifndef HAVE_UNISTD_H
68 int chdir ();
69 #endif
70 #ifndef STDC_HEADERS
71 # ifndef sun /* Sun has an incorrect decl in a header. */
72 void exit (int) __attribute__ ((noreturn));
73 # endif
74 double atof ();
75 #endif
77 static void clean_jobserver (int status);
78 static void print_data_base (void);
79 static void print_version (void);
80 static void decode_switches (int argc, char **argv, int env);
81 static void decode_env_switches (char *envar, unsigned int len);
82 static const char *define_makeflags (int all, int makefile);
83 static char *quote_for_env (char *out, const char *in);
84 static void initialize_global_hash_tables (void);
87 /* The structure that describes an accepted command switch. */
89 struct command_switch
91 int c; /* The switch character. */
93 enum /* Type of the value. */
95 flag, /* Turn int flag on. */
96 flag_off, /* Turn int flag off. */
97 string, /* One string per switch. */
98 filename, /* A string containing a file name. */
99 positive_int, /* A positive integer. */
100 floating, /* A floating-point number (double). */
101 ignore /* Ignored. */
102 } type;
104 void *value_ptr; /* Pointer to the value-holding variable. */
106 unsigned int env:1; /* Can come from MAKEFLAGS. */
107 unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
108 unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
110 const void *noarg_value; /* Pointer to value used if no arg given. */
111 const void *default_value; /* Pointer to default value. */
113 char *long_name; /* Long option name. */
116 /* True if C is a switch value that corresponds to a short option. */
118 #define short_option(c) ((c) <= CHAR_MAX)
120 /* The structure used to hold the list of strings given
121 in command switches of a type that takes string arguments. */
123 struct stringlist
125 const char **list; /* Nil-terminated list of strings. */
126 unsigned int idx; /* Index into above. */
127 unsigned int max; /* Number of pointers allocated. */
131 /* The recognized command switches. */
133 /* Nonzero means do not print commands to be executed (-s). */
135 int silent_flag;
137 /* Nonzero means just touch the files
138 that would appear to need remaking (-t) */
140 int touch_flag;
142 /* Nonzero means just print what commands would need to be executed,
143 don't actually execute them (-n). */
145 int just_print_flag;
147 /* Print debugging info (--debug). */
149 static struct stringlist *db_flags;
150 static int debug_flag = 0;
152 int db_level = 0;
154 /* Output level (--verbosity). */
156 static struct stringlist *verbosity_flags;
158 #ifdef WINDOWS32
159 /* Suspend make in main for a short time to allow debugger to attach */
161 int suspend_flag = 0;
162 #endif
164 /* Environment variables override makefile definitions. */
166 int env_overrides = 0;
168 /* Nonzero means ignore status codes returned by commands
169 executed to remake files. Just treat them all as successful (-i). */
171 int ignore_errors_flag = 0;
173 /* Nonzero means don't remake anything, just print the data base
174 that results from reading the makefile (-p). */
176 int print_data_base_flag = 0;
178 /* Nonzero means don't remake anything; just return a nonzero status
179 if the specified targets are not up to date (-q). */
181 int question_flag = 0;
183 /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
185 int no_builtin_rules_flag = 0;
186 int no_builtin_variables_flag = 0;
188 /* Nonzero means keep going even if remaking some file fails (-k). */
190 int keep_going_flag;
191 int default_keep_going_flag = 0;
193 /* Nonzero means check symlink mtimes. */
195 int check_symlink_flag = 0;
197 /* Nonzero means print directory before starting and when done (-w). */
199 int print_directory_flag = 0;
201 /* Nonzero means ignore print_directory_flag and never print the directory.
202 This is necessary because print_directory_flag is set implicitly. */
204 int inhibit_print_directory_flag = 0;
206 /* Nonzero means print version information. */
208 int print_version_flag = 0;
210 /* List of makefiles given with -f switches. */
212 static struct stringlist *makefiles = 0;
214 /* Size of the stack when we started. */
216 #ifdef SET_STACK_SIZE
217 struct rlimit stack_limit;
218 #endif
221 /* Number of job slots (commands that can be run at once). */
223 unsigned int job_slots = 1;
224 unsigned int default_job_slots = 1;
225 static unsigned int master_job_slots = 0;
227 /* Value of job_slots that means no limit. */
229 static unsigned int inf_jobs = 0;
231 /* File descriptors for the jobs pipe. */
233 static struct stringlist *jobserver_fds = 0;
235 int job_fds[2] = { -1, -1 };
236 int job_rfd = -1;
238 /* Maximum load average at which multiple jobs will be run.
239 Negative values mean unlimited, while zero means limit to
240 zero load (which could be useful to start infinite jobs remotely
241 but one at a time locally). */
242 #ifndef NO_FLOAT
243 double max_load_average = -1.0;
244 double default_load_average = -1.0;
245 #else
246 int max_load_average = -1;
247 int default_load_average = -1;
248 #endif
250 /* List of directories given with -C switches. */
252 static struct stringlist *directories = 0;
254 /* List of include directories given with -I switches. */
256 static struct stringlist *include_directories = 0;
258 /* List of files given with -o switches. */
260 static struct stringlist *old_files = 0;
262 /* List of files given with -W switches. */
264 static struct stringlist *new_files = 0;
266 /* List of strings to be eval'd. */
267 static struct stringlist *eval_strings = 0;
269 /* If nonzero, we should just print usage and exit. */
271 static int print_usage_flag = 0;
273 /* If nonzero, we should print a warning message
274 for each reference to an undefined variable. */
276 int warn_undefined_variables_flag;
278 /* If nonzero, always build all targets, regardless of whether
279 they appear out of date or not. */
281 static int always_make_set = 0;
282 int always_make_flag = 0;
284 /* If nonzero, we're in the "try to rebuild makefiles" phase. */
286 int rebuilding_makefiles = 0;
288 /* Remember the original value of the SHELL variable, from the environment. */
290 struct variable shell_var;
292 /* This character introduces a command: it's the first char on the line. */
294 char cmd_prefix = '\t';
297 /* The usage output. We write it this way to make life easier for the
298 translators, especially those trying to translate to right-to-left
299 languages like Hebrew. */
301 static const char *const usage[] =
303 N_("Options:\n"),
304 N_("\
305 -b, -m Ignored for compatibility.\n"),
306 N_("\
307 -B, --always-make Unconditionally make all targets.\n"),
308 N_("\
309 -C DIRECTORY, --directory=DIRECTORY\n\
310 Change to DIRECTORY before doing anything.\n"),
311 N_("\
312 -d Print lots of debugging information.\n"),
313 N_("\
314 --debug[=FLAGS] Print various types of debugging information.\n"),
315 N_("\
316 -e, --environment-overrides\n\
317 Environment variables override makefiles.\n"),
318 N_("\
319 --eval=STRING Evaluate STRING as a makefile statement.\n"),
320 N_("\
321 -f FILE, --file=FILE, --makefile=FILE\n\
322 Read FILE as a makefile.\n"),
323 N_("\
324 -h, --help Print this message and exit.\n"),
325 N_("\
326 -i, --ignore-errors Ignore errors from recipes.\n"),
327 N_("\
328 -I DIRECTORY, --include-dir=DIRECTORY\n\
329 Search DIRECTORY for included makefiles.\n"),
330 N_("\
331 -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
332 N_("\
333 -k, --keep-going Keep going when some targets can't be made.\n"),
334 N_("\
335 -l [N], --load-average[=N], --max-load[=N]\n\
336 Don't start multiple jobs unless load is below N.\n"),
337 N_("\
338 -L, --check-symlink-times Use the latest mtime between symlinks and target.\n"),
339 N_("\
340 -n, --just-print, --dry-run, --recon\n\
341 Don't actually run any recipe; just print them.\n"),
342 N_("\
343 -o FILE, --old-file=FILE, --assume-old=FILE\n\
344 Consider FILE to be very old and don't remake it.\n"),
345 N_("\
346 -p, --print-data-base Print make's internal database.\n"),
347 N_("\
348 -q, --question Run no recipe; exit status says if up to date.\n"),
349 N_("\
350 -r, --no-builtin-rules Disable the built-in implicit rules.\n"),
351 N_("\
352 -R, --no-builtin-variables Disable the built-in variable settings.\n"),
353 N_("\
354 -s, --silent, --quiet Don't echo recipes.\n"),
355 N_("\
356 -S, --no-keep-going, --stop\n\
357 Turns off -k.\n"),
358 N_("\
359 -t, --touch Touch targets instead of remaking them.\n"),
360 N_("\
361 -v, --version Print the version number of make and exit.\n"),
362 N_("\
363 -w, --print-directory Print the current directory.\n"),
364 N_("\
365 --no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
366 N_("\
367 -W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
368 Consider FILE to be infinitely new.\n"),
369 N_("\
370 --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
371 NULL
374 /* The table of command switches. */
376 static const struct command_switch switches[] =
378 { 'b', ignore, 0, 0, 0, 0, 0, 0, 0 },
379 { 'B', flag, &always_make_set, 1, 1, 0, 0, 0, "always-make" },
380 { 'C', filename, &directories, 0, 0, 0, 0, 0, "directory" },
381 { 'd', flag, &debug_flag, 1, 1, 0, 0, 0, 0 },
382 { CHAR_MAX+1, string, &db_flags, 1, 1, 0, "basic", 0, "debug" },
383 #ifdef WINDOWS32
384 { 'D', flag, &suspend_flag, 1, 1, 0, 0, 0, "suspend-for-debug" },
385 #endif
386 { 'e', flag, &env_overrides, 1, 1, 0, 0, 0, "environment-overrides", },
387 { 'f', filename, &makefiles, 0, 0, 0, 0, 0, "file" },
388 { 'h', flag, &print_usage_flag, 0, 0, 0, 0, 0, "help" },
389 { 'i', flag, &ignore_errors_flag, 1, 1, 0, 0, 0, "ignore-errors" },
390 { 'I', filename, &include_directories, 1, 1, 0, 0, 0,
391 "include-dir" },
392 { 'j', positive_int, &job_slots, 1, 1, 0, &inf_jobs, &default_job_slots,
393 "jobs" },
394 { CHAR_MAX+2, string, &jobserver_fds, 1, 1, 0, 0, 0, "jobserver-fds" },
395 { 'k', flag, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
396 "keep-going" },
397 #ifndef NO_FLOAT
398 { 'l', floating, &max_load_average, 1, 1, 0, &default_load_average,
399 &default_load_average, "load-average" },
400 #else
401 { 'l', positive_int, &max_load_average, 1, 1, 0, &default_load_average,
402 &default_load_average, "load-average" },
403 #endif
404 { 'L', flag, &check_symlink_flag, 1, 1, 0, 0, 0, "check-symlink-times" },
405 { 'm', ignore, 0, 0, 0, 0, 0, 0, 0 },
406 { 'n', flag, &just_print_flag, 1, 1, 1, 0, 0, "just-print" },
407 { 'o', filename, &old_files, 0, 0, 0, 0, 0, "old-file" },
408 { 'p', flag, &print_data_base_flag, 1, 1, 0, 0, 0, "print-data-base" },
409 { 'q', flag, &question_flag, 1, 1, 1, 0, 0, "question" },
410 { 'r', flag, &no_builtin_rules_flag, 1, 1, 0, 0, 0, "no-builtin-rules" },
411 { 'R', flag, &no_builtin_variables_flag, 1, 1, 0, 0, 0,
412 "no-builtin-variables" },
413 { 's', flag, &silent_flag, 1, 1, 0, 0, 0, "silent" },
414 { 'S', flag_off, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
415 "no-keep-going" },
416 { 't', flag, &touch_flag, 1, 1, 1, 0, 0, "touch" },
417 { 'v', flag, &print_version_flag, 1, 1, 0, 0, 0, "version" },
418 { CHAR_MAX+3, string, &verbosity_flags, 1, 1, 0, 0, 0,
419 "verbosity" },
420 { 'w', flag, &print_directory_flag, 1, 1, 0, 0, 0, "print-directory" },
421 { CHAR_MAX+4, flag, &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
422 "no-print-directory" },
423 { 'W', filename, &new_files, 0, 0, 0, 0, 0, "what-if" },
424 { CHAR_MAX+5, flag, &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
425 "warn-undefined-variables" },
426 { CHAR_MAX+6, string, &eval_strings, 1, 0, 0, 0, 0, "eval" },
427 { 0, 0, 0, 0, 0, 0, 0, 0, 0 }
430 /* Secondary long names for options. */
432 static struct option long_option_aliases[] =
434 { "quiet", no_argument, 0, 's' },
435 { "stop", no_argument, 0, 'S' },
436 { "new-file", required_argument, 0, 'W' },
437 { "assume-new", required_argument, 0, 'W' },
438 { "assume-old", required_argument, 0, 'o' },
439 { "max-load", optional_argument, 0, 'l' },
440 { "dry-run", no_argument, 0, 'n' },
441 { "recon", no_argument, 0, 'n' },
442 { "makefile", required_argument, 0, 'f' },
445 /* List of goal targets. */
447 static struct dep *goals, *lastgoal;
449 /* List of variables which were defined on the command line
450 (or, equivalently, in MAKEFLAGS). */
452 struct command_variable
454 struct command_variable *next;
455 struct variable *variable;
457 static struct command_variable *command_variables;
459 /* The name we were invoked with. */
461 char *program;
463 /* Our current directory before processing any -C options. */
465 char *directory_before_chdir;
467 /* Our current directory after processing all -C options. */
469 char *starting_directory;
471 /* Value of the MAKELEVEL variable at startup (or 0). */
473 unsigned int makelevel;
475 /* Pointer to the value of the .DEFAULT_GOAL special variable.
476 The value will be the name of the goal to remake if the command line
477 does not override it. It can be set by the makefile, or else it's
478 the first target defined in the makefile whose name does not start
479 with '.'. */
481 struct variable * default_goal_var;
483 /* Pointer to structure for the file .DEFAULT
484 whose commands are used for any file that has none of its own.
485 This is zero if the makefiles do not define .DEFAULT. */
487 struct file *default_file;
489 /* Nonzero if we have seen the magic `.POSIX' target.
490 This turns on pedantic compliance with POSIX.2. */
492 int posix_pedantic;
494 /* Nonzero if we have seen the '.SECONDEXPANSION' target.
495 This turns on secondary expansion of prerequisites. */
497 int second_expansion;
499 /* Nonzero if we have seen the `.NOTPARALLEL' target.
500 This turns off parallel builds for this invocation of make. */
502 int not_parallel;
504 /* Nonzero if some rule detected clock skew; we keep track so (a) we only
505 print one warning about it during the run, and (b) we can print a final
506 warning at the end of the run. */
508 int clock_skew_detected;
510 /* Mask of signals that are being caught with fatal_error_signal. */
512 #ifdef POSIX
513 sigset_t fatal_signal_set;
514 #else
515 # ifdef HAVE_SIGSETMASK
516 int fatal_signal_mask;
517 # endif
518 #endif
520 #if !defined HAVE_BSD_SIGNAL && !defined bsd_signal
521 # if !defined HAVE_SIGACTION
522 # define bsd_signal signal
523 # else
524 typedef RETSIGTYPE (*bsd_signal_ret_t) (int);
526 static bsd_signal_ret_t
527 bsd_signal (int sig, bsd_signal_ret_t func)
529 struct sigaction act, oact;
530 act.sa_handler = func;
531 act.sa_flags = SA_RESTART;
532 sigemptyset (&act.sa_mask);
533 sigaddset (&act.sa_mask, sig);
534 if (sigaction (sig, &act, &oact) != 0)
535 return SIG_ERR;
536 return oact.sa_handler;
538 # endif
539 #endif
541 static void
542 initialize_global_hash_tables (void)
544 init_hash_global_variable_set ();
545 strcache_init ();
546 init_hash_files ();
547 hash_init_directories ();
548 hash_init_function_table ();
551 static const char *
552 expand_command_line_file (char *name)
554 const char *cp;
555 char *expanded = 0;
557 if (name[0] == '\0')
558 fatal (NILF, _("empty string invalid as file name"));
560 if (name[0] == '~')
562 expanded = tilde_expand (name);
563 if (expanded != 0)
564 name = expanded;
567 /* This is also done in parse_file_seq, so this is redundant
568 for names read from makefiles. It is here for names passed
569 on the command line. */
570 while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
572 name += 2;
573 while (*name == '/')
574 /* Skip following slashes: ".//foo" is "foo", not "/foo". */
575 ++name;
578 if (*name == '\0')
580 /* It was all slashes! Move back to the dot and truncate
581 it after the first slash, so it becomes just "./". */
583 --name;
584 while (name[0] != '.');
585 name[2] = '\0';
588 cp = strcache_add (name);
590 if (expanded)
591 free (expanded);
593 return cp;
596 /* Toggle -d on receipt of SIGUSR1. */
598 #ifdef SIGUSR1
599 static RETSIGTYPE
600 debug_signal_handler (int sig UNUSED)
602 db_level = db_level ? DB_NONE : DB_BASIC;
604 #endif
606 static void
607 decode_debug_flags (void)
609 const char **pp;
611 if (debug_flag)
612 db_level = DB_ALL;
614 if (!db_flags)
615 return;
617 for (pp=db_flags->list; *pp; ++pp)
619 const char *p = *pp;
621 while (1)
623 switch (tolower (p[0]))
625 case 'a':
626 db_level |= DB_ALL;
627 break;
628 case 'b':
629 db_level |= DB_BASIC;
630 break;
631 case 'i':
632 db_level |= DB_BASIC | DB_IMPLICIT;
633 break;
634 case 'j':
635 db_level |= DB_JOBS;
636 break;
637 case 'm':
638 db_level |= DB_BASIC | DB_MAKEFILES;
639 break;
640 case 'v':
641 db_level |= DB_BASIC | DB_VERBOSE;
642 break;
643 default:
644 fatal (NILF, _("unknown debug level specification `%s'"), p);
647 while (*(++p) != '\0')
648 if (*p == ',' || *p == ' ')
649 break;
651 if (*p == '\0')
652 break;
654 ++p;
659 #ifdef WINDOWS32
661 * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
662 * exception and print it to stderr instead.
664 * If ! DB_VERBOSE, just print a simple message and exit.
665 * If DB_VERBOSE, print a more verbose message.
666 * If compiled for DEBUG, let exception pass through to GUI so that
667 * debuggers can attach.
669 LONG WINAPI
670 handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
672 PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
673 LPSTR cmdline = GetCommandLine();
674 LPSTR prg = strtok(cmdline, " ");
675 CHAR errmsg[1024];
676 #ifdef USE_EVENT_LOG
677 HANDLE hEventSource;
678 LPTSTR lpszStrings[1];
679 #endif
681 if (! ISDB (DB_VERBOSE))
683 sprintf(errmsg,
684 _("%s: Interrupt/Exception caught (code = 0x%lx, addr = 0x%lx)\n"),
685 prg, exrec->ExceptionCode, (DWORD)exrec->ExceptionAddress);
686 fprintf(stderr, errmsg);
687 exit(255);
690 sprintf(errmsg,
691 _("\nUnhandled exception filter called from program %s\nExceptionCode = %lx\nExceptionFlags = %lx\nExceptionAddress = %lx\n"),
692 prg, exrec->ExceptionCode, exrec->ExceptionFlags,
693 (DWORD)exrec->ExceptionAddress);
695 if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
696 && exrec->NumberParameters >= 2)
697 sprintf(&errmsg[strlen(errmsg)],
698 (exrec->ExceptionInformation[0]
699 ? _("Access violation: write operation at address %lx\n")
700 : _("Access violation: read operation at address %lx\n")),
701 exrec->ExceptionInformation[1]);
703 /* turn this on if we want to put stuff in the event log too */
704 #ifdef USE_EVENT_LOG
705 hEventSource = RegisterEventSource(NULL, "GNU Make");
706 lpszStrings[0] = errmsg;
708 if (hEventSource != NULL)
710 ReportEvent(hEventSource, /* handle of event source */
711 EVENTLOG_ERROR_TYPE, /* event type */
712 0, /* event category */
713 0, /* event ID */
714 NULL, /* current user's SID */
715 1, /* strings in lpszStrings */
716 0, /* no bytes of raw data */
717 lpszStrings, /* array of error strings */
718 NULL); /* no raw data */
720 (VOID) DeregisterEventSource(hEventSource);
722 #endif
724 /* Write the error to stderr too */
725 fprintf(stderr, errmsg);
727 #ifdef DEBUG
728 return EXCEPTION_CONTINUE_SEARCH;
729 #else
730 exit(255);
731 return (255); /* not reached */
732 #endif
736 * On WIN32 systems we don't have the luxury of a /bin directory that
737 * is mapped globally to every drive mounted to the system. Since make could
738 * be invoked from any drive, and we don't want to propogate /bin/sh
739 * to every single drive. Allow ourselves a chance to search for
740 * a value for default shell here (if the default path does not exist).
744 find_and_set_default_shell (const char *token)
746 int sh_found = 0;
747 char *atoken = 0;
748 char *search_token;
749 char *tokend;
750 PATH_VAR(sh_path);
751 extern char *default_shell;
753 if (!token)
754 search_token = default_shell;
755 else
756 atoken = search_token = xstrdup (token);
758 /* If the user explicitly requests the DOS cmd shell, obey that request.
759 However, make sure that's what they really want by requiring the value
760 of SHELL either equal, or have a final path element of, "cmd" or
761 "cmd.exe" case-insensitive. */
762 tokend = search_token + strlen (search_token) - 3;
763 if (((tokend == search_token
764 || (tokend > search_token
765 && (tokend[-1] == '/' || tokend[-1] == '\\')))
766 && !strcasecmp (tokend, "cmd"))
767 || ((tokend - 4 == search_token
768 || (tokend - 4 > search_token
769 && (tokend[-5] == '/' || tokend[-5] == '\\')))
770 && !strcasecmp (tokend - 4, "cmd.exe"))) {
771 batch_mode_shell = 1;
772 unixy_shell = 0;
773 sprintf (sh_path, "%s", search_token);
774 default_shell = xstrdup (w32ify (sh_path, 0));
775 DB (DB_VERBOSE, (_("find_and_set_shell() setting default_shell = %s\n"),
776 default_shell));
777 sh_found = 1;
778 } else if (!no_default_sh_exe &&
779 (token == NULL || !strcmp (search_token, default_shell))) {
780 /* no new information, path already set or known */
781 sh_found = 1;
782 } else if (file_exists_p (search_token)) {
783 /* search token path was found */
784 sprintf (sh_path, "%s", search_token);
785 default_shell = xstrdup (w32ify (sh_path, 0));
786 DB (DB_VERBOSE, (_("find_and_set_shell() setting default_shell = %s\n"),
787 default_shell));
788 sh_found = 1;
789 } else {
790 char *p;
791 struct variable *v = lookup_variable (STRING_SIZE_TUPLE ("PATH"));
793 /* Search Path for shell */
794 if (v && v->value) {
795 char *ep;
797 p = v->value;
798 ep = strchr (p, PATH_SEPARATOR_CHAR);
800 while (ep && *ep) {
801 *ep = '\0';
803 if (dir_file_exists_p (p, search_token)) {
804 sprintf (sh_path, "%s/%s", p, search_token);
805 default_shell = xstrdup (w32ify (sh_path, 0));
806 sh_found = 1;
807 *ep = PATH_SEPARATOR_CHAR;
809 /* terminate loop */
810 p += strlen (p);
811 } else {
812 *ep = PATH_SEPARATOR_CHAR;
813 p = ++ep;
816 ep = strchr (p, PATH_SEPARATOR_CHAR);
819 /* be sure to check last element of Path */
820 if (p && *p && dir_file_exists_p (p, search_token)) {
821 sprintf (sh_path, "%s/%s", p, search_token);
822 default_shell = xstrdup (w32ify (sh_path, 0));
823 sh_found = 1;
826 if (sh_found)
827 DB (DB_VERBOSE,
828 (_("find_and_set_shell() path search set default_shell = %s\n"),
829 default_shell));
833 /* naive test */
834 if (!unixy_shell && sh_found &&
835 (strstr (default_shell, "sh") || strstr (default_shell, "SH"))) {
836 unixy_shell = 1;
837 batch_mode_shell = 0;
840 #ifdef BATCH_MODE_ONLY_SHELL
841 batch_mode_shell = 1;
842 #endif
844 if (atoken)
845 free (atoken);
847 return (sh_found);
849 #endif /* WINDOWS32 */
851 #ifdef __MSDOS__
852 static void
853 msdos_return_to_initial_directory (void)
855 if (directory_before_chdir)
856 chdir (directory_before_chdir);
858 #endif /* __MSDOS__ */
860 char *mktemp (char *template);
861 int mkstemp (char *template);
863 FILE *
864 open_tmpfile(char **name, const char *template)
866 #ifdef HAVE_FDOPEN
867 int fd;
868 #endif
870 #if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
871 # define TEMPLATE_LEN strlen (template)
872 #else
873 # define TEMPLATE_LEN L_tmpnam
874 #endif
875 *name = xmalloc (TEMPLATE_LEN + 1);
876 strcpy (*name, template);
878 #if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
879 /* It's safest to use mkstemp(), if we can. */
880 fd = mkstemp (*name);
881 if (fd == -1)
882 return 0;
883 return fdopen (fd, "w");
884 #else
885 # ifdef HAVE_MKTEMP
886 (void) mktemp (*name);
887 # else
888 (void) tmpnam (*name);
889 # endif
891 # ifdef HAVE_FDOPEN
892 /* Can't use mkstemp(), but guard against a race condition. */
893 fd = open (*name, O_CREAT|O_EXCL|O_WRONLY, 0600);
894 if (fd == -1)
895 return 0;
896 return fdopen (fd, "w");
897 # else
898 /* Not secure, but what can we do? */
899 return fopen (*name, "w");
900 # endif
901 #endif
905 #ifdef _AMIGA
907 main (int argc, char **argv)
908 #else
910 main (int argc, char **argv, char **envp)
911 #endif
913 static char *stdin_nm = 0;
914 int makefile_status = MAKE_SUCCESS;
915 struct dep *read_makefiles;
916 PATH_VAR (current_directory);
917 unsigned int restarts = 0;
918 #ifdef WINDOWS32
919 char *unix_path = NULL;
920 char *windows32_path = NULL;
922 SetUnhandledExceptionFilter(handle_runtime_exceptions);
924 /* start off assuming we have no shell */
925 unixy_shell = 0;
926 no_default_sh_exe = 1;
927 #endif
929 #ifdef SET_STACK_SIZE
930 /* Get rid of any avoidable limit on stack size. */
932 struct rlimit rlim;
934 /* Set the stack limit huge so that alloca does not fail. */
935 if (getrlimit (RLIMIT_STACK, &rlim) == 0
936 && rlim.rlim_cur > 0 && rlim.rlim_cur < rlim.rlim_max)
938 stack_limit = rlim;
939 rlim.rlim_cur = rlim.rlim_max;
940 setrlimit (RLIMIT_STACK, &rlim);
942 else
943 stack_limit.rlim_cur = 0;
945 #endif
947 #ifdef HAVE_ATEXIT
948 atexit (close_stdout);
949 #endif
951 /* Needed for OS/2 */
952 initialize_main(&argc, &argv);
954 reading_file = 0;
956 #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
957 /* Request the most powerful version of `system', to
958 make up for the dumb default shell. */
959 __system_flags = (__system_redirect
960 | __system_use_shell
961 | __system_allow_multiple_cmds
962 | __system_allow_long_cmds
963 | __system_handle_null_commands
964 | __system_emulate_chdir);
966 #endif
968 /* Set up gettext/internationalization support. */
969 setlocale (LC_ALL, "");
970 bindtextdomain (PACKAGE, LOCALEDIR);
971 textdomain (PACKAGE);
973 #ifdef POSIX
974 sigemptyset (&fatal_signal_set);
975 #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
976 #else
977 #ifdef HAVE_SIGSETMASK
978 fatal_signal_mask = 0;
979 #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
980 #else
981 #define ADD_SIG(sig)
982 #endif
983 #endif
985 #define FATAL_SIG(sig) \
986 if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
987 bsd_signal (sig, SIG_IGN); \
988 else \
989 ADD_SIG (sig);
991 #ifdef SIGHUP
992 FATAL_SIG (SIGHUP);
993 #endif
994 #ifdef SIGQUIT
995 FATAL_SIG (SIGQUIT);
996 #endif
997 FATAL_SIG (SIGINT);
998 FATAL_SIG (SIGTERM);
1000 #ifdef __MSDOS__
1001 /* Windows 9X delivers FP exceptions in child programs to their
1002 parent! We don't want Make to die when a child divides by zero,
1003 so we work around that lossage by catching SIGFPE. */
1004 FATAL_SIG (SIGFPE);
1005 #endif
1007 #ifdef SIGDANGER
1008 FATAL_SIG (SIGDANGER);
1009 #endif
1010 #ifdef SIGXCPU
1011 FATAL_SIG (SIGXCPU);
1012 #endif
1013 #ifdef SIGXFSZ
1014 FATAL_SIG (SIGXFSZ);
1015 #endif
1017 #undef FATAL_SIG
1019 /* Do not ignore the child-death signal. This must be done before
1020 any children could possibly be created; otherwise, the wait
1021 functions won't work on systems with the SVR4 ECHILD brain
1022 damage, if our invoker is ignoring this signal. */
1024 #ifdef HAVE_WAIT_NOHANG
1025 # if defined SIGCHLD
1026 (void) bsd_signal (SIGCHLD, SIG_DFL);
1027 # endif
1028 # if defined SIGCLD && SIGCLD != SIGCHLD
1029 (void) bsd_signal (SIGCLD, SIG_DFL);
1030 # endif
1031 #endif
1033 /* Make sure stdout is line-buffered. */
1035 #ifdef HAVE_SETVBUF
1036 # ifdef SETVBUF_REVERSED
1037 setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
1038 # else /* setvbuf not reversed. */
1039 /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
1040 setvbuf (stdout, 0, _IOLBF, BUFSIZ);
1041 # endif /* setvbuf reversed. */
1042 #elif HAVE_SETLINEBUF
1043 setlinebuf (stdout);
1044 #endif /* setlinebuf missing. */
1046 /* Figure out where this program lives. */
1048 if (argv[0] == 0)
1049 argv[0] = "";
1050 if (argv[0][0] == '\0')
1051 program = "make";
1052 else
1054 #ifdef VMS
1055 program = strrchr (argv[0], ']');
1056 #else
1057 program = strrchr (argv[0], '/');
1058 #endif
1059 #if defined(__MSDOS__) || defined(__EMX__)
1060 if (program == 0)
1061 program = strrchr (argv[0], '\\');
1062 else
1064 /* Some weird environments might pass us argv[0] with
1065 both kinds of slashes; we must find the rightmost. */
1066 char *p = strrchr (argv[0], '\\');
1067 if (p && p > program)
1068 program = p;
1070 if (program == 0 && argv[0][1] == ':')
1071 program = argv[0] + 1;
1072 #endif
1073 #ifdef WINDOWS32
1074 if (program == 0)
1076 /* Extract program from full path */
1077 int argv0_len;
1078 program = strrchr (argv[0], '\\');
1079 if (program)
1081 argv0_len = strlen(program);
1082 if (argv0_len > 4 && streq (&program[argv0_len - 4], ".exe"))
1083 /* Remove .exe extension */
1084 program[argv0_len - 4] = '\0';
1087 #endif
1088 if (program == 0)
1089 program = argv[0];
1090 else
1091 ++program;
1094 /* Set up to access user data (files). */
1095 user_access ();
1097 initialize_global_hash_tables ();
1099 /* Figure out where we are. */
1101 #ifdef WINDOWS32
1102 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1103 #else
1104 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1105 #endif
1107 #ifdef HAVE_GETCWD
1108 perror_with_name ("getcwd", "");
1109 #else
1110 error (NILF, "getwd: %s", current_directory);
1111 #endif
1112 current_directory[0] = '\0';
1113 directory_before_chdir = 0;
1115 else
1116 directory_before_chdir = xstrdup (current_directory);
1117 #ifdef __MSDOS__
1118 /* Make sure we will return to the initial directory, come what may. */
1119 atexit (msdos_return_to_initial_directory);
1120 #endif
1122 /* Initialize the special variables. */
1123 define_variable_cname (".VARIABLES", "", o_default, 0)->special = 1;
1124 /* define_variable_cname (".TARGETS", "", o_default, 0)->special = 1; */
1125 define_variable_cname (".RECIPEPREFIX", "", o_default, 0)->special = 1;
1127 /* Set up .FEATURES
1128 We must do this in multiple calls because define_variable_cname() is
1129 a macro and some compilers (MSVC) don't like conditionals in macros. */
1130 define_variable_cname (".FEATURES",
1131 "target-specific order-only second-expansion else-if"
1132 " shortest-stem undefine",
1133 o_default, 0);
1134 #ifndef NO_ARCHIVES
1135 do_variable_definition (NILF, ".FEATURES", "archives",
1136 o_default, f_append, 0);
1137 #endif
1138 #ifdef MAKE_JOBSERVER
1139 do_variable_definition (NILF, ".FEATURES", "jobserver",
1140 o_default, f_append, 0);
1141 #endif
1142 #ifdef MAKE_SYMLINKS
1143 do_variable_definition (NILF, ".FEATURES", "check-symlink",
1144 o_default, f_append, 0);
1145 #endif
1147 /* Read in variables from the environment. It is important that this be
1148 done before $(MAKE) is figured out so its definitions will not be
1149 from the environment. */
1151 #ifndef _AMIGA
1153 unsigned int i;
1155 for (i = 0; envp[i] != 0; ++i)
1157 int do_not_define = 0;
1158 char *ep = envp[i];
1160 while (*ep != '\0' && *ep != '=')
1161 ++ep;
1162 #ifdef WINDOWS32
1163 if (!unix_path && strneq(envp[i], "PATH=", 5))
1164 unix_path = ep+1;
1165 else if (!strnicmp(envp[i], "Path=", 5)) {
1166 do_not_define = 1; /* it gets defined after loop exits */
1167 if (!windows32_path)
1168 windows32_path = ep+1;
1170 #endif
1171 /* The result of pointer arithmetic is cast to unsigned int for
1172 machines where ptrdiff_t is a different size that doesn't widen
1173 the same. */
1174 if (!do_not_define)
1176 struct variable *v;
1178 v = define_variable (envp[i], (unsigned int) (ep - envp[i]),
1179 ep + 1, o_env, 1);
1180 /* Force exportation of every variable culled from the
1181 environment. We used to rely on target_environment's
1182 v_default code to do this. But that does not work for the
1183 case where an environment variable is redefined in a makefile
1184 with `override'; it should then still be exported, because it
1185 was originally in the environment. */
1186 v->export = v_export;
1188 /* Another wrinkle is that POSIX says the value of SHELL set in
1189 the makefile won't change the value of SHELL given to
1190 subprocesses. */
1191 if (streq (v->name, "SHELL"))
1193 #ifndef __MSDOS__
1194 v->export = v_noexport;
1195 #endif
1196 shell_var.name = "SHELL";
1197 shell_var.length = 5;
1198 shell_var.value = xstrdup (ep + 1);
1201 /* If MAKE_RESTARTS is set, remember it but don't export it. */
1202 if (streq (v->name, "MAKE_RESTARTS"))
1204 v->export = v_noexport;
1205 restarts = (unsigned int) atoi (ep + 1);
1210 #ifdef WINDOWS32
1211 /* If we didn't find a correctly spelled PATH we define PATH as
1212 * either the first mispelled value or an empty string
1214 if (!unix_path)
1215 define_variable_cname ("PATH", windows32_path ? windows32_path : "",
1216 o_env, 1)->export = v_export;
1217 #endif
1218 #else /* For Amiga, read the ENV: device, ignoring all dirs */
1220 BPTR env, file, old;
1221 char buffer[1024];
1222 int len;
1223 __aligned struct FileInfoBlock fib;
1225 env = Lock ("ENV:", ACCESS_READ);
1226 if (env)
1228 old = CurrentDir (DupLock(env));
1229 Examine (env, &fib);
1231 while (ExNext (env, &fib))
1233 if (fib.fib_DirEntryType < 0) /* File */
1235 /* Define an empty variable. It will be filled in
1236 variable_lookup(). Makes startup quite a bit
1237 faster. */
1238 define_variable (fib.fib_FileName,
1239 strlen (fib.fib_FileName),
1240 "", o_env, 1)->export = v_export;
1243 UnLock (env);
1244 UnLock(CurrentDir(old));
1247 #endif
1249 /* Decode the switches. */
1251 decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
1252 #if 0
1253 /* People write things like:
1254 MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
1255 and we set the -p, -i and -e switches. Doesn't seem quite right. */
1256 decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
1257 #endif
1259 decode_switches (argc, argv, 0);
1261 #ifdef WINDOWS32
1262 if (suspend_flag) {
1263 fprintf(stderr, "%s (pid = %ld)\n", argv[0], GetCurrentProcessId());
1264 fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
1265 Sleep(30 * 1000);
1266 fprintf(stderr, _("done sleep(30). Continuing.\n"));
1268 #endif
1270 decode_debug_flags ();
1272 /* Set always_make_flag if -B was given and we've not restarted already. */
1273 always_make_flag = always_make_set && (restarts == 0);
1275 /* Print version information. */
1276 if (print_version_flag || print_data_base_flag || db_level)
1278 print_version ();
1280 /* `make --version' is supposed to just print the version and exit. */
1281 if (print_version_flag)
1282 die (0);
1285 #ifndef VMS
1286 /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
1287 (If it is a relative pathname with a slash, prepend our directory name
1288 so the result will run the same program regardless of the current dir.
1289 If it is a name with no slash, we can only hope that PATH did not
1290 find it in the current directory.) */
1291 #ifdef WINDOWS32
1293 * Convert from backslashes to forward slashes for
1294 * programs like sh which don't like them. Shouldn't
1295 * matter if the path is one way or the other for
1296 * CreateProcess().
1298 if (strpbrk(argv[0], "/:\\") ||
1299 strstr(argv[0], "..") ||
1300 strneq(argv[0], "//", 2))
1301 argv[0] = xstrdup(w32ify(argv[0],1));
1302 #else /* WINDOWS32 */
1303 #if defined (__MSDOS__) || defined (__EMX__)
1304 if (strchr (argv[0], '\\'))
1306 char *p;
1308 argv[0] = xstrdup (argv[0]);
1309 for (p = argv[0]; *p; p++)
1310 if (*p == '\\')
1311 *p = '/';
1313 /* If argv[0] is not in absolute form, prepend the current
1314 directory. This can happen when Make is invoked by another DJGPP
1315 program that uses a non-absolute name. */
1316 if (current_directory[0] != '\0'
1317 && argv[0] != 0
1318 && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':'))
1319 # ifdef __EMX__
1320 /* do not prepend cwd if argv[0] contains no '/', e.g. "make" */
1321 && (strchr (argv[0], '/') != 0 || strchr (argv[0], '\\') != 0)
1322 # endif
1324 argv[0] = xstrdup (concat (3, current_directory, "/", argv[0]));
1325 #else /* !__MSDOS__ */
1326 if (current_directory[0] != '\0'
1327 && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0
1328 #ifdef HAVE_DOS_PATHS
1329 && (argv[0][0] != '\\' && (!argv[0][0] || argv[0][1] != ':'))
1330 && strchr (argv[0], '\\') != 0
1331 #endif
1333 argv[0] = xstrdup (concat (3, current_directory, "/", argv[0]));
1334 #endif /* !__MSDOS__ */
1335 #endif /* WINDOWS32 */
1336 #endif
1338 /* The extra indirection through $(MAKE_COMMAND) is done
1339 for hysterical raisins. */
1340 define_variable_cname ("MAKE_COMMAND", argv[0], o_default, 0);
1341 define_variable_cname ("MAKE", "$(MAKE_COMMAND)", o_default, 1);
1343 if (command_variables != 0)
1345 struct command_variable *cv;
1346 struct variable *v;
1347 unsigned int len = 0;
1348 char *value, *p;
1350 /* Figure out how much space will be taken up by the command-line
1351 variable definitions. */
1352 for (cv = command_variables; cv != 0; cv = cv->next)
1354 v = cv->variable;
1355 len += 2 * strlen (v->name);
1356 if (! v->recursive)
1357 ++len;
1358 ++len;
1359 len += 2 * strlen (v->value);
1360 ++len;
1363 /* Now allocate a buffer big enough and fill it. */
1364 p = value = alloca (len);
1365 for (cv = command_variables; cv != 0; cv = cv->next)
1367 v = cv->variable;
1368 p = quote_for_env (p, v->name);
1369 if (! v->recursive)
1370 *p++ = ':';
1371 *p++ = '=';
1372 p = quote_for_env (p, v->value);
1373 *p++ = ' ';
1375 p[-1] = '\0'; /* Kill the final space and terminate. */
1377 /* Define an unchangeable variable with a name that no POSIX.2
1378 makefile could validly use for its own variable. */
1379 define_variable_cname ("-*-command-variables-*-", value, o_automatic, 0);
1381 /* Define the variable; this will not override any user definition.
1382 Normally a reference to this variable is written into the value of
1383 MAKEFLAGS, allowing the user to override this value to affect the
1384 exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
1385 allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
1386 a reference to this hidden variable is written instead. */
1387 define_variable_cname ("MAKEOVERRIDES", "${-*-command-variables-*-}",
1388 o_env, 1);
1391 /* If there were -C flags, move ourselves about. */
1392 if (directories != 0)
1394 unsigned int i;
1395 for (i = 0; directories->list[i] != 0; ++i)
1397 const char *dir = directories->list[i];
1398 #ifdef WINDOWS32
1399 /* WINDOWS32 chdir() doesn't work if the directory has a trailing '/'
1400 But allow -C/ just in case someone wants that. */
1402 char *p = dir + strlen (dir) - 1;
1403 while (p > dir && (p[0] == '/' || p[0] == '\\'))
1404 --p;
1405 p[1] = '\0';
1407 #endif
1408 if (chdir (dir) < 0)
1409 pfatal_with_name (dir);
1413 #ifdef WINDOWS32
1415 * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
1416 * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
1418 * The functions in dir.c can incorrectly cache information for "."
1419 * before we have changed directory and this can cause file
1420 * lookups to fail because the current directory (.) was pointing
1421 * at the wrong place when it was first evaluated.
1423 no_default_sh_exe = !find_and_set_default_shell(NULL);
1425 #endif /* WINDOWS32 */
1426 /* Figure out the level of recursion. */
1428 struct variable *v = lookup_variable (STRING_SIZE_TUPLE (MAKELEVEL_NAME));
1429 if (v != 0 && v->value[0] != '\0' && v->value[0] != '-')
1430 makelevel = (unsigned int) atoi (v->value);
1431 else
1432 makelevel = 0;
1435 /* Except under -s, always do -w in sub-makes and under -C. */
1436 if (!silent_flag && (directories != 0 || makelevel > 0))
1437 print_directory_flag = 1;
1439 /* Let the user disable that with --no-print-directory. */
1440 if (inhibit_print_directory_flag)
1441 print_directory_flag = 0;
1443 /* If -R was given, set -r too (doesn't make sense otherwise!) */
1444 if (no_builtin_variables_flag)
1445 no_builtin_rules_flag = 1;
1447 /* Construct the list of include directories to search. */
1449 construct_include_path (include_directories == 0
1450 ? 0 : include_directories->list);
1452 /* Figure out where we are now, after chdir'ing. */
1453 if (directories == 0)
1454 /* We didn't move, so we're still in the same place. */
1455 starting_directory = current_directory;
1456 else
1458 #ifdef WINDOWS32
1459 if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
1460 #else
1461 if (getcwd (current_directory, GET_PATH_MAX) == 0)
1462 #endif
1464 #ifdef HAVE_GETCWD
1465 perror_with_name ("getcwd", "");
1466 #else
1467 error (NILF, "getwd: %s", current_directory);
1468 #endif
1469 starting_directory = 0;
1471 else
1472 starting_directory = current_directory;
1475 define_variable_cname ("CURDIR", current_directory, o_file, 0);
1477 /* Read any stdin makefiles into temporary files. */
1479 if (makefiles != 0)
1481 unsigned int i;
1482 for (i = 0; i < makefiles->idx; ++i)
1483 if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
1485 /* This makefile is standard input. Since we may re-exec
1486 and thus re-read the makefiles, we read standard input
1487 into a temporary file and read from that. */
1488 FILE *outfile;
1489 char *template, *tmpdir;
1491 if (stdin_nm)
1492 fatal (NILF, _("Makefile from standard input specified twice."));
1494 #ifdef VMS
1495 # define DEFAULT_TMPDIR "sys$scratch:"
1496 #else
1497 # ifdef P_tmpdir
1498 # define DEFAULT_TMPDIR P_tmpdir
1499 # else
1500 # define DEFAULT_TMPDIR "/tmp"
1501 # endif
1502 #endif
1503 #define DEFAULT_TMPFILE "GmXXXXXX"
1505 if (((tmpdir = getenv ("TMPDIR")) == NULL || *tmpdir == '\0')
1506 #if defined (__MSDOS__) || defined (WINDOWS32) || defined (__EMX__)
1507 /* These are also used commonly on these platforms. */
1508 && ((tmpdir = getenv ("TEMP")) == NULL || *tmpdir == '\0')
1509 && ((tmpdir = getenv ("TMP")) == NULL || *tmpdir == '\0')
1510 #endif
1512 tmpdir = DEFAULT_TMPDIR;
1514 template = alloca (strlen (tmpdir) + sizeof (DEFAULT_TMPFILE) + 1);
1515 strcpy (template, tmpdir);
1517 #ifdef HAVE_DOS_PATHS
1518 if (strchr ("/\\", template[strlen (template) - 1]) == NULL)
1519 strcat (template, "/");
1520 #else
1521 # ifndef VMS
1522 if (template[strlen (template) - 1] != '/')
1523 strcat (template, "/");
1524 # endif /* !VMS */
1525 #endif /* !HAVE_DOS_PATHS */
1527 strcat (template, DEFAULT_TMPFILE);
1528 outfile = open_tmpfile (&stdin_nm, template);
1529 if (outfile == 0)
1530 pfatal_with_name (_("fopen (temporary file)"));
1531 while (!feof (stdin) && ! ferror (stdin))
1533 char buf[2048];
1534 unsigned int n = fread (buf, 1, sizeof (buf), stdin);
1535 if (n > 0 && fwrite (buf, 1, n, outfile) != n)
1536 pfatal_with_name (_("fwrite (temporary file)"));
1538 fclose (outfile);
1540 /* Replace the name that read_all_makefiles will
1541 see with the name of the temporary file. */
1542 makefiles->list[i] = strcache_add (stdin_nm);
1544 /* Make sure the temporary file will not be remade. */
1546 struct file *f = enter_file (strcache_add (stdin_nm));
1547 f->updated = 1;
1548 f->update_status = 0;
1549 f->command_state = cs_finished;
1550 /* Can't be intermediate, or it'll be removed too early for
1551 make re-exec. */
1552 f->intermediate = 0;
1553 f->dontcare = 0;
1558 #ifndef __EMX__ /* Don't use a SIGCHLD handler for OS/2 */
1559 #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
1560 /* Set up to handle children dying. This must be done before
1561 reading in the makefiles so that `shell' function calls will work.
1563 If we don't have a hanging wait we have to fall back to old, broken
1564 functionality here and rely on the signal handler and counting
1565 children.
1567 If we're using the jobs pipe we need a signal handler so that
1568 SIGCHLD is not ignored; we need it to interrupt the read(2) of the
1569 jobserver pipe in job.c if we're waiting for a token.
1571 If none of these are true, we don't need a signal handler at all. */
1573 RETSIGTYPE child_handler (int sig);
1574 # if defined SIGCHLD
1575 bsd_signal (SIGCHLD, child_handler);
1576 # endif
1577 # if defined SIGCLD && SIGCLD != SIGCHLD
1578 bsd_signal (SIGCLD, child_handler);
1579 # endif
1581 #endif
1582 #endif
1584 /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
1585 #ifdef SIGUSR1
1586 bsd_signal (SIGUSR1, debug_signal_handler);
1587 #endif
1589 /* Define the initial list of suffixes for old-style rules. */
1591 set_default_suffixes ();
1593 /* Define the file rules for the built-in suffix rules. These will later
1594 be converted into pattern rules. We used to do this in
1595 install_default_implicit_rules, but since that happens after reading
1596 makefiles, it results in the built-in pattern rules taking precedence
1597 over makefile-specified suffix rules, which is wrong. */
1599 install_default_suffix_rules ();
1601 /* Define some internal and special variables. */
1603 define_automatic_variables ();
1605 /* Set up the MAKEFLAGS and MFLAGS variables
1606 so makefiles can look at them. */
1608 define_makeflags (0, 0);
1610 /* Define the default variables. */
1611 define_default_variables ();
1613 default_file = enter_file (strcache_add (".DEFAULT"));
1615 default_goal_var = define_variable_cname (".DEFAULT_GOAL", "", o_file, 0);
1617 /* Evaluate all strings provided with --eval.
1618 Also set up the $(-*-eval-flags-*-) variable. */
1620 if (eval_strings)
1622 char *p, *value;
1623 unsigned int i;
1624 unsigned int len = sizeof ("--eval=") * eval_strings->idx;
1626 for (i = 0; i < eval_strings->idx; ++i)
1628 p = xstrdup (eval_strings->list[i]);
1629 len += 2 * strlen (p);
1630 eval_buffer (p);
1631 free (p);
1634 p = value = alloca (len);
1635 for (i = 0; i < eval_strings->idx; ++i)
1637 strcpy (p, "--eval=");
1638 p += strlen (p);
1639 p = quote_for_env (p, eval_strings->list[i]);
1640 *(p++) = ' ';
1642 p[-1] = '\0';
1644 define_variable_cname ("-*-eval-flags-*-", value, o_automatic, 0);
1647 /* Read all the makefiles. */
1649 read_makefiles
1650 = read_all_makefiles (makefiles == 0 ? 0 : makefiles->list);
1652 #ifdef WINDOWS32
1653 /* look one last time after reading all Makefiles */
1654 if (no_default_sh_exe)
1655 no_default_sh_exe = !find_and_set_default_shell(NULL);
1656 #endif /* WINDOWS32 */
1658 #if defined (__MSDOS__) || defined (__EMX__)
1659 /* We need to know what kind of shell we will be using. */
1661 extern int _is_unixy_shell (const char *_path);
1662 struct variable *shv = lookup_variable (STRING_SIZE_TUPLE ("SHELL"));
1663 extern int unixy_shell;
1664 extern char *default_shell;
1666 if (shv && *shv->value)
1668 char *shell_path = recursively_expand(shv);
1670 if (shell_path && _is_unixy_shell (shell_path))
1671 unixy_shell = 1;
1672 else
1673 unixy_shell = 0;
1674 if (shell_path)
1675 default_shell = shell_path;
1678 #endif /* __MSDOS__ || __EMX__ */
1680 /* Decode switches again, in case the variables were set by the makefile. */
1681 decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
1682 #if 0
1683 decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
1684 #endif
1686 #if defined (__MSDOS__) || defined (__EMX__)
1687 if (job_slots != 1
1688 # ifdef __EMX__
1689 && _osmode != OS2_MODE /* turn off -j if we are in DOS mode */
1690 # endif
1693 error (NILF,
1694 _("Parallel jobs (-j) are not supported on this platform."));
1695 error (NILF, _("Resetting to single job (-j1) mode."));
1696 job_slots = 1;
1698 #endif
1700 #ifdef MAKE_JOBSERVER
1701 /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
1703 if (jobserver_fds)
1705 const char *cp;
1706 unsigned int ui;
1708 for (ui=1; ui < jobserver_fds->idx; ++ui)
1709 if (!streq (jobserver_fds->list[0], jobserver_fds->list[ui]))
1710 fatal (NILF, _("internal error: multiple --jobserver-fds options"));
1712 /* Now parse the fds string and make sure it has the proper format. */
1714 cp = jobserver_fds->list[0];
1716 if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
1717 fatal (NILF,
1718 _("internal error: invalid --jobserver-fds string `%s'"), cp);
1720 DB (DB_JOBS,
1721 (_("Jobserver client (fds %d,%d)\n"), job_fds[0], job_fds[1]));
1723 /* The combination of a pipe + !job_slots means we're using the
1724 jobserver. If !job_slots and we don't have a pipe, we can start
1725 infinite jobs. If we see both a pipe and job_slots >0 that means the
1726 user set -j explicitly. This is broken; in this case obey the user
1727 (ignore the jobserver pipe for this make) but print a message. */
1729 if (job_slots > 0)
1730 error (NILF,
1731 _("warning: -jN forced in submake: disabling jobserver mode."));
1733 /* Create a duplicate pipe, that will be closed in the SIGCHLD
1734 handler. If this fails with EBADF, the parent has closed the pipe
1735 on us because it didn't think we were a submake. If so, print a
1736 warning then default to -j1. */
1738 else if ((job_rfd = dup (job_fds[0])) < 0)
1740 if (errno != EBADF)
1741 pfatal_with_name (_("dup jobserver"));
1743 error (NILF,
1744 _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
1745 job_slots = 1;
1748 if (job_slots > 0)
1750 close (job_fds[0]);
1751 close (job_fds[1]);
1752 job_fds[0] = job_fds[1] = -1;
1753 free (jobserver_fds->list);
1754 free (jobserver_fds);
1755 jobserver_fds = 0;
1759 /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
1760 Set up the pipe and install the fds option for our children. */
1762 if (job_slots > 1)
1764 char *cp;
1765 char c = '+';
1767 if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
1768 pfatal_with_name (_("creating jobs pipe"));
1770 /* Every make assumes that it always has one job it can run. For the
1771 submakes it's the token they were given by their parent. For the
1772 top make, we just subtract one from the number the user wants. We
1773 want job_slots to be 0 to indicate we're using the jobserver. */
1775 master_job_slots = job_slots;
1777 while (--job_slots)
1779 int r;
1781 EINTRLOOP (r, write (job_fds[1], &c, 1));
1782 if (r != 1)
1783 pfatal_with_name (_("init jobserver pipe"));
1786 /* Fill in the jobserver_fds struct for our children. */
1788 cp = xmalloc ((sizeof ("1024")*2)+1);
1789 sprintf (cp, "%d,%d", job_fds[0], job_fds[1]);
1791 jobserver_fds = (struct stringlist *)
1792 xmalloc (sizeof (struct stringlist));
1793 jobserver_fds->list = xmalloc (sizeof (char *));
1794 jobserver_fds->list[0] = cp;
1795 jobserver_fds->idx = 1;
1796 jobserver_fds->max = 1;
1798 #endif
1800 #ifndef MAKE_SYMLINKS
1801 if (check_symlink_flag)
1803 error (NILF, _("Symbolic links not supported: disabling -L."));
1804 check_symlink_flag = 0;
1806 #endif
1808 /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
1810 define_makeflags (1, 0);
1812 /* Make each `struct dep' point at the `struct file' for the file
1813 depended on. Also do magic for special targets. */
1815 snap_deps ();
1817 /* Convert old-style suffix rules to pattern rules. It is important to
1818 do this before installing the built-in pattern rules below, so that
1819 makefile-specified suffix rules take precedence over built-in pattern
1820 rules. */
1822 convert_to_pattern ();
1824 /* Install the default implicit pattern rules.
1825 This used to be done before reading the makefiles.
1826 But in that case, built-in pattern rules were in the chain
1827 before user-defined ones, so they matched first. */
1829 install_default_implicit_rules ();
1831 /* Compute implicit rule limits. */
1833 count_implicit_rule_limits ();
1835 /* Construct the listings of directories in VPATH lists. */
1837 build_vpath_lists ();
1839 /* Mark files given with -o flags as very old and as having been updated
1840 already, and files given with -W flags as brand new (time-stamp as far
1841 as possible into the future). If restarts is set we'll do -W later. */
1843 if (old_files != 0)
1845 const char **p;
1846 for (p = old_files->list; *p != 0; ++p)
1848 struct file *f = enter_file (*p);
1849 f->last_mtime = f->mtime_before_update = OLD_MTIME;
1850 f->updated = 1;
1851 f->update_status = 0;
1852 f->command_state = cs_finished;
1856 if (!restarts && new_files != 0)
1858 const char **p;
1859 for (p = new_files->list; *p != 0; ++p)
1861 struct file *f = enter_file (*p);
1862 f->last_mtime = f->mtime_before_update = NEW_MTIME;
1866 /* Initialize the remote job module. */
1867 remote_setup ();
1869 if (read_makefiles != 0)
1871 /* Update any makefiles if necessary. */
1873 FILE_TIMESTAMP *makefile_mtimes = 0;
1874 unsigned int mm_idx = 0;
1875 char **nargv;
1876 int nargc;
1877 int orig_db_level = db_level;
1878 int status;
1880 if (! ISDB (DB_MAKEFILES))
1881 db_level = DB_NONE;
1883 DB (DB_BASIC, (_("Updating makefiles....\n")));
1885 /* Remove any makefiles we don't want to try to update.
1886 Also record the current modtimes so we can compare them later. */
1888 register struct dep *d, *last;
1889 last = 0;
1890 d = read_makefiles;
1891 while (d != 0)
1893 struct file *f = d->file;
1894 if (f->double_colon)
1895 for (f = f->double_colon; f != NULL; f = f->prev)
1897 if (f->deps == 0 && f->cmds != 0)
1899 /* This makefile is a :: target with commands, but
1900 no dependencies. So, it will always be remade.
1901 This might well cause an infinite loop, so don't
1902 try to remake it. (This will only happen if
1903 your makefiles are written exceptionally
1904 stupidly; but if you work for Athena, that's how
1905 you write your makefiles.) */
1907 DB (DB_VERBOSE,
1908 (_("Makefile `%s' might loop; not remaking it.\n"),
1909 f->name));
1911 if (last == 0)
1912 read_makefiles = d->next;
1913 else
1914 last->next = d->next;
1916 /* Free the storage. */
1917 free_dep (d);
1919 d = last == 0 ? read_makefiles : last->next;
1921 break;
1924 if (f == NULL || !f->double_colon)
1926 makefile_mtimes = xrealloc (makefile_mtimes,
1927 (mm_idx+1)
1928 * sizeof (FILE_TIMESTAMP));
1929 makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
1930 last = d;
1931 d = d->next;
1936 /* Set up `MAKEFLAGS' specially while remaking makefiles. */
1937 define_makeflags (1, 1);
1939 rebuilding_makefiles = 1;
1940 status = update_goal_chain (read_makefiles);
1941 rebuilding_makefiles = 0;
1943 switch (status)
1945 case 1:
1946 /* The only way this can happen is if the user specified -q and asked
1947 * for one of the makefiles to be remade as a target on the command
1948 * line. Since we're not actually updating anything with -q we can
1949 * treat this as "did nothing".
1952 case -1:
1953 /* Did nothing. */
1954 break;
1956 case 2:
1957 /* Failed to update. Figure out if we care. */
1959 /* Nonzero if any makefile was successfully remade. */
1960 int any_remade = 0;
1961 /* Nonzero if any makefile we care about failed
1962 in updating or could not be found at all. */
1963 int any_failed = 0;
1964 unsigned int i;
1965 struct dep *d;
1967 for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
1969 /* Reset the considered flag; we may need to look at the file
1970 again to print an error. */
1971 d->file->considered = 0;
1973 if (d->file->updated)
1975 /* This makefile was updated. */
1976 if (d->file->update_status == 0)
1978 /* It was successfully updated. */
1979 any_remade |= (file_mtime_no_search (d->file)
1980 != makefile_mtimes[i]);
1982 else if (! (d->changed & RM_DONTCARE))
1984 FILE_TIMESTAMP mtime;
1985 /* The update failed and this makefile was not
1986 from the MAKEFILES variable, so we care. */
1987 error (NILF, _("Failed to remake makefile `%s'."),
1988 d->file->name);
1989 mtime = file_mtime_no_search (d->file);
1990 any_remade |= (mtime != NONEXISTENT_MTIME
1991 && mtime != makefile_mtimes[i]);
1992 makefile_status = MAKE_FAILURE;
1995 else
1996 /* This makefile was not found at all. */
1997 if (! (d->changed & RM_DONTCARE))
1999 /* This is a makefile we care about. See how much. */
2000 if (d->changed & RM_INCLUDED)
2001 /* An included makefile. We don't need
2002 to die, but we do want to complain. */
2003 error (NILF,
2004 _("Included makefile `%s' was not found."),
2005 dep_name (d));
2006 else
2008 /* A normal makefile. We must die later. */
2009 error (NILF, _("Makefile `%s' was not found"),
2010 dep_name (d));
2011 any_failed = 1;
2015 /* Reset this to empty so we get the right error message below. */
2016 read_makefiles = 0;
2018 if (any_remade)
2019 goto re_exec;
2020 if (any_failed)
2021 die (2);
2022 break;
2025 case 0:
2026 re_exec:
2027 /* Updated successfully. Re-exec ourselves. */
2029 remove_intermediates (0);
2031 if (print_data_base_flag)
2032 print_data_base ();
2034 log_working_directory (0);
2036 clean_jobserver (0);
2038 if (makefiles != 0)
2040 /* These names might have changed. */
2041 int i, j = 0;
2042 for (i = 1; i < argc; ++i)
2043 if (strneq (argv[i], "-f", 2)) /* XXX */
2045 if (argv[i][2] == '\0')
2046 /* This cast is OK since we never modify argv. */
2047 argv[++i] = (char *) makefiles->list[j];
2048 else
2049 argv[i] = xstrdup (concat (2, "-f", makefiles->list[j]));
2050 ++j;
2054 /* Add -o option for the stdin temporary file, if necessary. */
2055 nargc = argc;
2056 if (stdin_nm)
2058 nargv = xmalloc ((nargc + 2) * sizeof (char *));
2059 memcpy (nargv, argv, argc * sizeof (char *));
2060 nargv[nargc++] = xstrdup (concat (2, "-o", stdin_nm));
2061 nargv[nargc] = 0;
2063 else
2064 nargv = argv;
2066 if (directories != 0 && directories->idx > 0)
2068 int bad = 1;
2069 if (directory_before_chdir != 0)
2071 if (chdir (directory_before_chdir) < 0)
2072 perror_with_name ("chdir", "");
2073 else
2074 bad = 0;
2076 if (bad)
2077 fatal (NILF, _("Couldn't change back to original directory."));
2080 ++restarts;
2082 /* Reset makeflags in case they were changed. */
2084 const char *pv = define_makeflags (1, 1);
2085 char *p = alloca (sizeof ("MAKEFLAGS=") + strlen (pv) + 1);
2086 sprintf (p, "MAKEFLAGS=%s", pv);
2087 putenv (p);
2090 if (ISDB (DB_BASIC))
2092 char **p;
2093 printf (_("Re-executing[%u]:"), restarts);
2094 for (p = nargv; *p != 0; ++p)
2095 printf (" %s", *p);
2096 putchar ('\n');
2099 #ifndef _AMIGA
2101 char **p;
2102 for (p = environ; *p != 0; ++p)
2104 if (strneq (*p, MAKELEVEL_NAME, MAKELEVEL_LENGTH)
2105 && (*p)[MAKELEVEL_LENGTH] == '=')
2107 *p = alloca (40);
2108 sprintf (*p, "%s=%u", MAKELEVEL_NAME, makelevel);
2110 if (strneq (*p, "MAKE_RESTARTS=", 14))
2112 *p = alloca (40);
2113 sprintf (*p, "MAKE_RESTARTS=%u", restarts);
2114 restarts = 0;
2118 #else /* AMIGA */
2120 char buffer[256];
2122 sprintf (buffer, "%u", makelevel);
2123 SetVar (MAKELEVEL_NAME, buffer, -1, GVF_GLOBAL_ONLY);
2125 sprintf (buffer, "%u", restarts);
2126 SetVar ("MAKE_RESTARTS", buffer, -1, GVF_GLOBAL_ONLY);
2127 restarts = 0;
2129 #endif
2131 /* If we didn't set the restarts variable yet, add it. */
2132 if (restarts)
2134 char *b = alloca (40);
2135 sprintf (b, "MAKE_RESTARTS=%u", restarts);
2136 putenv (b);
2139 fflush (stdout);
2140 fflush (stderr);
2142 /* Close the dup'd jobserver pipe if we opened one. */
2143 if (job_rfd >= 0)
2144 close (job_rfd);
2146 #ifdef _AMIGA
2147 exec_command (nargv);
2148 exit (0);
2149 #elif defined (__EMX__)
2151 /* It is not possible to use execve() here because this
2152 would cause the parent process to be terminated with
2153 exit code 0 before the child process has been terminated.
2154 Therefore it may be the best solution simply to spawn the
2155 child process including all file handles and to wait for its
2156 termination. */
2157 int pid;
2158 int status;
2159 pid = child_execute_job (0, 1, nargv, environ);
2161 /* is this loop really necessary? */
2162 do {
2163 pid = wait (&status);
2164 } while (pid <= 0);
2165 /* use the exit code of the child process */
2166 exit (WIFEXITED(status) ? WEXITSTATUS(status) : EXIT_FAILURE);
2168 #else
2169 exec_command (nargv, environ);
2170 #endif
2171 /* NOTREACHED */
2173 default:
2174 #define BOGUS_UPDATE_STATUS 0
2175 assert (BOGUS_UPDATE_STATUS);
2176 break;
2179 db_level = orig_db_level;
2181 /* Free the makefile mtimes (if we allocated any). */
2182 if (makefile_mtimes)
2183 free (makefile_mtimes);
2186 /* Set up `MAKEFLAGS' again for the normal targets. */
2187 define_makeflags (1, 0);
2189 /* Set always_make_flag if -B was given. */
2190 always_make_flag = always_make_set;
2192 /* If restarts is set we haven't set up -W files yet, so do that now. */
2193 if (restarts && new_files != 0)
2195 const char **p;
2196 for (p = new_files->list; *p != 0; ++p)
2198 struct file *f = enter_file (*p);
2199 f->last_mtime = f->mtime_before_update = NEW_MTIME;
2203 /* If there is a temp file from reading a makefile from stdin, get rid of
2204 it now. */
2205 if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
2206 perror_with_name (_("unlink (temporary file): "), stdin_nm);
2208 /* If there were no command-line goals, use the default. */
2209 if (goals == 0)
2211 char *p;
2213 if (default_goal_var->recursive)
2214 p = variable_expand (default_goal_var->value);
2215 else
2217 p = variable_buffer_output (variable_buffer, default_goal_var->value,
2218 strlen (default_goal_var->value));
2219 *p = '\0';
2220 p = variable_buffer;
2223 if (*p != '\0')
2225 struct file *f = lookup_file (p);
2227 /* If .DEFAULT_GOAL is a non-existent target, enter it into the
2228 table and let the standard logic sort it out. */
2229 if (f == 0)
2231 struct nameseq *ns;
2233 ns = PARSE_FILE_SEQ (&p, struct nameseq, '\0', NULL, 0);
2234 if (ns)
2236 /* .DEFAULT_GOAL should contain one target. */
2237 if (ns->next != 0)
2238 fatal (NILF, _(".DEFAULT_GOAL contains more than one target"));
2240 f = enter_file (strcache_add (ns->name));
2242 ns->name = 0; /* It was reused by enter_file(). */
2243 free_ns_chain (ns);
2247 if (f)
2249 goals = alloc_dep ();
2250 goals->file = f;
2254 else
2255 lastgoal->next = 0;
2258 if (!goals)
2260 if (read_makefiles == 0)
2261 fatal (NILF, _("No targets specified and no makefile found"));
2263 fatal (NILF, _("No targets"));
2266 /* Update the goals. */
2268 DB (DB_BASIC, (_("Updating goal targets....\n")));
2271 int status;
2273 switch (update_goal_chain (goals))
2275 case -1:
2276 /* Nothing happened. */
2277 case 0:
2278 /* Updated successfully. */
2279 status = makefile_status;
2280 break;
2281 case 1:
2282 /* We are under -q and would run some commands. */
2283 status = MAKE_TROUBLE;
2284 break;
2285 case 2:
2286 /* Updating failed. POSIX.2 specifies exit status >1 for this;
2287 but in VMS, there is only success and failure. */
2288 status = MAKE_FAILURE;
2289 break;
2290 default:
2291 abort ();
2294 /* If we detected some clock skew, generate one last warning */
2295 if (clock_skew_detected)
2296 error (NILF,
2297 _("warning: Clock skew detected. Your build may be incomplete."));
2299 /* Exit. */
2300 die (status);
2303 /* NOTREACHED */
2304 return 0;
2307 /* Parsing of arguments, decoding of switches. */
2309 static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
2310 static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
2311 (sizeof (long_option_aliases) /
2312 sizeof (long_option_aliases[0]))];
2314 /* Fill in the string and vector for getopt. */
2315 static void
2316 init_switches (void)
2318 char *p;
2319 unsigned int c;
2320 unsigned int i;
2322 if (options[0] != '\0')
2323 /* Already done. */
2324 return;
2326 p = options;
2328 /* Return switch and non-switch args in order, regardless of
2329 POSIXLY_CORRECT. Non-switch args are returned as option 1. */
2330 *p++ = '-';
2332 for (i = 0; switches[i].c != '\0'; ++i)
2334 long_options[i].name = (switches[i].long_name == 0 ? "" :
2335 switches[i].long_name);
2336 long_options[i].flag = 0;
2337 long_options[i].val = switches[i].c;
2338 if (short_option (switches[i].c))
2339 *p++ = switches[i].c;
2340 switch (switches[i].type)
2342 case flag:
2343 case flag_off:
2344 case ignore:
2345 long_options[i].has_arg = no_argument;
2346 break;
2348 case string:
2349 case filename:
2350 case positive_int:
2351 case floating:
2352 if (short_option (switches[i].c))
2353 *p++ = ':';
2354 if (switches[i].noarg_value != 0)
2356 if (short_option (switches[i].c))
2357 *p++ = ':';
2358 long_options[i].has_arg = optional_argument;
2360 else
2361 long_options[i].has_arg = required_argument;
2362 break;
2365 *p = '\0';
2366 for (c = 0; c < (sizeof (long_option_aliases) /
2367 sizeof (long_option_aliases[0]));
2368 ++c)
2369 long_options[i++] = long_option_aliases[c];
2370 long_options[i].name = 0;
2373 static void
2374 handle_non_switch_argument (char *arg, int env)
2376 /* Non-option argument. It might be a variable definition. */
2377 struct variable *v;
2378 if (arg[0] == '-' && arg[1] == '\0')
2379 /* Ignore plain `-' for compatibility. */
2380 return;
2381 v = try_variable_definition (0, arg, o_command, 0);
2382 if (v != 0)
2384 /* It is indeed a variable definition. If we don't already have this
2385 one, record a pointer to the variable for later use in
2386 define_makeflags. */
2387 struct command_variable *cv;
2389 for (cv = command_variables; cv != 0; cv = cv->next)
2390 if (cv->variable == v)
2391 break;
2393 if (! cv) {
2394 cv = xmalloc (sizeof (*cv));
2395 cv->variable = v;
2396 cv->next = command_variables;
2397 command_variables = cv;
2400 else if (! env)
2402 /* Not an option or variable definition; it must be a goal
2403 target! Enter it as a file and add it to the dep chain of
2404 goals. */
2405 struct file *f = enter_file (strcache_add (expand_command_line_file (arg)));
2406 f->cmd_target = 1;
2408 if (goals == 0)
2410 goals = alloc_dep ();
2411 lastgoal = goals;
2413 else
2415 lastgoal->next = alloc_dep ();
2416 lastgoal = lastgoal->next;
2419 lastgoal->file = f;
2422 /* Add this target name to the MAKECMDGOALS variable. */
2423 struct variable *gv;
2424 const char *value;
2426 gv = lookup_variable (STRING_SIZE_TUPLE ("MAKECMDGOALS"));
2427 if (gv == 0)
2428 value = f->name;
2429 else
2431 /* Paste the old and new values together */
2432 unsigned int oldlen, newlen;
2433 char *vp;
2435 oldlen = strlen (gv->value);
2436 newlen = strlen (f->name);
2437 vp = alloca (oldlen + 1 + newlen + 1);
2438 memcpy (vp, gv->value, oldlen);
2439 vp[oldlen] = ' ';
2440 memcpy (&vp[oldlen + 1], f->name, newlen + 1);
2441 value = vp;
2443 define_variable_cname ("MAKECMDGOALS", value, o_default, 0);
2448 /* Print a nice usage method. */
2450 static void
2451 print_usage (int bad)
2453 const char *const *cpp;
2454 FILE *usageto;
2456 if (print_version_flag)
2457 print_version ();
2459 usageto = bad ? stderr : stdout;
2461 fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
2463 for (cpp = usage; *cpp; ++cpp)
2464 fputs (_(*cpp), usageto);
2466 if (!remote_description || *remote_description == '\0')
2467 fprintf (usageto, _("\nThis program built for %s\n"), make_host);
2468 else
2469 fprintf (usageto, _("\nThis program built for %s (%s)\n"),
2470 make_host, remote_description);
2472 fprintf (usageto, _("Report bugs to <bug-make@gnu.org>\n"));
2475 /* Decode switches from ARGC and ARGV.
2476 They came from the environment if ENV is nonzero. */
2478 static void
2479 decode_switches (int argc, char **argv, int env)
2481 int bad = 0;
2482 register const struct command_switch *cs;
2483 register struct stringlist *sl;
2484 register int c;
2486 /* getopt does most of the parsing for us.
2487 First, get its vectors set up. */
2489 init_switches ();
2491 /* Let getopt produce error messages for the command line,
2492 but not for options from the environment. */
2493 opterr = !env;
2494 /* Reset getopt's state. */
2495 optind = 0;
2497 while (optind < argc)
2499 /* Parse the next argument. */
2500 c = getopt_long (argc, argv, options, long_options, (int *) 0);
2501 if (c == EOF)
2502 /* End of arguments, or "--" marker seen. */
2503 break;
2504 else if (c == 1)
2505 /* An argument not starting with a dash. */
2506 handle_non_switch_argument (optarg, env);
2507 else if (c == '?')
2508 /* Bad option. We will print a usage message and die later.
2509 But continue to parse the other options so the user can
2510 see all he did wrong. */
2511 bad = 1;
2512 else
2513 for (cs = switches; cs->c != '\0'; ++cs)
2514 if (cs->c == c)
2516 /* Whether or not we will actually do anything with
2517 this switch. We test this individually inside the
2518 switch below rather than just once outside it, so that
2519 options which are to be ignored still consume args. */
2520 int doit = !env || cs->env;
2522 switch (cs->type)
2524 default:
2525 abort ();
2527 case ignore:
2528 break;
2530 case flag:
2531 case flag_off:
2532 if (doit)
2533 *(int *) cs->value_ptr = cs->type == flag;
2534 break;
2536 case string:
2537 case filename:
2538 if (!doit)
2539 break;
2541 if (optarg == 0)
2542 optarg = xstrdup (cs->noarg_value);
2543 else if (*optarg == '\0')
2545 char opt[2] = "c";
2546 const char *op = opt;
2548 if (short_option (cs->c))
2549 opt[0] = cs->c;
2550 else
2551 op = cs->long_name;
2553 error (NILF, _("the `%s%s' option requires a non-empty string argument"),
2554 short_option (cs->c) ? "-" : "--", op);
2555 bad = 1;
2558 sl = *(struct stringlist **) cs->value_ptr;
2559 if (sl == 0)
2561 sl = (struct stringlist *)
2562 xmalloc (sizeof (struct stringlist));
2563 sl->max = 5;
2564 sl->idx = 0;
2565 sl->list = xmalloc (5 * sizeof (char *));
2566 *(struct stringlist **) cs->value_ptr = sl;
2568 else if (sl->idx == sl->max - 1)
2570 sl->max += 5;
2571 sl->list = xrealloc (sl->list,
2572 sl->max * sizeof (char *));
2574 if (cs->type == filename)
2575 sl->list[sl->idx++] = expand_command_line_file (optarg);
2576 else
2577 sl->list[sl->idx++] = optarg;
2578 sl->list[sl->idx] = 0;
2579 break;
2581 case positive_int:
2582 /* See if we have an option argument; if we do require that
2583 it's all digits, not something like "10foo". */
2584 if (optarg == 0 && argc > optind)
2586 const char *cp;
2587 for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp)
2589 if (cp[0] == '\0')
2590 optarg = argv[optind++];
2593 if (!doit)
2594 break;
2596 if (optarg != 0)
2598 int i = atoi (optarg);
2599 const char *cp;
2601 /* Yes, I realize we're repeating this in some cases. */
2602 for (cp = optarg; ISDIGIT (cp[0]); ++cp)
2605 if (i < 1 || cp[0] != '\0')
2607 error (NILF, _("the `-%c' option requires a positive integral argument"),
2608 cs->c);
2609 bad = 1;
2611 else
2612 *(unsigned int *) cs->value_ptr = i;
2614 else
2615 *(unsigned int *) cs->value_ptr
2616 = *(unsigned int *) cs->noarg_value;
2617 break;
2619 #ifndef NO_FLOAT
2620 case floating:
2621 if (optarg == 0 && optind < argc
2622 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
2623 optarg = argv[optind++];
2625 if (doit)
2626 *(double *) cs->value_ptr
2627 = (optarg != 0 ? atof (optarg)
2628 : *(double *) cs->noarg_value);
2630 break;
2631 #endif
2634 /* We've found the switch. Stop looking. */
2635 break;
2639 /* There are no more options according to getting getopt, but there may
2640 be some arguments left. Since we have asked for non-option arguments
2641 to be returned in order, this only happens when there is a "--"
2642 argument to prevent later arguments from being options. */
2643 while (optind < argc)
2644 handle_non_switch_argument (argv[optind++], env);
2647 if (!env && (bad || print_usage_flag))
2649 print_usage (bad);
2650 die (bad ? 2 : 0);
2654 /* Decode switches from environment variable ENVAR (which is LEN chars long).
2655 We do this by chopping the value into a vector of words, prepending a
2656 dash to the first word if it lacks one, and passing the vector to
2657 decode_switches. */
2659 static void
2660 decode_env_switches (char *envar, unsigned int len)
2662 char *varref = alloca (2 + len + 2);
2663 char *value, *p;
2664 int argc;
2665 char **argv;
2667 /* Get the variable's value. */
2668 varref[0] = '$';
2669 varref[1] = '(';
2670 memcpy (&varref[2], envar, len);
2671 varref[2 + len] = ')';
2672 varref[2 + len + 1] = '\0';
2673 value = variable_expand (varref);
2675 /* Skip whitespace, and check for an empty value. */
2676 value = next_token (value);
2677 len = strlen (value);
2678 if (len == 0)
2679 return;
2681 /* Allocate a vector that is definitely big enough. */
2682 argv = alloca ((1 + len + 1) * sizeof (char *));
2684 /* Allocate a buffer to copy the value into while we split it into words
2685 and unquote it. We must use permanent storage for this because
2686 decode_switches may store pointers into the passed argument words. */
2687 p = xmalloc (2 * len);
2689 /* getopt will look at the arguments starting at ARGV[1].
2690 Prepend a spacer word. */
2691 argv[0] = 0;
2692 argc = 1;
2693 argv[argc] = p;
2694 while (*value != '\0')
2696 if (*value == '\\' && value[1] != '\0')
2697 ++value; /* Skip the backslash. */
2698 else if (isblank ((unsigned char)*value))
2700 /* End of the word. */
2701 *p++ = '\0';
2702 argv[++argc] = p;
2704 ++value;
2705 while (isblank ((unsigned char)*value));
2706 continue;
2708 *p++ = *value++;
2710 *p = '\0';
2711 argv[++argc] = 0;
2713 if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
2714 /* The first word doesn't start with a dash and isn't a variable
2715 definition. Add a dash and pass it along to decode_switches. We
2716 need permanent storage for this in case decode_switches saves
2717 pointers into the value. */
2718 argv[1] = xstrdup (concat (2, "-", argv[1]));
2720 /* Parse those words. */
2721 decode_switches (argc, argv, 1);
2724 /* Quote the string IN so that it will be interpreted as a single word with
2725 no magic by decode_env_switches; also double dollar signs to avoid
2726 variable expansion in make itself. Write the result into OUT, returning
2727 the address of the next character to be written.
2728 Allocating space for OUT twice the length of IN is always sufficient. */
2730 static char *
2731 quote_for_env (char *out, const char *in)
2733 while (*in != '\0')
2735 if (*in == '$')
2736 *out++ = '$';
2737 else if (isblank ((unsigned char)*in) || *in == '\\')
2738 *out++ = '\\';
2739 *out++ = *in++;
2742 return out;
2745 /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
2746 command switches. Include options with args if ALL is nonzero.
2747 Don't include options with the `no_makefile' flag set if MAKEFILE. */
2749 static const char *
2750 define_makeflags (int all, int makefile)
2752 const char ref[] = "$(MAKEOVERRIDES)";
2753 const char posixref[] = "$(-*-command-variables-*-)";
2754 const char evalref[] = "$(-*-eval-flags-*-)";
2755 const struct command_switch *cs;
2756 char *flagstring;
2757 register char *p;
2758 unsigned int words;
2759 struct variable *v;
2761 /* We will construct a linked list of `struct flag's describing
2762 all the flags which need to go in MAKEFLAGS. Then, once we
2763 know how many there are and their lengths, we can put them all
2764 together in a string. */
2766 struct flag
2768 struct flag *next;
2769 const struct command_switch *cs;
2770 const char *arg;
2772 struct flag *flags = 0;
2773 unsigned int flagslen = 0;
2774 #define ADD_FLAG(ARG, LEN) \
2775 do { \
2776 struct flag *new = alloca (sizeof (struct flag)); \
2777 new->cs = cs; \
2778 new->arg = (ARG); \
2779 new->next = flags; \
2780 flags = new; \
2781 if (new->arg == 0) \
2782 ++flagslen; /* Just a single flag letter. */ \
2783 else \
2784 /* " -x foo", plus space to expand "foo". */ \
2785 flagslen += 1 + 1 + 1 + 1 + (3 * (LEN)); \
2786 if (!short_option (cs->c)) \
2787 /* This switch has no single-letter version, so we use the long. */ \
2788 flagslen += 2 + strlen (cs->long_name); \
2789 } while (0)
2791 for (cs = switches; cs->c != '\0'; ++cs)
2792 if (cs->toenv && (!makefile || !cs->no_makefile))
2793 switch (cs->type)
2795 case ignore:
2796 break;
2798 case flag:
2799 case flag_off:
2800 if (!*(int *) cs->value_ptr == (cs->type == flag_off)
2801 && (cs->default_value == 0
2802 || *(int *) cs->value_ptr != *(int *) cs->default_value))
2803 ADD_FLAG (0, 0);
2804 break;
2806 case positive_int:
2807 if (all)
2809 if ((cs->default_value != 0
2810 && (*(unsigned int *) cs->value_ptr
2811 == *(unsigned int *) cs->default_value)))
2812 break;
2813 else if (cs->noarg_value != 0
2814 && (*(unsigned int *) cs->value_ptr ==
2815 *(unsigned int *) cs->noarg_value))
2816 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2817 else if (cs->c == 'j')
2818 /* Special case for `-j'. */
2819 ADD_FLAG ("1", 1);
2820 else
2822 char *buf = alloca (30);
2823 sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
2824 ADD_FLAG (buf, strlen (buf));
2827 break;
2829 #ifndef NO_FLOAT
2830 case floating:
2831 if (all)
2833 if (cs->default_value != 0
2834 && (*(double *) cs->value_ptr
2835 == *(double *) cs->default_value))
2836 break;
2837 else if (cs->noarg_value != 0
2838 && (*(double *) cs->value_ptr
2839 == *(double *) cs->noarg_value))
2840 ADD_FLAG ("", 0); /* Optional value omitted; see below. */
2841 else
2843 char *buf = alloca (100);
2844 sprintf (buf, "%g", *(double *) cs->value_ptr);
2845 ADD_FLAG (buf, strlen (buf));
2848 break;
2849 #endif
2851 case filename:
2852 case string:
2853 if (all)
2855 struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
2856 if (sl != 0)
2858 /* Add the elements in reverse order, because all the flags
2859 get reversed below; and the order matters for some
2860 switches (like -I). */
2861 unsigned int i = sl->idx;
2862 while (i-- > 0)
2863 ADD_FLAG (sl->list[i], strlen (sl->list[i]));
2866 break;
2868 default:
2869 abort ();
2872 /* Four more for the possible " -- ". */
2873 flagslen += 4 + sizeof (posixref) + sizeof (evalref);
2875 #undef ADD_FLAG
2877 /* Construct the value in FLAGSTRING.
2878 We allocate enough space for a preceding dash and trailing null. */
2879 flagstring = alloca (1 + flagslen + 1);
2880 memset (flagstring, '\0', 1 + flagslen + 1);
2881 p = flagstring;
2882 words = 1;
2883 *p++ = '-';
2884 while (flags != 0)
2886 /* Add the flag letter or name to the string. */
2887 if (short_option (flags->cs->c))
2888 *p++ = flags->cs->c;
2889 else
2891 if (*p != '-')
2893 *p++ = ' ';
2894 *p++ = '-';
2896 *p++ = '-';
2897 strcpy (p, flags->cs->long_name);
2898 p += strlen (p);
2900 if (flags->arg != 0)
2902 /* A flag that takes an optional argument which in this case is
2903 omitted is specified by ARG being "". We must distinguish
2904 because a following flag appended without an intervening " -"
2905 is considered the arg for the first. */
2906 if (flags->arg[0] != '\0')
2908 /* Add its argument too. */
2909 *p++ = !short_option (flags->cs->c) ? '=' : ' ';
2910 p = quote_for_env (p, flags->arg);
2912 ++words;
2913 /* Write a following space and dash, for the next flag. */
2914 *p++ = ' ';
2915 *p++ = '-';
2917 else if (!short_option (flags->cs->c))
2919 ++words;
2920 /* Long options must each go in their own word,
2921 so we write the following space and dash. */
2922 *p++ = ' ';
2923 *p++ = '-';
2925 flags = flags->next;
2928 /* Define MFLAGS before appending variable definitions. */
2930 if (p == &flagstring[1])
2931 /* No flags. */
2932 flagstring[0] = '\0';
2933 else if (p[-1] == '-')
2935 /* Kill the final space and dash. */
2936 p -= 2;
2937 *p = '\0';
2939 else
2940 /* Terminate the string. */
2941 *p = '\0';
2943 /* Since MFLAGS is not parsed for flags, there is no reason to
2944 override any makefile redefinition. */
2945 define_variable_cname ("MFLAGS", flagstring, o_env, 1);
2947 /* Write a reference to -*-eval-flags-*-, which contains all the --eval
2948 flag options. */
2949 if (eval_strings)
2951 if (p == &flagstring[1])
2952 /* No flags written, so elide the leading dash already written. */
2953 p = flagstring;
2954 else
2955 *p++ = ' ';
2956 memcpy (p, evalref, sizeof (evalref) - 1);
2957 p += sizeof (evalref) - 1;
2960 if (all && command_variables != 0)
2962 /* Now write a reference to $(MAKEOVERRIDES), which contains all the
2963 command-line variable definitions. */
2965 if (p == &flagstring[1])
2966 /* No flags written, so elide the leading dash already written. */
2967 p = flagstring;
2968 else
2970 /* Separate the variables from the switches with a "--" arg. */
2971 if (p[-1] != '-')
2973 /* We did not already write a trailing " -". */
2974 *p++ = ' ';
2975 *p++ = '-';
2977 /* There is a trailing " -"; fill it out to " -- ". */
2978 *p++ = '-';
2979 *p++ = ' ';
2982 /* Copy in the string. */
2983 if (posix_pedantic)
2985 memcpy (p, posixref, sizeof (posixref) - 1);
2986 p += sizeof (posixref) - 1;
2988 else
2990 memcpy (p, ref, sizeof (ref) - 1);
2991 p += sizeof (ref) - 1;
2994 else if (p == &flagstring[1])
2996 words = 0;
2997 --p;
2999 else if (p[-1] == '-')
3000 /* Kill the final space and dash. */
3001 p -= 2;
3002 /* Terminate the string. */
3003 *p = '\0';
3005 /* If there are switches, omit the leading dash unless it is a single long
3006 option with two leading dashes. */
3007 if (flagstring[0] == '-' && flagstring[1] != '-')
3008 ++flagstring;
3010 v = define_variable_cname ("MAKEFLAGS", flagstring,
3011 /* This used to use o_env, but that lost when a
3012 makefile defined MAKEFLAGS. Makefiles set
3013 MAKEFLAGS to add switches, but we still want
3014 to redefine its value with the full set of
3015 switches. Of course, an override or command
3016 definition will still take precedence. */
3017 o_file, 1);
3019 if (! all)
3020 /* The first time we are called, set MAKEFLAGS to always be exported.
3021 We should not do this again on the second call, because that is
3022 after reading makefiles which might have done `unexport MAKEFLAGS'. */
3023 v->export = v_export;
3025 return v->value;
3028 /* Print version information. */
3030 static void
3031 print_version (void)
3033 static int printed_version = 0;
3035 char *precede = print_data_base_flag ? "# " : "";
3037 if (printed_version)
3038 /* Do it only once. */
3039 return;
3041 printf ("%sGNU Make %s\n", precede, version_string);
3043 if (!remote_description || *remote_description == '\0')
3044 printf (_("%sBuilt for %s\n"), precede, make_host);
3045 else
3046 printf (_("%sBuilt for %s (%s)\n"),
3047 precede, make_host, remote_description);
3049 /* Print this untranslated. The coding standards recommend translating the
3050 (C) to the copyright symbol, but this string is going to change every
3051 year, and none of the rest of it should be translated (including the
3052 word "Copyright", so it hardly seems worth it. */
3054 printf ("%sCopyright (C) 2009 Free Software Foundation, Inc.\n", precede);
3056 printf (_("%sLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
3057 %sThis is free software: you are free to change and redistribute it.\n\
3058 %sThere is NO WARRANTY, to the extent permitted by law.\n"),
3059 precede, precede, precede);
3061 printed_version = 1;
3063 /* Flush stdout so the user doesn't have to wait to see the
3064 version information while things are thought about. */
3065 fflush (stdout);
3068 /* Print a bunch of information about this and that. */
3070 static void
3071 print_data_base ()
3073 time_t when;
3075 when = time ((time_t *) 0);
3076 printf (_("\n# Make data base, printed on %s"), ctime (&when));
3078 print_variable_data_base ();
3079 print_dir_data_base ();
3080 print_rule_data_base ();
3081 print_file_data_base ();
3082 print_vpath_data_base ();
3083 strcache_print_stats ("#");
3085 when = time ((time_t *) 0);
3086 printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
3089 static void
3090 clean_jobserver (int status)
3092 char token = '+';
3094 /* Sanity: have we written all our jobserver tokens back? If our
3095 exit status is 2 that means some kind of syntax error; we might not
3096 have written all our tokens so do that now. If tokens are left
3097 after any other error code, that's bad. */
3099 if (job_fds[0] != -1 && jobserver_tokens)
3101 if (status != 2)
3102 error (NILF,
3103 "INTERNAL: Exiting with %u jobserver tokens (should be 0)!",
3104 jobserver_tokens);
3105 else
3106 while (jobserver_tokens--)
3108 int r;
3110 EINTRLOOP (r, write (job_fds[1], &token, 1));
3111 if (r != 1)
3112 perror_with_name ("write", "");
3117 /* Sanity: If we're the master, were all the tokens written back? */
3119 if (master_job_slots)
3121 /* We didn't write one for ourself, so start at 1. */
3122 unsigned int tcnt = 1;
3124 /* Close the write side, so the read() won't hang. */
3125 close (job_fds[1]);
3127 while (read (job_fds[0], &token, 1) == 1)
3128 ++tcnt;
3130 if (tcnt != master_job_slots)
3131 error (NILF,
3132 "INTERNAL: Exiting with %u jobserver tokens available; should be %u!",
3133 tcnt, master_job_slots);
3135 close (job_fds[0]);
3137 /* Clean out jobserver_fds so we don't pass this information to any
3138 sub-makes. Also reset job_slots since it will be put on the command
3139 line, not in MAKEFLAGS. */
3140 job_slots = default_job_slots;
3141 if (jobserver_fds)
3143 free (jobserver_fds->list);
3144 free (jobserver_fds);
3145 jobserver_fds = 0;
3150 /* Exit with STATUS, cleaning up as necessary. */
3152 void
3153 die (int status)
3155 static char dying = 0;
3157 if (!dying)
3159 int err;
3161 dying = 1;
3163 if (print_version_flag)
3164 print_version ();
3166 /* Wait for children to die. */
3167 err = (status != 0);
3168 while (job_slots_used > 0)
3169 reap_children (1, err);
3171 /* Let the remote job module clean up its state. */
3172 remote_cleanup ();
3174 /* Remove the intermediate files. */
3175 remove_intermediates (0);
3177 if (print_data_base_flag)
3178 print_data_base ();
3180 verify_file_data_base ();
3182 clean_jobserver (status);
3184 /* Try to move back to the original directory. This is essential on
3185 MS-DOS (where there is really only one process), and on Unix it
3186 puts core files in the original directory instead of the -C
3187 directory. Must wait until after remove_intermediates(), or unlinks
3188 of relative pathnames fail. */
3189 if (directory_before_chdir != 0)
3191 /* If it fails we don't care: shut up GCC. */
3192 int _x;
3193 _x = chdir (directory_before_chdir);
3196 log_working_directory (0);
3199 exit (status);
3202 /* Write a message indicating that we've just entered or
3203 left (according to ENTERING) the current directory. */
3205 void
3206 log_working_directory (int entering)
3208 static int entered = 0;
3210 /* Print nothing without the flag. Don't print the entering message
3211 again if we already have. Don't print the leaving message if we
3212 haven't printed the entering message. */
3213 if (! print_directory_flag || entering == entered)
3214 return;
3216 entered = entering;
3218 if (print_data_base_flag)
3219 fputs ("# ", stdout);
3221 /* Use entire sentences to give the translators a fighting chance. */
3223 if (makelevel == 0)
3224 if (starting_directory == 0)
3225 if (entering)
3226 printf (_("%s: Entering an unknown directory\n"), program);
3227 else
3228 printf (_("%s: Leaving an unknown directory\n"), program);
3229 else
3230 if (entering)
3231 printf (_("%s: Entering directory `%s'\n"),
3232 program, starting_directory);
3233 else
3234 printf (_("%s: Leaving directory `%s'\n"),
3235 program, starting_directory);
3236 else
3237 if (starting_directory == 0)
3238 if (entering)
3239 printf (_("%s[%u]: Entering an unknown directory\n"),
3240 program, makelevel);
3241 else
3242 printf (_("%s[%u]: Leaving an unknown directory\n"),
3243 program, makelevel);
3244 else
3245 if (entering)
3246 printf (_("%s[%u]: Entering directory `%s'\n"),
3247 program, makelevel, starting_directory);
3248 else
3249 printf (_("%s[%u]: Leaving directory `%s'\n"),
3250 program, makelevel, starting_directory);
3252 /* Flush stdout to be sure this comes before any stderr output. */
3253 fflush (stdout);