[2579] | 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,
|
---|
| 4 | 2010 Free Software Foundation, Inc.
|
---|
| 5 | This file is part of GNU Make.
|
---|
| 6 |
|
---|
| 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.
|
---|
| 11 |
|
---|
| 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.
|
---|
| 15 |
|
---|
| 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/>. */
|
---|
| 18 |
|
---|
| 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"
|
---|
| 28 |
|
---|
| 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
|
---|
| 46 |
|
---|
| 47 | #ifdef _AMIGA
|
---|
| 48 | int __stack = 20000; /* Make sure we have 20K of stack space */
|
---|
| 49 | #endif
|
---|
| 50 |
|
---|
| 51 | void init_dir (void);
|
---|
| 52 | void remote_setup (void);
|
---|
| 53 | void remote_cleanup (void);
|
---|
| 54 | RETSIGTYPE fatal_error_signal (int sig);
|
---|
| 55 |
|
---|
| 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);
|
---|
| 60 |
|
---|
| 61 | void verify_file_data_base (void);
|
---|
| 62 |
|
---|
| 63 | #if defined HAVE_WAITPID || defined HAVE_WAIT3
|
---|
| 64 | # define HAVE_WAIT_NOHANG
|
---|
| 65 | #endif
|
---|
| 66 |
|
---|
| 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
|
---|
| 76 |
|
---|
| 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);
|
---|
| 85 |
|
---|
| 86 | |
---|
| 87 |
|
---|
| 88 | /* The structure that describes an accepted command switch. */
|
---|
| 89 |
|
---|
| 90 | struct command_switch
|
---|
| 91 | {
|
---|
| 92 | int c; /* The switch character. */
|
---|
| 93 |
|
---|
| 94 | enum /* Type of the value. */
|
---|
| 95 | {
|
---|
| 96 | flag, /* Turn int flag on. */
|
---|
| 97 | flag_off, /* Turn int flag off. */
|
---|
| 98 | string, /* One string per switch. */
|
---|
| 99 | filename, /* A string containing a file name. */
|
---|
| 100 | positive_int, /* A positive integer. */
|
---|
| 101 | floating, /* A floating-point number (double). */
|
---|
| 102 | ignore /* Ignored. */
|
---|
| 103 | } type;
|
---|
| 104 |
|
---|
| 105 | void *value_ptr; /* Pointer to the value-holding variable. */
|
---|
| 106 |
|
---|
| 107 | unsigned int env:1; /* Can come from MAKEFLAGS. */
|
---|
| 108 | unsigned int toenv:1; /* Should be put in MAKEFLAGS. */
|
---|
| 109 | unsigned int no_makefile:1; /* Don't propagate when remaking makefiles. */
|
---|
| 110 |
|
---|
| 111 | const void *noarg_value; /* Pointer to value used if no arg given. */
|
---|
| 112 | const void *default_value; /* Pointer to default value. */
|
---|
| 113 |
|
---|
| 114 | char *long_name; /* Long option name. */
|
---|
| 115 | };
|
---|
| 116 |
|
---|
| 117 | /* True if C is a switch value that corresponds to a short option. */
|
---|
| 118 |
|
---|
| 119 | #define short_option(c) ((c) <= CHAR_MAX)
|
---|
| 120 |
|
---|
| 121 | /* The structure used to hold the list of strings given
|
---|
| 122 | in command switches of a type that takes string arguments. */
|
---|
| 123 |
|
---|
| 124 | struct stringlist
|
---|
| 125 | {
|
---|
| 126 | const char **list; /* Nil-terminated list of strings. */
|
---|
| 127 | unsigned int idx; /* Index into above. */
|
---|
| 128 | unsigned int max; /* Number of pointers allocated. */
|
---|
| 129 | };
|
---|
| 130 |
|
---|
| 131 |
|
---|
| 132 | /* The recognized command switches. */
|
---|
| 133 |
|
---|
| 134 | /* Nonzero means do not print commands to be executed (-s). */
|
---|
| 135 |
|
---|
| 136 | int silent_flag;
|
---|
| 137 |
|
---|
| 138 | /* Nonzero means just touch the files
|
---|
| 139 | that would appear to need remaking (-t) */
|
---|
| 140 |
|
---|
| 141 | int touch_flag;
|
---|
| 142 |
|
---|
| 143 | /* Nonzero means just print what commands would need to be executed,
|
---|
| 144 | don't actually execute them (-n). */
|
---|
| 145 |
|
---|
| 146 | int just_print_flag;
|
---|
| 147 |
|
---|
| 148 | /* Print debugging info (--debug). */
|
---|
| 149 |
|
---|
| 150 | static struct stringlist *db_flags;
|
---|
| 151 | static int debug_flag = 0;
|
---|
| 152 |
|
---|
| 153 | int db_level = 0;
|
---|
| 154 |
|
---|
| 155 | /* Output level (--verbosity). */
|
---|
| 156 |
|
---|
| 157 | static struct stringlist *verbosity_flags;
|
---|
| 158 |
|
---|
| 159 | #ifdef WINDOWS32
|
---|
| 160 | /* Suspend make in main for a short time to allow debugger to attach */
|
---|
| 161 |
|
---|
| 162 | int suspend_flag = 0;
|
---|
| 163 | #endif
|
---|
| 164 |
|
---|
| 165 | /* Environment variables override makefile definitions. */
|
---|
| 166 |
|
---|
| 167 | int env_overrides = 0;
|
---|
| 168 |
|
---|
| 169 | /* Nonzero means ignore status codes returned by commands
|
---|
| 170 | executed to remake files. Just treat them all as successful (-i). */
|
---|
| 171 |
|
---|
| 172 | int ignore_errors_flag = 0;
|
---|
| 173 |
|
---|
| 174 | /* Nonzero means don't remake anything, just print the data base
|
---|
| 175 | that results from reading the makefile (-p). */
|
---|
| 176 |
|
---|
| 177 | int print_data_base_flag = 0;
|
---|
| 178 |
|
---|
| 179 | /* Nonzero means don't remake anything; just return a nonzero status
|
---|
| 180 | if the specified targets are not up to date (-q). */
|
---|
| 181 |
|
---|
| 182 | int question_flag = 0;
|
---|
| 183 |
|
---|
| 184 | /* Nonzero means do not use any of the builtin rules (-r) / variables (-R). */
|
---|
| 185 |
|
---|
| 186 | int no_builtin_rules_flag = 0;
|
---|
| 187 | int no_builtin_variables_flag = 0;
|
---|
| 188 |
|
---|
| 189 | /* Nonzero means keep going even if remaking some file fails (-k). */
|
---|
| 190 |
|
---|
| 191 | int keep_going_flag;
|
---|
| 192 | int default_keep_going_flag = 0;
|
---|
| 193 |
|
---|
| 194 | /* Nonzero means check symlink mtimes. */
|
---|
| 195 |
|
---|
| 196 | int check_symlink_flag = 0;
|
---|
| 197 |
|
---|
| 198 | /* Nonzero means print directory before starting and when done (-w). */
|
---|
| 199 |
|
---|
| 200 | int print_directory_flag = 0;
|
---|
| 201 |
|
---|
| 202 | /* Nonzero means ignore print_directory_flag and never print the directory.
|
---|
| 203 | This is necessary because print_directory_flag is set implicitly. */
|
---|
| 204 |
|
---|
| 205 | int inhibit_print_directory_flag = 0;
|
---|
| 206 |
|
---|
| 207 | /* Nonzero means print version information. */
|
---|
| 208 |
|
---|
| 209 | int print_version_flag = 0;
|
---|
| 210 |
|
---|
| 211 | /* List of makefiles given with -f switches. */
|
---|
| 212 |
|
---|
| 213 | static struct stringlist *makefiles = 0;
|
---|
| 214 |
|
---|
| 215 | /* Size of the stack when we started. */
|
---|
| 216 |
|
---|
| 217 | #ifdef SET_STACK_SIZE
|
---|
| 218 | struct rlimit stack_limit;
|
---|
| 219 | #endif
|
---|
| 220 |
|
---|
| 221 |
|
---|
| 222 | /* Number of job slots (commands that can be run at once). */
|
---|
| 223 |
|
---|
| 224 | unsigned int job_slots = 1;
|
---|
| 225 | unsigned int default_job_slots = 1;
|
---|
| 226 | static unsigned int master_job_slots = 0;
|
---|
| 227 |
|
---|
| 228 | /* Value of job_slots that means no limit. */
|
---|
| 229 |
|
---|
| 230 | static unsigned int inf_jobs = 0;
|
---|
| 231 |
|
---|
| 232 | /* File descriptors for the jobs pipe. */
|
---|
| 233 |
|
---|
| 234 | static struct stringlist *jobserver_fds = 0;
|
---|
| 235 |
|
---|
| 236 | int job_fds[2] = { -1, -1 };
|
---|
| 237 | int job_rfd = -1;
|
---|
| 238 |
|
---|
| 239 | /* Maximum load average at which multiple jobs will be run.
|
---|
| 240 | Negative values mean unlimited, while zero means limit to
|
---|
| 241 | zero load (which could be useful to start infinite jobs remotely
|
---|
| 242 | but one at a time locally). */
|
---|
| 243 | #ifndef NO_FLOAT
|
---|
| 244 | double max_load_average = -1.0;
|
---|
| 245 | double default_load_average = -1.0;
|
---|
| 246 | #else
|
---|
| 247 | int max_load_average = -1;
|
---|
| 248 | int default_load_average = -1;
|
---|
| 249 | #endif
|
---|
| 250 |
|
---|
| 251 | /* List of directories given with -C switches. */
|
---|
| 252 |
|
---|
| 253 | static struct stringlist *directories = 0;
|
---|
| 254 |
|
---|
| 255 | /* List of include directories given with -I switches. */
|
---|
| 256 |
|
---|
| 257 | static struct stringlist *include_directories = 0;
|
---|
| 258 |
|
---|
| 259 | /* List of files given with -o switches. */
|
---|
| 260 |
|
---|
| 261 | static struct stringlist *old_files = 0;
|
---|
| 262 |
|
---|
| 263 | /* List of files given with -W switches. */
|
---|
| 264 |
|
---|
| 265 | static struct stringlist *new_files = 0;
|
---|
| 266 |
|
---|
| 267 | /* List of strings to be eval'd. */
|
---|
| 268 | static struct stringlist *eval_strings = 0;
|
---|
| 269 |
|
---|
| 270 | /* If nonzero, we should just print usage and exit. */
|
---|
| 271 |
|
---|
| 272 | static int print_usage_flag = 0;
|
---|
| 273 |
|
---|
| 274 | /* If nonzero, we should print a warning message
|
---|
| 275 | for each reference to an undefined variable. */
|
---|
| 276 |
|
---|
| 277 | int warn_undefined_variables_flag;
|
---|
| 278 |
|
---|
| 279 | /* If nonzero, always build all targets, regardless of whether
|
---|
| 280 | they appear out of date or not. */
|
---|
| 281 |
|
---|
| 282 | static int always_make_set = 0;
|
---|
| 283 | int always_make_flag = 0;
|
---|
| 284 |
|
---|
| 285 | /* If nonzero, we're in the "try to rebuild makefiles" phase. */
|
---|
| 286 |
|
---|
| 287 | int rebuilding_makefiles = 0;
|
---|
| 288 |
|
---|
| 289 | /* Remember the original value of the SHELL variable, from the environment. */
|
---|
| 290 |
|
---|
| 291 | struct variable shell_var;
|
---|
| 292 |
|
---|
| 293 | /* This character introduces a command: it's the first char on the line. */
|
---|
| 294 |
|
---|
| 295 | char cmd_prefix = '\t';
|
---|
| 296 |
|
---|
| 297 | |
---|
| 298 |
|
---|
| 299 | /* The usage output. We write it this way to make life easier for the
|
---|
| 300 | translators, especially those trying to translate to right-to-left
|
---|
| 301 | languages like Hebrew. */
|
---|
| 302 |
|
---|
| 303 | static const char *const usage[] =
|
---|
| 304 | {
|
---|
| 305 | N_("Options:\n"),
|
---|
| 306 | N_("\
|
---|
| 307 | -b, -m Ignored for compatibility.\n"),
|
---|
| 308 | N_("\
|
---|
| 309 | -B, --always-make Unconditionally make all targets.\n"),
|
---|
| 310 | N_("\
|
---|
| 311 | -C DIRECTORY, --directory=DIRECTORY\n\
|
---|
| 312 | Change to DIRECTORY before doing anything.\n"),
|
---|
| 313 | N_("\
|
---|
| 314 | -d Print lots of debugging information.\n"),
|
---|
| 315 | N_("\
|
---|
| 316 | --debug[=FLAGS] Print various types of debugging information.\n"),
|
---|
| 317 | N_("\
|
---|
| 318 | -e, --environment-overrides\n\
|
---|
| 319 | Environment variables override makefiles.\n"),
|
---|
| 320 | N_("\
|
---|
| 321 | --eval=STRING Evaluate STRING as a makefile statement.\n"),
|
---|
| 322 | N_("\
|
---|
| 323 | -f FILE, --file=FILE, --makefile=FILE\n\
|
---|
| 324 | Read FILE as a makefile.\n"),
|
---|
| 325 | N_("\
|
---|
| 326 | -h, --help Print this message and exit.\n"),
|
---|
| 327 | N_("\
|
---|
| 328 | -i, --ignore-errors Ignore errors from recipes.\n"),
|
---|
| 329 | N_("\
|
---|
| 330 | -I DIRECTORY, --include-dir=DIRECTORY\n\
|
---|
| 331 | Search DIRECTORY for included makefiles.\n"),
|
---|
| 332 | N_("\
|
---|
| 333 | -j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.\n"),
|
---|
| 334 | N_("\
|
---|
| 335 | -k, --keep-going Keep going when some targets can't be made.\n"),
|
---|
| 336 | N_("\
|
---|
| 337 | -l [N], --load-average[=N], --max-load[=N]\n\
|
---|
| 338 | Don't start multiple jobs unless load is below N.\n"),
|
---|
| 339 | N_("\
|
---|
| 340 | -L, --check-symlink-times Use the latest mtime between symlinks and target.\n"),
|
---|
| 341 | N_("\
|
---|
| 342 | -n, --just-print, --dry-run, --recon\n\
|
---|
| 343 | Don't actually run any recipe; just print them.\n"),
|
---|
| 344 | N_("\
|
---|
| 345 | -o FILE, --old-file=FILE, --assume-old=FILE\n\
|
---|
| 346 | Consider FILE to be very old and don't remake it.\n"),
|
---|
| 347 | N_("\
|
---|
| 348 | -p, --print-data-base Print make's internal database.\n"),
|
---|
| 349 | N_("\
|
---|
| 350 | -q, --question Run no recipe; exit status says if up to date.\n"),
|
---|
| 351 | N_("\
|
---|
| 352 | -r, --no-builtin-rules Disable the built-in implicit rules.\n"),
|
---|
| 353 | N_("\
|
---|
| 354 | -R, --no-builtin-variables Disable the built-in variable settings.\n"),
|
---|
| 355 | N_("\
|
---|
| 356 | -s, --silent, --quiet Don't echo recipes.\n"),
|
---|
| 357 | N_("\
|
---|
| 358 | -S, --no-keep-going, --stop\n\
|
---|
| 359 | Turns off -k.\n"),
|
---|
| 360 | N_("\
|
---|
| 361 | -t, --touch Touch targets instead of remaking them.\n"),
|
---|
| 362 | N_("\
|
---|
| 363 | -v, --version Print the version number of make and exit.\n"),
|
---|
| 364 | N_("\
|
---|
| 365 | -w, --print-directory Print the current directory.\n"),
|
---|
| 366 | N_("\
|
---|
| 367 | --no-print-directory Turn off -w, even if it was turned on implicitly.\n"),
|
---|
| 368 | N_("\
|
---|
| 369 | -W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE\n\
|
---|
| 370 | Consider FILE to be infinitely new.\n"),
|
---|
| 371 | N_("\
|
---|
| 372 | --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
|
---|
| 373 | NULL
|
---|
| 374 | };
|
---|
| 375 |
|
---|
| 376 | /* The table of command switches. */
|
---|
| 377 |
|
---|
| 378 | static const struct command_switch switches[] =
|
---|
| 379 | {
|
---|
| 380 | { 'b', ignore, 0, 0, 0, 0, 0, 0, 0 },
|
---|
| 381 | { 'B', flag, &always_make_set, 1, 1, 0, 0, 0, "always-make" },
|
---|
| 382 | { 'C', filename, &directories, 0, 0, 0, 0, 0, "directory" },
|
---|
| 383 | { 'd', flag, &debug_flag, 1, 1, 0, 0, 0, 0 },
|
---|
| 384 | { CHAR_MAX+1, string, &db_flags, 1, 1, 0, "basic", 0, "debug" },
|
---|
| 385 | #ifdef WINDOWS32
|
---|
| 386 | { 'D', flag, &suspend_flag, 1, 1, 0, 0, 0, "suspend-for-debug" },
|
---|
| 387 | #endif
|
---|
| 388 | { 'e', flag, &env_overrides, 1, 1, 0, 0, 0, "environment-overrides", },
|
---|
| 389 | { 'f', filename, &makefiles, 0, 0, 0, 0, 0, "file" },
|
---|
| 390 | { 'h', flag, &print_usage_flag, 0, 0, 0, 0, 0, "help" },
|
---|
| 391 | { 'i', flag, &ignore_errors_flag, 1, 1, 0, 0, 0, "ignore-errors" },
|
---|
| 392 | { 'I', filename, &include_directories, 1, 1, 0, 0, 0,
|
---|
| 393 | "include-dir" },
|
---|
| 394 | { 'j', positive_int, &job_slots, 1, 1, 0, &inf_jobs, &default_job_slots,
|
---|
| 395 | "jobs" },
|
---|
| 396 | { CHAR_MAX+2, string, &jobserver_fds, 1, 1, 0, 0, 0, "jobserver-fds" },
|
---|
| 397 | { 'k', flag, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
|
---|
| 398 | "keep-going" },
|
---|
| 399 | #ifndef NO_FLOAT
|
---|
| 400 | { 'l', floating, &max_load_average, 1, 1, 0, &default_load_average,
|
---|
| 401 | &default_load_average, "load-average" },
|
---|
| 402 | #else
|
---|
| 403 | { 'l', positive_int, &max_load_average, 1, 1, 0, &default_load_average,
|
---|
| 404 | &default_load_average, "load-average" },
|
---|
| 405 | #endif
|
---|
| 406 | { 'L', flag, &check_symlink_flag, 1, 1, 0, 0, 0, "check-symlink-times" },
|
---|
| 407 | { 'm', ignore, 0, 0, 0, 0, 0, 0, 0 },
|
---|
| 408 | { 'n', flag, &just_print_flag, 1, 1, 1, 0, 0, "just-print" },
|
---|
| 409 | { 'o', filename, &old_files, 0, 0, 0, 0, 0, "old-file" },
|
---|
| 410 | { 'p', flag, &print_data_base_flag, 1, 1, 0, 0, 0, "print-data-base" },
|
---|
| 411 | { 'q', flag, &question_flag, 1, 1, 1, 0, 0, "question" },
|
---|
| 412 | { 'r', flag, &no_builtin_rules_flag, 1, 1, 0, 0, 0, "no-builtin-rules" },
|
---|
| 413 | { 'R', flag, &no_builtin_variables_flag, 1, 1, 0, 0, 0,
|
---|
| 414 | "no-builtin-variables" },
|
---|
| 415 | { 's', flag, &silent_flag, 1, 1, 0, 0, 0, "silent" },
|
---|
| 416 | { 'S', flag_off, &keep_going_flag, 1, 1, 0, 0, &default_keep_going_flag,
|
---|
| 417 | "no-keep-going" },
|
---|
| 418 | { 't', flag, &touch_flag, 1, 1, 1, 0, 0, "touch" },
|
---|
| 419 | { 'v', flag, &print_version_flag, 1, 1, 0, 0, 0, "version" },
|
---|
| 420 | { CHAR_MAX+3, string, &verbosity_flags, 1, 1, 0, 0, 0,
|
---|
| 421 | "verbosity" },
|
---|
| 422 | { 'w', flag, &print_directory_flag, 1, 1, 0, 0, 0, "print-directory" },
|
---|
| 423 | { CHAR_MAX+4, flag, &inhibit_print_directory_flag, 1, 1, 0, 0, 0,
|
---|
| 424 | "no-print-directory" },
|
---|
| 425 | { 'W', filename, &new_files, 0, 0, 0, 0, 0, "what-if" },
|
---|
| 426 | { CHAR_MAX+5, flag, &warn_undefined_variables_flag, 1, 1, 0, 0, 0,
|
---|
| 427 | "warn-undefined-variables" },
|
---|
| 428 | { CHAR_MAX+6, string, &eval_strings, 1, 0, 0, 0, 0, "eval" },
|
---|
| 429 | { 0, 0, 0, 0, 0, 0, 0, 0, 0 }
|
---|
| 430 | };
|
---|
| 431 |
|
---|
| 432 | /* Secondary long names for options. */
|
---|
| 433 |
|
---|
| 434 | static struct option long_option_aliases[] =
|
---|
| 435 | {
|
---|
| 436 | { "quiet", no_argument, 0, 's' },
|
---|
| 437 | { "stop", no_argument, 0, 'S' },
|
---|
| 438 | { "new-file", required_argument, 0, 'W' },
|
---|
| 439 | { "assume-new", required_argument, 0, 'W' },
|
---|
| 440 | { "assume-old", required_argument, 0, 'o' },
|
---|
| 441 | { "max-load", optional_argument, 0, 'l' },
|
---|
| 442 | { "dry-run", no_argument, 0, 'n' },
|
---|
| 443 | { "recon", no_argument, 0, 'n' },
|
---|
| 444 | { "makefile", required_argument, 0, 'f' },
|
---|
| 445 | };
|
---|
| 446 |
|
---|
| 447 | /* List of goal targets. */
|
---|
| 448 |
|
---|
| 449 | static struct dep *goals, *lastgoal;
|
---|
| 450 |
|
---|
| 451 | /* List of variables which were defined on the command line
|
---|
| 452 | (or, equivalently, in MAKEFLAGS). */
|
---|
| 453 |
|
---|
| 454 | struct command_variable
|
---|
| 455 | {
|
---|
| 456 | struct command_variable *next;
|
---|
| 457 | struct variable *variable;
|
---|
| 458 | };
|
---|
| 459 | static struct command_variable *command_variables;
|
---|
| 460 | |
---|
| 461 |
|
---|
| 462 | /* The name we were invoked with. */
|
---|
| 463 |
|
---|
| 464 | char *program;
|
---|
| 465 |
|
---|
| 466 | /* Our current directory before processing any -C options. */
|
---|
| 467 |
|
---|
| 468 | char *directory_before_chdir;
|
---|
| 469 |
|
---|
| 470 | /* Our current directory after processing all -C options. */
|
---|
| 471 |
|
---|
| 472 | char *starting_directory;
|
---|
| 473 |
|
---|
| 474 | /* Value of the MAKELEVEL variable at startup (or 0). */
|
---|
| 475 |
|
---|
| 476 | unsigned int makelevel;
|
---|
| 477 |
|
---|
| 478 | /* Pointer to the value of the .DEFAULT_GOAL special variable.
|
---|
| 479 | The value will be the name of the goal to remake if the command line
|
---|
| 480 | does not override it. It can be set by the makefile, or else it's
|
---|
| 481 | the first target defined in the makefile whose name does not start
|
---|
| 482 | with '.'. */
|
---|
| 483 |
|
---|
| 484 | struct variable * default_goal_var;
|
---|
| 485 |
|
---|
| 486 | /* Pointer to structure for the file .DEFAULT
|
---|
| 487 | whose commands are used for any file that has none of its own.
|
---|
| 488 | This is zero if the makefiles do not define .DEFAULT. */
|
---|
| 489 |
|
---|
| 490 | struct file *default_file;
|
---|
| 491 |
|
---|
| 492 | /* Nonzero if we have seen the magic `.POSIX' target.
|
---|
| 493 | This turns on pedantic compliance with POSIX.2. */
|
---|
| 494 |
|
---|
| 495 | int posix_pedantic;
|
---|
| 496 |
|
---|
| 497 | /* Nonzero if we have seen the '.SECONDEXPANSION' target.
|
---|
| 498 | This turns on secondary expansion of prerequisites. */
|
---|
| 499 |
|
---|
| 500 | int second_expansion;
|
---|
| 501 |
|
---|
| 502 | /* Nonzero if we have seen the '.ONESHELL' target.
|
---|
| 503 | This causes the entire recipe to be handed to SHELL
|
---|
| 504 | as a single string, potentially containing newlines. */
|
---|
| 505 |
|
---|
| 506 | int one_shell;
|
---|
| 507 |
|
---|
| 508 | /* Nonzero if we have seen the `.NOTPARALLEL' target.
|
---|
| 509 | This turns off parallel builds for this invocation of make. */
|
---|
| 510 |
|
---|
| 511 | int not_parallel;
|
---|
| 512 |
|
---|
| 513 | /* Nonzero if some rule detected clock skew; we keep track so (a) we only
|
---|
| 514 | print one warning about it during the run, and (b) we can print a final
|
---|
| 515 | warning at the end of the run. */
|
---|
| 516 |
|
---|
| 517 | int clock_skew_detected;
|
---|
| 518 | |
---|
| 519 |
|
---|
| 520 | /* Mask of signals that are being caught with fatal_error_signal. */
|
---|
| 521 |
|
---|
| 522 | #ifdef POSIX
|
---|
| 523 | sigset_t fatal_signal_set;
|
---|
| 524 | #else
|
---|
| 525 | # ifdef HAVE_SIGSETMASK
|
---|
| 526 | int fatal_signal_mask;
|
---|
| 527 | # endif
|
---|
| 528 | #endif
|
---|
| 529 |
|
---|
| 530 | #if !HAVE_DECL_BSD_SIGNAL && !defined bsd_signal
|
---|
| 531 | # if !defined HAVE_SIGACTION
|
---|
| 532 | # define bsd_signal signal
|
---|
| 533 | # else
|
---|
| 534 | typedef RETSIGTYPE (*bsd_signal_ret_t) (int);
|
---|
| 535 |
|
---|
| 536 | static bsd_signal_ret_t
|
---|
| 537 | bsd_signal (int sig, bsd_signal_ret_t func)
|
---|
| 538 | {
|
---|
| 539 | struct sigaction act, oact;
|
---|
| 540 | act.sa_handler = func;
|
---|
| 541 | act.sa_flags = SA_RESTART;
|
---|
| 542 | sigemptyset (&act.sa_mask);
|
---|
| 543 | sigaddset (&act.sa_mask, sig);
|
---|
| 544 | if (sigaction (sig, &act, &oact) != 0)
|
---|
| 545 | return SIG_ERR;
|
---|
| 546 | return oact.sa_handler;
|
---|
| 547 | }
|
---|
| 548 | # endif
|
---|
| 549 | #endif
|
---|
| 550 |
|
---|
| 551 | static void
|
---|
| 552 | initialize_global_hash_tables (void)
|
---|
| 553 | {
|
---|
| 554 | init_hash_global_variable_set ();
|
---|
| 555 | strcache_init ();
|
---|
| 556 | init_hash_files ();
|
---|
| 557 | hash_init_directories ();
|
---|
| 558 | hash_init_function_table ();
|
---|
| 559 | }
|
---|
| 560 |
|
---|
| 561 | static const char *
|
---|
| 562 | expand_command_line_file (char *name)
|
---|
| 563 | {
|
---|
| 564 | const char *cp;
|
---|
| 565 | char *expanded = 0;
|
---|
| 566 |
|
---|
| 567 | if (name[0] == '\0')
|
---|
| 568 | fatal (NILF, _("empty string invalid as file name"));
|
---|
| 569 |
|
---|
| 570 | if (name[0] == '~')
|
---|
| 571 | {
|
---|
| 572 | expanded = tilde_expand (name);
|
---|
| 573 | if (expanded != 0)
|
---|
| 574 | name = expanded;
|
---|
| 575 | }
|
---|
| 576 |
|
---|
| 577 | /* This is also done in parse_file_seq, so this is redundant
|
---|
| 578 | for names read from makefiles. It is here for names passed
|
---|
| 579 | on the command line. */
|
---|
| 580 | while (name[0] == '.' && name[1] == '/' && name[2] != '\0')
|
---|
| 581 | {
|
---|
| 582 | name += 2;
|
---|
| 583 | while (*name == '/')
|
---|
| 584 | /* Skip following slashes: ".//foo" is "foo", not "/foo". */
|
---|
| 585 | ++name;
|
---|
| 586 | }
|
---|
| 587 |
|
---|
| 588 | if (*name == '\0')
|
---|
| 589 | {
|
---|
| 590 | /* It was all slashes! Move back to the dot and truncate
|
---|
| 591 | it after the first slash, so it becomes just "./". */
|
---|
| 592 | do
|
---|
| 593 | --name;
|
---|
| 594 | while (name[0] != '.');
|
---|
| 595 | name[2] = '\0';
|
---|
| 596 | }
|
---|
| 597 |
|
---|
| 598 | cp = strcache_add (name);
|
---|
| 599 |
|
---|
| 600 | if (expanded)
|
---|
| 601 | free (expanded);
|
---|
| 602 |
|
---|
| 603 | return cp;
|
---|
| 604 | }
|
---|
| 605 |
|
---|
| 606 | /* Toggle -d on receipt of SIGUSR1. */
|
---|
| 607 |
|
---|
| 608 | #ifdef SIGUSR1
|
---|
| 609 | static RETSIGTYPE
|
---|
| 610 | debug_signal_handler (int sig UNUSED)
|
---|
| 611 | {
|
---|
| 612 | db_level = db_level ? DB_NONE : DB_BASIC;
|
---|
| 613 | }
|
---|
| 614 | #endif
|
---|
| 615 |
|
---|
| 616 | static void
|
---|
| 617 | decode_debug_flags (void)
|
---|
| 618 | {
|
---|
| 619 | const char **pp;
|
---|
| 620 |
|
---|
| 621 | if (debug_flag)
|
---|
| 622 | db_level = DB_ALL;
|
---|
| 623 |
|
---|
| 624 | if (!db_flags)
|
---|
| 625 | return;
|
---|
| 626 |
|
---|
| 627 | for (pp=db_flags->list; *pp; ++pp)
|
---|
| 628 | {
|
---|
| 629 | const char *p = *pp;
|
---|
| 630 |
|
---|
| 631 | while (1)
|
---|
| 632 | {
|
---|
| 633 | switch (tolower (p[0]))
|
---|
| 634 | {
|
---|
| 635 | case 'a':
|
---|
| 636 | db_level |= DB_ALL;
|
---|
| 637 | break;
|
---|
| 638 | case 'b':
|
---|
| 639 | db_level |= DB_BASIC;
|
---|
| 640 | break;
|
---|
| 641 | case 'i':
|
---|
| 642 | db_level |= DB_BASIC | DB_IMPLICIT;
|
---|
| 643 | break;
|
---|
| 644 | case 'j':
|
---|
| 645 | db_level |= DB_JOBS;
|
---|
| 646 | break;
|
---|
| 647 | case 'm':
|
---|
| 648 | db_level |= DB_BASIC | DB_MAKEFILES;
|
---|
| 649 | break;
|
---|
| 650 | case 'v':
|
---|
| 651 | db_level |= DB_BASIC | DB_VERBOSE;
|
---|
| 652 | break;
|
---|
| 653 | default:
|
---|
| 654 | fatal (NILF, _("unknown debug level specification `%s'"), p);
|
---|
| 655 | }
|
---|
| 656 |
|
---|
| 657 | while (*(++p) != '\0')
|
---|
| 658 | if (*p == ',' || *p == ' ')
|
---|
| 659 | break;
|
---|
| 660 |
|
---|
| 661 | if (*p == '\0')
|
---|
| 662 | break;
|
---|
| 663 |
|
---|
| 664 | ++p;
|
---|
| 665 | }
|
---|
| 666 | }
|
---|
| 667 | }
|
---|
| 668 |
|
---|
| 669 | #ifdef WINDOWS32
|
---|
| 670 | /*
|
---|
| 671 | * HANDLE runtime exceptions by avoiding a requestor on the GUI. Capture
|
---|
| 672 | * exception and print it to stderr instead.
|
---|
| 673 | *
|
---|
| 674 | * If ! DB_VERBOSE, just print a simple message and exit.
|
---|
| 675 | * If DB_VERBOSE, print a more verbose message.
|
---|
| 676 | * If compiled for DEBUG, let exception pass through to GUI so that
|
---|
| 677 | * debuggers can attach.
|
---|
| 678 | */
|
---|
| 679 | LONG WINAPI
|
---|
| 680 | handle_runtime_exceptions( struct _EXCEPTION_POINTERS *exinfo )
|
---|
| 681 | {
|
---|
| 682 | PEXCEPTION_RECORD exrec = exinfo->ExceptionRecord;
|
---|
| 683 | LPSTR cmdline = GetCommandLine();
|
---|
| 684 | LPSTR prg = strtok(cmdline, " ");
|
---|
| 685 | CHAR errmsg[1024];
|
---|
| 686 | #ifdef USE_EVENT_LOG
|
---|
| 687 | HANDLE hEventSource;
|
---|
| 688 | LPTSTR lpszStrings[1];
|
---|
| 689 | #endif
|
---|
| 690 |
|
---|
| 691 | if (! ISDB (DB_VERBOSE))
|
---|
| 692 | {
|
---|
| 693 | sprintf(errmsg,
|
---|
| 694 | _("%s: Interrupt/Exception caught (code = 0x%lx, addr = 0x%p)\n"),
|
---|
| 695 | prg, exrec->ExceptionCode, exrec->ExceptionAddress);
|
---|
| 696 | fprintf(stderr, errmsg);
|
---|
| 697 | exit(255);
|
---|
| 698 | }
|
---|
| 699 |
|
---|
| 700 | sprintf(errmsg,
|
---|
| 701 | _("\nUnhandled exception filter called from program %s\nExceptionCode = %lx\nExceptionFlags = %lx\nExceptionAddress = 0x%p\n"),
|
---|
| 702 | prg, exrec->ExceptionCode, exrec->ExceptionFlags,
|
---|
| 703 | exrec->ExceptionAddress);
|
---|
| 704 |
|
---|
| 705 | if (exrec->ExceptionCode == EXCEPTION_ACCESS_VIOLATION
|
---|
| 706 | && exrec->NumberParameters >= 2)
|
---|
| 707 | sprintf(&errmsg[strlen(errmsg)],
|
---|
| 708 | (exrec->ExceptionInformation[0]
|
---|
| 709 | ? _("Access violation: write operation at address 0x%p\n")
|
---|
| 710 | : _("Access violation: read operation at address 0x%p\n")),
|
---|
| 711 | (PVOID)exrec->ExceptionInformation[1]);
|
---|
| 712 |
|
---|
| 713 | /* turn this on if we want to put stuff in the event log too */
|
---|
| 714 | #ifdef USE_EVENT_LOG
|
---|
| 715 | hEventSource = RegisterEventSource(NULL, "GNU Make");
|
---|
| 716 | lpszStrings[0] = errmsg;
|
---|
| 717 |
|
---|
| 718 | if (hEventSource != NULL)
|
---|
| 719 | {
|
---|
| 720 | ReportEvent(hEventSource, /* handle of event source */
|
---|
| 721 | EVENTLOG_ERROR_TYPE, /* event type */
|
---|
| 722 | 0, /* event category */
|
---|
| 723 | 0, /* event ID */
|
---|
| 724 | NULL, /* current user's SID */
|
---|
| 725 | 1, /* strings in lpszStrings */
|
---|
| 726 | 0, /* no bytes of raw data */
|
---|
| 727 | lpszStrings, /* array of error strings */
|
---|
| 728 | NULL); /* no raw data */
|
---|
| 729 |
|
---|
| 730 | (VOID) DeregisterEventSource(hEventSource);
|
---|
| 731 | }
|
---|
| 732 | #endif
|
---|
| 733 |
|
---|
| 734 | /* Write the error to stderr too */
|
---|
| 735 | fprintf(stderr, errmsg);
|
---|
| 736 |
|
---|
| 737 | #ifdef DEBUG
|
---|
| 738 | return EXCEPTION_CONTINUE_SEARCH;
|
---|
| 739 | #else
|
---|
| 740 | exit(255);
|
---|
| 741 | return (255); /* not reached */
|
---|
| 742 | #endif
|
---|
| 743 | }
|
---|
| 744 |
|
---|
| 745 | /*
|
---|
| 746 | * On WIN32 systems we don't have the luxury of a /bin directory that
|
---|
| 747 | * is mapped globally to every drive mounted to the system. Since make could
|
---|
| 748 | * be invoked from any drive, and we don't want to propogate /bin/sh
|
---|
| 749 | * to every single drive. Allow ourselves a chance to search for
|
---|
| 750 | * a value for default shell here (if the default path does not exist).
|
---|
| 751 | */
|
---|
| 752 |
|
---|
| 753 | int
|
---|
| 754 | find_and_set_default_shell (const char *token)
|
---|
| 755 | {
|
---|
| 756 | int sh_found = 0;
|
---|
| 757 | char *atoken = 0;
|
---|
| 758 | char *search_token;
|
---|
| 759 | char *tokend;
|
---|
| 760 | PATH_VAR(sh_path);
|
---|
| 761 | extern char *default_shell;
|
---|
| 762 |
|
---|
| 763 | if (!token)
|
---|
| 764 | search_token = default_shell;
|
---|
| 765 | else
|
---|
| 766 | atoken = search_token = xstrdup (token);
|
---|
| 767 |
|
---|
| 768 | /* If the user explicitly requests the DOS cmd shell, obey that request.
|
---|
| 769 | However, make sure that's what they really want by requiring the value
|
---|
| 770 | of SHELL either equal, or have a final path element of, "cmd" or
|
---|
| 771 | "cmd.exe" case-insensitive. */
|
---|
| 772 | tokend = search_token + strlen (search_token) - 3;
|
---|
| 773 | if (((tokend == search_token
|
---|
| 774 | || (tokend > search_token
|
---|
| 775 | && (tokend[-1] == '/' || tokend[-1] == '\\')))
|
---|
| 776 | && !strcasecmp (tokend, "cmd"))
|
---|
| 777 | || ((tokend - 4 == search_token
|
---|
| 778 | || (tokend - 4 > search_token
|
---|
| 779 | && (tokend[-5] == '/' || tokend[-5] == '\\')))
|
---|
| 780 | && !strcasecmp (tokend - 4, "cmd.exe"))) {
|
---|
| 781 | batch_mode_shell = 1;
|
---|
| 782 | unixy_shell = 0;
|
---|
| 783 | sprintf (sh_path, "%s", search_token);
|
---|
| 784 | default_shell = xstrdup (w32ify (sh_path, 0));
|
---|
| 785 | DB (DB_VERBOSE, (_("find_and_set_shell() setting default_shell = %s\n"),
|
---|
| 786 | default_shell));
|
---|
| 787 | sh_found = 1;
|
---|
| 788 | } else if (!no_default_sh_exe &&
|
---|
| 789 | (token == NULL || !strcmp (search_token, default_shell))) {
|
---|
| 790 | /* no new information, path already set or known */
|
---|
| 791 | sh_found = 1;
|
---|
| 792 | } else if (file_exists_p (search_token)) {
|
---|
| 793 | /* search token path was found */
|
---|
| 794 | sprintf (sh_path, "%s", search_token);
|
---|
| 795 | default_shell = xstrdup (w32ify (sh_path, 0));
|
---|
| 796 | DB (DB_VERBOSE, (_("find_and_set_shell() setting default_shell = %s\n"),
|
---|
| 797 | default_shell));
|
---|
| 798 | sh_found = 1;
|
---|
| 799 | } else {
|
---|
| 800 | char *p;
|
---|
| 801 | struct variable *v = lookup_variable (STRING_SIZE_TUPLE ("PATH"));
|
---|
| 802 |
|
---|
| 803 | /* Search Path for shell */
|
---|
| 804 | if (v && v->value) {
|
---|
| 805 | char *ep;
|
---|
| 806 |
|
---|
| 807 | p = v->value;
|
---|
| 808 | ep = strchr (p, PATH_SEPARATOR_CHAR);
|
---|
| 809 |
|
---|
| 810 | while (ep && *ep) {
|
---|
| 811 | *ep = '\0';
|
---|
| 812 |
|
---|
| 813 | if (dir_file_exists_p (p, search_token)) {
|
---|
| 814 | sprintf (sh_path, "%s/%s", p, search_token);
|
---|
| 815 | default_shell = xstrdup (w32ify (sh_path, 0));
|
---|
| 816 | sh_found = 1;
|
---|
| 817 | *ep = PATH_SEPARATOR_CHAR;
|
---|
| 818 |
|
---|
| 819 | /* terminate loop */
|
---|
| 820 | p += strlen (p);
|
---|
| 821 | } else {
|
---|
| 822 | *ep = PATH_SEPARATOR_CHAR;
|
---|
| 823 | p = ++ep;
|
---|
| 824 | }
|
---|
| 825 |
|
---|
| 826 | ep = strchr (p, PATH_SEPARATOR_CHAR);
|
---|
| 827 | }
|
---|
| 828 |
|
---|
| 829 | /* be sure to check last element of Path */
|
---|
| 830 | if (p && *p && dir_file_exists_p (p, search_token)) {
|
---|
| 831 | sprintf (sh_path, "%s/%s", p, search_token);
|
---|
| 832 | default_shell = xstrdup (w32ify (sh_path, 0));
|
---|
| 833 | sh_found = 1;
|
---|
| 834 | }
|
---|
| 835 |
|
---|
| 836 | if (sh_found)
|
---|
| 837 | DB (DB_VERBOSE,
|
---|
| 838 | (_("find_and_set_shell() path search set default_shell = %s\n"),
|
---|
| 839 | default_shell));
|
---|
| 840 | }
|
---|
| 841 | }
|
---|
| 842 |
|
---|
| 843 | /* naive test */
|
---|
| 844 | if (!unixy_shell && sh_found &&
|
---|
| 845 | (strstr (default_shell, "sh") || strstr (default_shell, "SH"))) {
|
---|
| 846 | unixy_shell = 1;
|
---|
| 847 | batch_mode_shell = 0;
|
---|
| 848 | }
|
---|
| 849 |
|
---|
| 850 | #ifdef BATCH_MODE_ONLY_SHELL
|
---|
| 851 | batch_mode_shell = 1;
|
---|
| 852 | #endif
|
---|
| 853 |
|
---|
| 854 | if (atoken)
|
---|
| 855 | free (atoken);
|
---|
| 856 |
|
---|
| 857 | return (sh_found);
|
---|
| 858 | }
|
---|
| 859 | #endif /* WINDOWS32 */
|
---|
| 860 |
|
---|
| 861 | #ifdef __MSDOS__
|
---|
| 862 | static void
|
---|
| 863 | msdos_return_to_initial_directory (void)
|
---|
| 864 | {
|
---|
| 865 | if (directory_before_chdir)
|
---|
| 866 | chdir (directory_before_chdir);
|
---|
| 867 | }
|
---|
| 868 | #endif /* __MSDOS__ */
|
---|
| 869 |
|
---|
| 870 | char *mktemp (char *template);
|
---|
| 871 | int mkstemp (char *template);
|
---|
| 872 |
|
---|
| 873 | FILE *
|
---|
| 874 | open_tmpfile(char **name, const char *template)
|
---|
| 875 | {
|
---|
| 876 | #ifdef HAVE_FDOPEN
|
---|
| 877 | int fd;
|
---|
| 878 | #endif
|
---|
| 879 |
|
---|
| 880 | #if defined HAVE_MKSTEMP || defined HAVE_MKTEMP
|
---|
| 881 | # define TEMPLATE_LEN strlen (template)
|
---|
| 882 | #else
|
---|
| 883 | # define TEMPLATE_LEN L_tmpnam
|
---|
| 884 | #endif
|
---|
| 885 | *name = xmalloc (TEMPLATE_LEN + 1);
|
---|
| 886 | strcpy (*name, template);
|
---|
| 887 |
|
---|
| 888 | #if defined HAVE_MKSTEMP && defined HAVE_FDOPEN
|
---|
| 889 | /* It's safest to use mkstemp(), if we can. */
|
---|
| 890 | fd = mkstemp (*name);
|
---|
| 891 | if (fd == -1)
|
---|
| 892 | return 0;
|
---|
| 893 | return fdopen (fd, "w");
|
---|
| 894 | #else
|
---|
| 895 | # ifdef HAVE_MKTEMP
|
---|
| 896 | (void) mktemp (*name);
|
---|
| 897 | # else
|
---|
| 898 | (void) tmpnam (*name);
|
---|
| 899 | # endif
|
---|
| 900 |
|
---|
| 901 | # ifdef HAVE_FDOPEN
|
---|
| 902 | /* Can't use mkstemp(), but guard against a race condition. */
|
---|
| 903 | fd = open (*name, O_CREAT|O_EXCL|O_WRONLY, 0600);
|
---|
| 904 | if (fd == -1)
|
---|
| 905 | return 0;
|
---|
| 906 | return fdopen (fd, "w");
|
---|
| 907 | # else
|
---|
| 908 | /* Not secure, but what can we do? */
|
---|
| 909 | return fopen (*name, "w");
|
---|
| 910 | # endif
|
---|
| 911 | #endif
|
---|
| 912 | }
|
---|
| 913 |
|
---|
| 914 |
|
---|
| 915 | #ifdef _AMIGA
|
---|
| 916 | int
|
---|
| 917 | main (int argc, char **argv)
|
---|
| 918 | #else
|
---|
| 919 | int
|
---|
| 920 | main (int argc, char **argv, char **envp)
|
---|
| 921 | #endif
|
---|
| 922 | {
|
---|
| 923 | static char *stdin_nm = 0;
|
---|
| 924 | int makefile_status = MAKE_SUCCESS;
|
---|
| 925 | struct dep *read_makefiles;
|
---|
| 926 | PATH_VAR (current_directory);
|
---|
| 927 | unsigned int restarts = 0;
|
---|
| 928 | #ifdef WINDOWS32
|
---|
| 929 | char *unix_path = NULL;
|
---|
| 930 | char *windows32_path = NULL;
|
---|
| 931 |
|
---|
| 932 | SetUnhandledExceptionFilter(handle_runtime_exceptions);
|
---|
| 933 |
|
---|
| 934 | /* start off assuming we have no shell */
|
---|
| 935 | unixy_shell = 0;
|
---|
| 936 | no_default_sh_exe = 1;
|
---|
| 937 | #endif
|
---|
| 938 |
|
---|
| 939 | #ifdef SET_STACK_SIZE
|
---|
| 940 | /* Get rid of any avoidable limit on stack size. */
|
---|
| 941 | {
|
---|
| 942 | struct rlimit rlim;
|
---|
| 943 |
|
---|
| 944 | /* Set the stack limit huge so that alloca does not fail. */
|
---|
| 945 | if (getrlimit (RLIMIT_STACK, &rlim) == 0
|
---|
| 946 | && rlim.rlim_cur > 0 && rlim.rlim_cur < rlim.rlim_max)
|
---|
| 947 | {
|
---|
| 948 | stack_limit = rlim;
|
---|
| 949 | rlim.rlim_cur = rlim.rlim_max;
|
---|
| 950 | setrlimit (RLIMIT_STACK, &rlim);
|
---|
| 951 | }
|
---|
| 952 | else
|
---|
| 953 | stack_limit.rlim_cur = 0;
|
---|
| 954 | }
|
---|
| 955 | #endif
|
---|
| 956 |
|
---|
| 957 | #ifdef HAVE_ATEXIT
|
---|
| 958 | atexit (close_stdout);
|
---|
| 959 | #endif
|
---|
| 960 |
|
---|
| 961 | /* Needed for OS/2 */
|
---|
| 962 | initialize_main(&argc, &argv);
|
---|
| 963 |
|
---|
| 964 | reading_file = 0;
|
---|
| 965 |
|
---|
| 966 | #if defined (__MSDOS__) && !defined (_POSIX_SOURCE)
|
---|
| 967 | /* Request the most powerful version of `system', to
|
---|
| 968 | make up for the dumb default shell. */
|
---|
| 969 | __system_flags = (__system_redirect
|
---|
| 970 | | __system_use_shell
|
---|
| 971 | | __system_allow_multiple_cmds
|
---|
| 972 | | __system_allow_long_cmds
|
---|
| 973 | | __system_handle_null_commands
|
---|
| 974 | | __system_emulate_chdir);
|
---|
| 975 |
|
---|
| 976 | #endif
|
---|
| 977 |
|
---|
| 978 | /* Set up gettext/internationalization support. */
|
---|
| 979 | setlocale (LC_ALL, "");
|
---|
| 980 | /* The cast to void shuts up compiler warnings on systems that
|
---|
| 981 | disable NLS. */
|
---|
| 982 | (void)bindtextdomain (PACKAGE, LOCALEDIR);
|
---|
| 983 | (void)textdomain (PACKAGE);
|
---|
| 984 |
|
---|
| 985 | #ifdef POSIX
|
---|
| 986 | sigemptyset (&fatal_signal_set);
|
---|
| 987 | #define ADD_SIG(sig) sigaddset (&fatal_signal_set, sig)
|
---|
| 988 | #else
|
---|
| 989 | #ifdef HAVE_SIGSETMASK
|
---|
| 990 | fatal_signal_mask = 0;
|
---|
| 991 | #define ADD_SIG(sig) fatal_signal_mask |= sigmask (sig)
|
---|
| 992 | #else
|
---|
| 993 | #define ADD_SIG(sig) (void)sig /* Needed to avoid warnings in MSVC. */
|
---|
| 994 | #endif
|
---|
| 995 | #endif
|
---|
| 996 |
|
---|
| 997 | #define FATAL_SIG(sig) \
|
---|
| 998 | if (bsd_signal (sig, fatal_error_signal) == SIG_IGN) \
|
---|
| 999 | bsd_signal (sig, SIG_IGN); \
|
---|
| 1000 | else \
|
---|
| 1001 | ADD_SIG (sig);
|
---|
| 1002 |
|
---|
| 1003 | #ifdef SIGHUP
|
---|
| 1004 | FATAL_SIG (SIGHUP);
|
---|
| 1005 | #endif
|
---|
| 1006 | #ifdef SIGQUIT
|
---|
| 1007 | FATAL_SIG (SIGQUIT);
|
---|
| 1008 | #endif
|
---|
| 1009 | FATAL_SIG (SIGINT);
|
---|
| 1010 | FATAL_SIG (SIGTERM);
|
---|
| 1011 |
|
---|
| 1012 | #ifdef __MSDOS__
|
---|
| 1013 | /* Windows 9X delivers FP exceptions in child programs to their
|
---|
| 1014 | parent! We don't want Make to die when a child divides by zero,
|
---|
| 1015 | so we work around that lossage by catching SIGFPE. */
|
---|
| 1016 | FATAL_SIG (SIGFPE);
|
---|
| 1017 | #endif
|
---|
| 1018 |
|
---|
| 1019 | #ifdef SIGDANGER
|
---|
| 1020 | FATAL_SIG (SIGDANGER);
|
---|
| 1021 | #endif
|
---|
| 1022 | #ifdef SIGXCPU
|
---|
| 1023 | FATAL_SIG (SIGXCPU);
|
---|
| 1024 | #endif
|
---|
| 1025 | #ifdef SIGXFSZ
|
---|
| 1026 | FATAL_SIG (SIGXFSZ);
|
---|
| 1027 | #endif
|
---|
| 1028 |
|
---|
| 1029 | #undef FATAL_SIG
|
---|
| 1030 |
|
---|
| 1031 | /* Do not ignore the child-death signal. This must be done before
|
---|
| 1032 | any children could possibly be created; otherwise, the wait
|
---|
| 1033 | functions won't work on systems with the SVR4 ECHILD brain
|
---|
| 1034 | damage, if our invoker is ignoring this signal. */
|
---|
| 1035 |
|
---|
| 1036 | #ifdef HAVE_WAIT_NOHANG
|
---|
| 1037 | # if defined SIGCHLD
|
---|
| 1038 | (void) bsd_signal (SIGCHLD, SIG_DFL);
|
---|
| 1039 | # endif
|
---|
| 1040 | # if defined SIGCLD && SIGCLD != SIGCHLD
|
---|
| 1041 | (void) bsd_signal (SIGCLD, SIG_DFL);
|
---|
| 1042 | # endif
|
---|
| 1043 | #endif
|
---|
| 1044 |
|
---|
| 1045 | /* Make sure stdout is line-buffered. */
|
---|
| 1046 |
|
---|
| 1047 | #ifdef HAVE_SETVBUF
|
---|
| 1048 | # ifdef SETVBUF_REVERSED
|
---|
| 1049 | setvbuf (stdout, _IOLBF, xmalloc (BUFSIZ), BUFSIZ);
|
---|
| 1050 | # else /* setvbuf not reversed. */
|
---|
| 1051 | /* Some buggy systems lose if we pass 0 instead of allocating ourselves. */
|
---|
| 1052 | setvbuf (stdout, 0, _IOLBF, BUFSIZ);
|
---|
| 1053 | # endif /* setvbuf reversed. */
|
---|
| 1054 | #elif HAVE_SETLINEBUF
|
---|
| 1055 | setlinebuf (stdout);
|
---|
| 1056 | #endif /* setlinebuf missing. */
|
---|
| 1057 |
|
---|
| 1058 | /* Figure out where this program lives. */
|
---|
| 1059 |
|
---|
| 1060 | if (argv[0] == 0)
|
---|
| 1061 | argv[0] = "";
|
---|
| 1062 | if (argv[0][0] == '\0')
|
---|
| 1063 | program = "make";
|
---|
| 1064 | else
|
---|
| 1065 | {
|
---|
| 1066 | #ifdef VMS
|
---|
| 1067 | program = strrchr (argv[0], ']');
|
---|
| 1068 | #else
|
---|
| 1069 | program = strrchr (argv[0], '/');
|
---|
| 1070 | #endif
|
---|
| 1071 | #if defined(__MSDOS__) || defined(__EMX__)
|
---|
| 1072 | if (program == 0)
|
---|
| 1073 | program = strrchr (argv[0], '\\');
|
---|
| 1074 | else
|
---|
| 1075 | {
|
---|
| 1076 | /* Some weird environments might pass us argv[0] with
|
---|
| 1077 | both kinds of slashes; we must find the rightmost. */
|
---|
| 1078 | char *p = strrchr (argv[0], '\\');
|
---|
| 1079 | if (p && p > program)
|
---|
| 1080 | program = p;
|
---|
| 1081 | }
|
---|
| 1082 | if (program == 0 && argv[0][1] == ':')
|
---|
| 1083 | program = argv[0] + 1;
|
---|
| 1084 | #endif
|
---|
| 1085 | #ifdef WINDOWS32
|
---|
| 1086 | if (program == 0)
|
---|
| 1087 | {
|
---|
| 1088 | /* Extract program from full path */
|
---|
| 1089 | int argv0_len;
|
---|
| 1090 | program = strrchr (argv[0], '\\');
|
---|
| 1091 | if (program)
|
---|
| 1092 | {
|
---|
| 1093 | argv0_len = strlen(program);
|
---|
| 1094 | if (argv0_len > 4 && streq (&program[argv0_len - 4], ".exe"))
|
---|
| 1095 | /* Remove .exe extension */
|
---|
| 1096 | program[argv0_len - 4] = '\0';
|
---|
| 1097 | }
|
---|
| 1098 | }
|
---|
| 1099 | #endif
|
---|
| 1100 | if (program == 0)
|
---|
| 1101 | program = argv[0];
|
---|
| 1102 | else
|
---|
| 1103 | ++program;
|
---|
| 1104 | }
|
---|
| 1105 |
|
---|
| 1106 | /* Set up to access user data (files). */
|
---|
| 1107 | user_access ();
|
---|
| 1108 |
|
---|
| 1109 | initialize_global_hash_tables ();
|
---|
| 1110 |
|
---|
| 1111 | /* Figure out where we are. */
|
---|
| 1112 |
|
---|
| 1113 | #ifdef WINDOWS32
|
---|
| 1114 | if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
|
---|
| 1115 | #else
|
---|
| 1116 | if (getcwd (current_directory, GET_PATH_MAX) == 0)
|
---|
| 1117 | #endif
|
---|
| 1118 | {
|
---|
| 1119 | #ifdef HAVE_GETCWD
|
---|
| 1120 | perror_with_name ("getcwd", "");
|
---|
| 1121 | #else
|
---|
| 1122 | error (NILF, "getwd: %s", current_directory);
|
---|
| 1123 | #endif
|
---|
| 1124 | current_directory[0] = '\0';
|
---|
| 1125 | directory_before_chdir = 0;
|
---|
| 1126 | }
|
---|
| 1127 | else
|
---|
| 1128 | directory_before_chdir = xstrdup (current_directory);
|
---|
| 1129 | #ifdef __MSDOS__
|
---|
| 1130 | /* Make sure we will return to the initial directory, come what may. */
|
---|
| 1131 | atexit (msdos_return_to_initial_directory);
|
---|
| 1132 | #endif
|
---|
| 1133 |
|
---|
| 1134 | /* Initialize the special variables. */
|
---|
| 1135 | define_variable_cname (".VARIABLES", "", o_default, 0)->special = 1;
|
---|
| 1136 | /* define_variable_cname (".TARGETS", "", o_default, 0)->special = 1; */
|
---|
| 1137 | define_variable_cname (".RECIPEPREFIX", "", o_default, 0)->special = 1;
|
---|
| 1138 | define_variable_cname (".SHELLFLAGS", "-c", o_default, 0);
|
---|
| 1139 |
|
---|
| 1140 | /* Set up .FEATURES
|
---|
| 1141 | We must do this in multiple calls because define_variable_cname() is
|
---|
| 1142 | a macro and some compilers (MSVC) don't like conditionals in macros. */
|
---|
| 1143 | {
|
---|
| 1144 | const char *features = "target-specific order-only second-expansion"
|
---|
| 1145 | " else-if shortest-stem undefine"
|
---|
| 1146 | #ifndef NO_ARCHIVES
|
---|
| 1147 | " archives"
|
---|
| 1148 | #endif
|
---|
| 1149 | #ifdef MAKE_JOBSERVER
|
---|
| 1150 | " jobserver"
|
---|
| 1151 | #endif
|
---|
| 1152 | #ifdef MAKE_SYMLINKS
|
---|
| 1153 | " check-symlink"
|
---|
| 1154 | #endif
|
---|
| 1155 | ;
|
---|
| 1156 |
|
---|
| 1157 | define_variable_cname (".FEATURES", features, o_default, 0);
|
---|
| 1158 | }
|
---|
| 1159 |
|
---|
| 1160 | /* Read in variables from the environment. It is important that this be
|
---|
| 1161 | done before $(MAKE) is figured out so its definitions will not be
|
---|
| 1162 | from the environment. */
|
---|
| 1163 |
|
---|
| 1164 | #ifndef _AMIGA
|
---|
| 1165 | {
|
---|
| 1166 | unsigned int i;
|
---|
| 1167 |
|
---|
| 1168 | for (i = 0; envp[i] != 0; ++i)
|
---|
| 1169 | {
|
---|
| 1170 | int do_not_define = 0;
|
---|
| 1171 | char *ep = envp[i];
|
---|
| 1172 |
|
---|
| 1173 | while (*ep != '\0' && *ep != '=')
|
---|
| 1174 | ++ep;
|
---|
| 1175 | #ifdef WINDOWS32
|
---|
| 1176 | if (!unix_path && strneq(envp[i], "PATH=", 5))
|
---|
| 1177 | unix_path = ep+1;
|
---|
| 1178 | else if (!strnicmp(envp[i], "Path=", 5)) {
|
---|
| 1179 | do_not_define = 1; /* it gets defined after loop exits */
|
---|
| 1180 | if (!windows32_path)
|
---|
| 1181 | windows32_path = ep+1;
|
---|
| 1182 | }
|
---|
| 1183 | #endif
|
---|
| 1184 | /* The result of pointer arithmetic is cast to unsigned int for
|
---|
| 1185 | machines where ptrdiff_t is a different size that doesn't widen
|
---|
| 1186 | the same. */
|
---|
| 1187 | if (!do_not_define)
|
---|
| 1188 | {
|
---|
| 1189 | struct variable *v;
|
---|
| 1190 |
|
---|
| 1191 | v = define_variable (envp[i], (unsigned int) (ep - envp[i]),
|
---|
| 1192 | ep + 1, o_env, 1);
|
---|
| 1193 | /* Force exportation of every variable culled from the
|
---|
| 1194 | environment. We used to rely on target_environment's
|
---|
| 1195 | v_default code to do this. But that does not work for the
|
---|
| 1196 | case where an environment variable is redefined in a makefile
|
---|
| 1197 | with `override'; it should then still be exported, because it
|
---|
| 1198 | was originally in the environment. */
|
---|
| 1199 | v->export = v_export;
|
---|
| 1200 |
|
---|
| 1201 | /* Another wrinkle is that POSIX says the value of SHELL set in
|
---|
| 1202 | the makefile won't change the value of SHELL given to
|
---|
| 1203 | subprocesses. */
|
---|
| 1204 | if (streq (v->name, "SHELL"))
|
---|
| 1205 | {
|
---|
| 1206 | #ifndef __MSDOS__
|
---|
| 1207 | v->export = v_noexport;
|
---|
| 1208 | #endif
|
---|
| 1209 | shell_var.name = "SHELL";
|
---|
| 1210 | shell_var.length = 5;
|
---|
| 1211 | shell_var.value = xstrdup (ep + 1);
|
---|
| 1212 | }
|
---|
| 1213 |
|
---|
| 1214 | /* If MAKE_RESTARTS is set, remember it but don't export it. */
|
---|
| 1215 | if (streq (v->name, "MAKE_RESTARTS"))
|
---|
| 1216 | {
|
---|
| 1217 | v->export = v_noexport;
|
---|
| 1218 | restarts = (unsigned int) atoi (ep + 1);
|
---|
| 1219 | }
|
---|
| 1220 | }
|
---|
| 1221 | }
|
---|
| 1222 | }
|
---|
| 1223 | #ifdef WINDOWS32
|
---|
| 1224 | /* If we didn't find a correctly spelled PATH we define PATH as
|
---|
| 1225 | * either the first mispelled value or an empty string
|
---|
| 1226 | */
|
---|
| 1227 | if (!unix_path)
|
---|
| 1228 | define_variable_cname ("PATH", windows32_path ? windows32_path : "",
|
---|
| 1229 | o_env, 1)->export = v_export;
|
---|
| 1230 | #endif
|
---|
| 1231 | #else /* For Amiga, read the ENV: device, ignoring all dirs */
|
---|
| 1232 | {
|
---|
| 1233 | BPTR env, file, old;
|
---|
| 1234 | char buffer[1024];
|
---|
| 1235 | int len;
|
---|
| 1236 | __aligned struct FileInfoBlock fib;
|
---|
| 1237 |
|
---|
| 1238 | env = Lock ("ENV:", ACCESS_READ);
|
---|
| 1239 | if (env)
|
---|
| 1240 | {
|
---|
| 1241 | old = CurrentDir (DupLock(env));
|
---|
| 1242 | Examine (env, &fib);
|
---|
| 1243 |
|
---|
| 1244 | while (ExNext (env, &fib))
|
---|
| 1245 | {
|
---|
| 1246 | if (fib.fib_DirEntryType < 0) /* File */
|
---|
| 1247 | {
|
---|
| 1248 | /* Define an empty variable. It will be filled in
|
---|
| 1249 | variable_lookup(). Makes startup quite a bit
|
---|
| 1250 | faster. */
|
---|
| 1251 | define_variable (fib.fib_FileName,
|
---|
| 1252 | strlen (fib.fib_FileName),
|
---|
| 1253 | "", o_env, 1)->export = v_export;
|
---|
| 1254 | }
|
---|
| 1255 | }
|
---|
| 1256 | UnLock (env);
|
---|
| 1257 | UnLock(CurrentDir(old));
|
---|
| 1258 | }
|
---|
| 1259 | }
|
---|
| 1260 | #endif
|
---|
| 1261 |
|
---|
| 1262 | /* Decode the switches. */
|
---|
| 1263 |
|
---|
| 1264 | decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
|
---|
| 1265 | #if 0
|
---|
| 1266 | /* People write things like:
|
---|
| 1267 | MFLAGS="CC=gcc -pipe" "CFLAGS=-g"
|
---|
| 1268 | and we set the -p, -i and -e switches. Doesn't seem quite right. */
|
---|
| 1269 | decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
|
---|
| 1270 | #endif
|
---|
| 1271 |
|
---|
| 1272 | decode_switches (argc, argv, 0);
|
---|
| 1273 |
|
---|
| 1274 | #ifdef WINDOWS32
|
---|
| 1275 | if (suspend_flag) {
|
---|
| 1276 | fprintf(stderr, "%s (pid = %ld)\n", argv[0], GetCurrentProcessId());
|
---|
| 1277 | fprintf(stderr, _("%s is suspending for 30 seconds..."), argv[0]);
|
---|
| 1278 | Sleep(30 * 1000);
|
---|
| 1279 | fprintf(stderr, _("done sleep(30). Continuing.\n"));
|
---|
| 1280 | }
|
---|
| 1281 | #endif
|
---|
| 1282 |
|
---|
| 1283 | decode_debug_flags ();
|
---|
| 1284 |
|
---|
| 1285 | /* Set always_make_flag if -B was given and we've not restarted already. */
|
---|
| 1286 | always_make_flag = always_make_set && (restarts == 0);
|
---|
| 1287 |
|
---|
| 1288 | /* Print version information. */
|
---|
| 1289 | if (print_version_flag || print_data_base_flag || db_level)
|
---|
| 1290 | {
|
---|
| 1291 | print_version ();
|
---|
| 1292 |
|
---|
| 1293 | /* `make --version' is supposed to just print the version and exit. */
|
---|
| 1294 | if (print_version_flag)
|
---|
| 1295 | die (0);
|
---|
| 1296 | }
|
---|
| 1297 |
|
---|
| 1298 | #ifndef VMS
|
---|
| 1299 | /* Set the "MAKE_COMMAND" variable to the name we were invoked with.
|
---|
| 1300 | (If it is a relative pathname with a slash, prepend our directory name
|
---|
| 1301 | so the result will run the same program regardless of the current dir.
|
---|
| 1302 | If it is a name with no slash, we can only hope that PATH did not
|
---|
| 1303 | find it in the current directory.) */
|
---|
| 1304 | #ifdef WINDOWS32
|
---|
| 1305 | /*
|
---|
| 1306 | * Convert from backslashes to forward slashes for
|
---|
| 1307 | * programs like sh which don't like them. Shouldn't
|
---|
| 1308 | * matter if the path is one way or the other for
|
---|
| 1309 | * CreateProcess().
|
---|
| 1310 | */
|
---|
| 1311 | if (strpbrk(argv[0], "/:\\") ||
|
---|
| 1312 | strstr(argv[0], "..") ||
|
---|
| 1313 | strneq(argv[0], "//", 2))
|
---|
| 1314 | argv[0] = xstrdup(w32ify(argv[0],1));
|
---|
| 1315 | #else /* WINDOWS32 */
|
---|
| 1316 | #if defined (__MSDOS__) || defined (__EMX__)
|
---|
| 1317 | if (strchr (argv[0], '\\'))
|
---|
| 1318 | {
|
---|
| 1319 | char *p;
|
---|
| 1320 |
|
---|
| 1321 | argv[0] = xstrdup (argv[0]);
|
---|
| 1322 | for (p = argv[0]; *p; p++)
|
---|
| 1323 | if (*p == '\\')
|
---|
| 1324 | *p = '/';
|
---|
| 1325 | }
|
---|
| 1326 | /* If argv[0] is not in absolute form, prepend the current
|
---|
| 1327 | directory. This can happen when Make is invoked by another DJGPP
|
---|
| 1328 | program that uses a non-absolute name. */
|
---|
| 1329 | if (current_directory[0] != '\0'
|
---|
| 1330 | && argv[0] != 0
|
---|
| 1331 | && (argv[0][0] != '/' && (argv[0][0] == '\0' || argv[0][1] != ':'))
|
---|
| 1332 | # ifdef __EMX__
|
---|
| 1333 | /* do not prepend cwd if argv[0] contains no '/', e.g. "make" */
|
---|
| 1334 | && (strchr (argv[0], '/') != 0 || strchr (argv[0], '\\') != 0)
|
---|
| 1335 | # endif
|
---|
| 1336 | )
|
---|
| 1337 | argv[0] = xstrdup (concat (3, current_directory, "/", argv[0]));
|
---|
| 1338 | #else /* !__MSDOS__ */
|
---|
| 1339 | if (current_directory[0] != '\0'
|
---|
| 1340 | && argv[0] != 0 && argv[0][0] != '/' && strchr (argv[0], '/') != 0
|
---|
| 1341 | #ifdef HAVE_DOS_PATHS
|
---|
| 1342 | && (argv[0][0] != '\\' && (!argv[0][0] || argv[0][1] != ':'))
|
---|
| 1343 | && strchr (argv[0], '\\') != 0
|
---|
| 1344 | #endif
|
---|
| 1345 | )
|
---|
| 1346 | argv[0] = xstrdup (concat (3, current_directory, "/", argv[0]));
|
---|
| 1347 | #endif /* !__MSDOS__ */
|
---|
| 1348 | #endif /* WINDOWS32 */
|
---|
| 1349 | #endif
|
---|
| 1350 |
|
---|
| 1351 | /* The extra indirection through $(MAKE_COMMAND) is done
|
---|
| 1352 | for hysterical raisins. */
|
---|
| 1353 | define_variable_cname ("MAKE_COMMAND", argv[0], o_default, 0);
|
---|
| 1354 | define_variable_cname ("MAKE", "$(MAKE_COMMAND)", o_default, 1);
|
---|
| 1355 |
|
---|
| 1356 | if (command_variables != 0)
|
---|
| 1357 | {
|
---|
| 1358 | struct command_variable *cv;
|
---|
| 1359 | struct variable *v;
|
---|
| 1360 | unsigned int len = 0;
|
---|
| 1361 | char *value, *p;
|
---|
| 1362 |
|
---|
| 1363 | /* Figure out how much space will be taken up by the command-line
|
---|
| 1364 | variable definitions. */
|
---|
| 1365 | for (cv = command_variables; cv != 0; cv = cv->next)
|
---|
| 1366 | {
|
---|
| 1367 | v = cv->variable;
|
---|
| 1368 | len += 2 * strlen (v->name);
|
---|
| 1369 | if (! v->recursive)
|
---|
| 1370 | ++len;
|
---|
| 1371 | ++len;
|
---|
| 1372 | len += 2 * strlen (v->value);
|
---|
| 1373 | ++len;
|
---|
| 1374 | }
|
---|
| 1375 |
|
---|
| 1376 | /* Now allocate a buffer big enough and fill it. */
|
---|
| 1377 | p = value = alloca (len);
|
---|
| 1378 | for (cv = command_variables; cv != 0; cv = cv->next)
|
---|
| 1379 | {
|
---|
| 1380 | v = cv->variable;
|
---|
| 1381 | p = quote_for_env (p, v->name);
|
---|
| 1382 | if (! v->recursive)
|
---|
| 1383 | *p++ = ':';
|
---|
| 1384 | *p++ = '=';
|
---|
| 1385 | p = quote_for_env (p, v->value);
|
---|
| 1386 | *p++ = ' ';
|
---|
| 1387 | }
|
---|
| 1388 | p[-1] = '\0'; /* Kill the final space and terminate. */
|
---|
| 1389 |
|
---|
| 1390 | /* Define an unchangeable variable with a name that no POSIX.2
|
---|
| 1391 | makefile could validly use for its own variable. */
|
---|
| 1392 | define_variable_cname ("-*-command-variables-*-", value, o_automatic, 0);
|
---|
| 1393 |
|
---|
| 1394 | /* Define the variable; this will not override any user definition.
|
---|
| 1395 | Normally a reference to this variable is written into the value of
|
---|
| 1396 | MAKEFLAGS, allowing the user to override this value to affect the
|
---|
| 1397 | exported value of MAKEFLAGS. In POSIX-pedantic mode, we cannot
|
---|
| 1398 | allow the user's setting of MAKEOVERRIDES to affect MAKEFLAGS, so
|
---|
| 1399 | a reference to this hidden variable is written instead. */
|
---|
| 1400 | define_variable_cname ("MAKEOVERRIDES", "${-*-command-variables-*-}",
|
---|
| 1401 | o_env, 1);
|
---|
| 1402 | }
|
---|
| 1403 |
|
---|
| 1404 | /* If there were -C flags, move ourselves about. */
|
---|
| 1405 | if (directories != 0)
|
---|
| 1406 | {
|
---|
| 1407 | unsigned int i;
|
---|
| 1408 | for (i = 0; directories->list[i] != 0; ++i)
|
---|
| 1409 | {
|
---|
| 1410 | const char *dir = directories->list[i];
|
---|
| 1411 | #ifdef WINDOWS32
|
---|
| 1412 | /* WINDOWS32 chdir() doesn't work if the directory has a trailing '/'
|
---|
| 1413 | But allow -C/ just in case someone wants that. */
|
---|
| 1414 | {
|
---|
| 1415 | char *p = (char *)dir + strlen (dir) - 1;
|
---|
| 1416 | while (p > dir && (p[0] == '/' || p[0] == '\\'))
|
---|
| 1417 | --p;
|
---|
| 1418 | p[1] = '\0';
|
---|
| 1419 | }
|
---|
| 1420 | #endif
|
---|
| 1421 | if (chdir (dir) < 0)
|
---|
| 1422 | pfatal_with_name (dir);
|
---|
| 1423 | }
|
---|
| 1424 | }
|
---|
| 1425 |
|
---|
| 1426 | #ifdef WINDOWS32
|
---|
| 1427 | /*
|
---|
| 1428 | * THIS BLOCK OF CODE MUST COME AFTER chdir() CALL ABOVE IN ORDER
|
---|
| 1429 | * TO NOT CONFUSE THE DEPENDENCY CHECKING CODE IN implicit.c.
|
---|
| 1430 | *
|
---|
| 1431 | * The functions in dir.c can incorrectly cache information for "."
|
---|
| 1432 | * before we have changed directory and this can cause file
|
---|
| 1433 | * lookups to fail because the current directory (.) was pointing
|
---|
| 1434 | * at the wrong place when it was first evaluated.
|
---|
| 1435 | */
|
---|
| 1436 | no_default_sh_exe = !find_and_set_default_shell(NULL);
|
---|
| 1437 |
|
---|
| 1438 | #endif /* WINDOWS32 */
|
---|
| 1439 | /* Figure out the level of recursion. */
|
---|
| 1440 | {
|
---|
| 1441 | struct variable *v = lookup_variable (STRING_SIZE_TUPLE (MAKELEVEL_NAME));
|
---|
| 1442 | if (v != 0 && v->value[0] != '\0' && v->value[0] != '-')
|
---|
| 1443 | makelevel = (unsigned int) atoi (v->value);
|
---|
| 1444 | else
|
---|
| 1445 | makelevel = 0;
|
---|
| 1446 | }
|
---|
| 1447 |
|
---|
| 1448 | /* Except under -s, always do -w in sub-makes and under -C. */
|
---|
| 1449 | if (!silent_flag && (directories != 0 || makelevel > 0))
|
---|
| 1450 | print_directory_flag = 1;
|
---|
| 1451 |
|
---|
| 1452 | /* Let the user disable that with --no-print-directory. */
|
---|
| 1453 | if (inhibit_print_directory_flag)
|
---|
| 1454 | print_directory_flag = 0;
|
---|
| 1455 |
|
---|
| 1456 | /* If -R was given, set -r too (doesn't make sense otherwise!) */
|
---|
| 1457 | if (no_builtin_variables_flag)
|
---|
| 1458 | no_builtin_rules_flag = 1;
|
---|
| 1459 |
|
---|
| 1460 | /* Construct the list of include directories to search. */
|
---|
| 1461 |
|
---|
| 1462 | construct_include_path (include_directories == 0
|
---|
| 1463 | ? 0 : include_directories->list);
|
---|
| 1464 |
|
---|
| 1465 | /* Figure out where we are now, after chdir'ing. */
|
---|
| 1466 | if (directories == 0)
|
---|
| 1467 | /* We didn't move, so we're still in the same place. */
|
---|
| 1468 | starting_directory = current_directory;
|
---|
| 1469 | else
|
---|
| 1470 | {
|
---|
| 1471 | #ifdef WINDOWS32
|
---|
| 1472 | if (getcwd_fs (current_directory, GET_PATH_MAX) == 0)
|
---|
| 1473 | #else
|
---|
| 1474 | if (getcwd (current_directory, GET_PATH_MAX) == 0)
|
---|
| 1475 | #endif
|
---|
| 1476 | {
|
---|
| 1477 | #ifdef HAVE_GETCWD
|
---|
| 1478 | perror_with_name ("getcwd", "");
|
---|
| 1479 | #else
|
---|
| 1480 | error (NILF, "getwd: %s", current_directory);
|
---|
| 1481 | #endif
|
---|
| 1482 | starting_directory = 0;
|
---|
| 1483 | }
|
---|
| 1484 | else
|
---|
| 1485 | starting_directory = current_directory;
|
---|
| 1486 | }
|
---|
| 1487 |
|
---|
| 1488 | define_variable_cname ("CURDIR", current_directory, o_file, 0);
|
---|
| 1489 |
|
---|
| 1490 | /* Read any stdin makefiles into temporary files. */
|
---|
| 1491 |
|
---|
| 1492 | if (makefiles != 0)
|
---|
| 1493 | {
|
---|
| 1494 | unsigned int i;
|
---|
| 1495 | for (i = 0; i < makefiles->idx; ++i)
|
---|
| 1496 | if (makefiles->list[i][0] == '-' && makefiles->list[i][1] == '\0')
|
---|
| 1497 | {
|
---|
| 1498 | /* This makefile is standard input. Since we may re-exec
|
---|
| 1499 | and thus re-read the makefiles, we read standard input
|
---|
| 1500 | into a temporary file and read from that. */
|
---|
| 1501 | FILE *outfile;
|
---|
| 1502 | char *template, *tmpdir;
|
---|
| 1503 |
|
---|
| 1504 | if (stdin_nm)
|
---|
| 1505 | fatal (NILF, _("Makefile from standard input specified twice."));
|
---|
| 1506 |
|
---|
| 1507 | #ifdef VMS
|
---|
| 1508 | # define DEFAULT_TMPDIR "sys$scratch:"
|
---|
| 1509 | #else
|
---|
| 1510 | # ifdef P_tmpdir
|
---|
| 1511 | # define DEFAULT_TMPDIR P_tmpdir
|
---|
| 1512 | # else
|
---|
| 1513 | # define DEFAULT_TMPDIR "/tmp"
|
---|
| 1514 | # endif
|
---|
| 1515 | #endif
|
---|
| 1516 | #define DEFAULT_TMPFILE "GmXXXXXX"
|
---|
| 1517 |
|
---|
| 1518 | if (((tmpdir = getenv ("TMPDIR")) == NULL || *tmpdir == '\0')
|
---|
| 1519 | #if defined (__MSDOS__) || defined (WINDOWS32) || defined (__EMX__)
|
---|
| 1520 | /* These are also used commonly on these platforms. */
|
---|
| 1521 | && ((tmpdir = getenv ("TEMP")) == NULL || *tmpdir == '\0')
|
---|
| 1522 | && ((tmpdir = getenv ("TMP")) == NULL || *tmpdir == '\0')
|
---|
| 1523 | #endif
|
---|
| 1524 | )
|
---|
| 1525 | tmpdir = DEFAULT_TMPDIR;
|
---|
| 1526 |
|
---|
| 1527 | template = alloca (strlen (tmpdir) + sizeof (DEFAULT_TMPFILE) + 1);
|
---|
| 1528 | strcpy (template, tmpdir);
|
---|
| 1529 |
|
---|
| 1530 | #ifdef HAVE_DOS_PATHS
|
---|
| 1531 | if (strchr ("/\\", template[strlen (template) - 1]) == NULL)
|
---|
| 1532 | strcat (template, "/");
|
---|
| 1533 | #else
|
---|
| 1534 | # ifndef VMS
|
---|
| 1535 | if (template[strlen (template) - 1] != '/')
|
---|
| 1536 | strcat (template, "/");
|
---|
| 1537 | # endif /* !VMS */
|
---|
| 1538 | #endif /* !HAVE_DOS_PATHS */
|
---|
| 1539 |
|
---|
| 1540 | strcat (template, DEFAULT_TMPFILE);
|
---|
| 1541 | outfile = open_tmpfile (&stdin_nm, template);
|
---|
| 1542 | if (outfile == 0)
|
---|
| 1543 | pfatal_with_name (_("fopen (temporary file)"));
|
---|
| 1544 | while (!feof (stdin) && ! ferror (stdin))
|
---|
| 1545 | {
|
---|
| 1546 | char buf[2048];
|
---|
| 1547 | unsigned int n = fread (buf, 1, sizeof (buf), stdin);
|
---|
| 1548 | if (n > 0 && fwrite (buf, 1, n, outfile) != n)
|
---|
| 1549 | pfatal_with_name (_("fwrite (temporary file)"));
|
---|
| 1550 | }
|
---|
| 1551 | fclose (outfile);
|
---|
| 1552 |
|
---|
| 1553 | /* Replace the name that read_all_makefiles will
|
---|
| 1554 | see with the name of the temporary file. */
|
---|
| 1555 | makefiles->list[i] = strcache_add (stdin_nm);
|
---|
| 1556 |
|
---|
| 1557 | /* Make sure the temporary file will not be remade. */
|
---|
| 1558 | {
|
---|
| 1559 | struct file *f = enter_file (strcache_add (stdin_nm));
|
---|
| 1560 | f->updated = 1;
|
---|
| 1561 | f->update_status = 0;
|
---|
| 1562 | f->command_state = cs_finished;
|
---|
| 1563 | /* Can't be intermediate, or it'll be removed too early for
|
---|
| 1564 | make re-exec. */
|
---|
| 1565 | f->intermediate = 0;
|
---|
| 1566 | f->dontcare = 0;
|
---|
| 1567 | }
|
---|
| 1568 | }
|
---|
| 1569 | }
|
---|
| 1570 |
|
---|
| 1571 | #ifndef __EMX__ /* Don't use a SIGCHLD handler for OS/2 */
|
---|
| 1572 | #if defined(MAKE_JOBSERVER) || !defined(HAVE_WAIT_NOHANG)
|
---|
| 1573 | /* Set up to handle children dying. This must be done before
|
---|
| 1574 | reading in the makefiles so that `shell' function calls will work.
|
---|
| 1575 |
|
---|
| 1576 | If we don't have a hanging wait we have to fall back to old, broken
|
---|
| 1577 | functionality here and rely on the signal handler and counting
|
---|
| 1578 | children.
|
---|
| 1579 |
|
---|
| 1580 | If we're using the jobs pipe we need a signal handler so that
|
---|
| 1581 | SIGCHLD is not ignored; we need it to interrupt the read(2) of the
|
---|
| 1582 | jobserver pipe in job.c if we're waiting for a token.
|
---|
| 1583 |
|
---|
| 1584 | If none of these are true, we don't need a signal handler at all. */
|
---|
| 1585 | {
|
---|
| 1586 | RETSIGTYPE child_handler (int sig);
|
---|
| 1587 | # if defined SIGCHLD
|
---|
| 1588 | bsd_signal (SIGCHLD, child_handler);
|
---|
| 1589 | # endif
|
---|
| 1590 | # if defined SIGCLD && SIGCLD != SIGCHLD
|
---|
| 1591 | bsd_signal (SIGCLD, child_handler);
|
---|
| 1592 | # endif
|
---|
| 1593 | }
|
---|
| 1594 | #endif
|
---|
| 1595 | #endif
|
---|
| 1596 |
|
---|
| 1597 | /* Let the user send us SIGUSR1 to toggle the -d flag during the run. */
|
---|
| 1598 | #ifdef SIGUSR1
|
---|
| 1599 | bsd_signal (SIGUSR1, debug_signal_handler);
|
---|
| 1600 | #endif
|
---|
| 1601 |
|
---|
| 1602 | /* Define the initial list of suffixes for old-style rules. */
|
---|
| 1603 |
|
---|
| 1604 | set_default_suffixes ();
|
---|
| 1605 |
|
---|
| 1606 | /* Define the file rules for the built-in suffix rules. These will later
|
---|
| 1607 | be converted into pattern rules. We used to do this in
|
---|
| 1608 | install_default_implicit_rules, but since that happens after reading
|
---|
| 1609 | makefiles, it results in the built-in pattern rules taking precedence
|
---|
| 1610 | over makefile-specified suffix rules, which is wrong. */
|
---|
| 1611 |
|
---|
| 1612 | install_default_suffix_rules ();
|
---|
| 1613 |
|
---|
| 1614 | /* Define some internal and special variables. */
|
---|
| 1615 |
|
---|
| 1616 | define_automatic_variables ();
|
---|
| 1617 |
|
---|
| 1618 | /* Set up the MAKEFLAGS and MFLAGS variables
|
---|
| 1619 | so makefiles can look at them. */
|
---|
| 1620 |
|
---|
| 1621 | define_makeflags (0, 0);
|
---|
| 1622 |
|
---|
| 1623 | /* Define the default variables. */
|
---|
| 1624 | define_default_variables ();
|
---|
| 1625 |
|
---|
| 1626 | default_file = enter_file (strcache_add (".DEFAULT"));
|
---|
| 1627 |
|
---|
| 1628 | default_goal_var = define_variable_cname (".DEFAULT_GOAL", "", o_file, 0);
|
---|
| 1629 |
|
---|
| 1630 | /* Evaluate all strings provided with --eval.
|
---|
| 1631 | Also set up the $(-*-eval-flags-*-) variable. */
|
---|
| 1632 |
|
---|
| 1633 | if (eval_strings)
|
---|
| 1634 | {
|
---|
| 1635 | char *p, *value;
|
---|
| 1636 | unsigned int i;
|
---|
| 1637 | unsigned int len = sizeof ("--eval=") * eval_strings->idx;
|
---|
| 1638 |
|
---|
| 1639 | for (i = 0; i < eval_strings->idx; ++i)
|
---|
| 1640 | {
|
---|
| 1641 | p = xstrdup (eval_strings->list[i]);
|
---|
| 1642 | len += 2 * strlen (p);
|
---|
| 1643 | eval_buffer (p);
|
---|
| 1644 | free (p);
|
---|
| 1645 | }
|
---|
| 1646 |
|
---|
| 1647 | p = value = alloca (len);
|
---|
| 1648 | for (i = 0; i < eval_strings->idx; ++i)
|
---|
| 1649 | {
|
---|
| 1650 | strcpy (p, "--eval=");
|
---|
| 1651 | p += strlen (p);
|
---|
| 1652 | p = quote_for_env (p, eval_strings->list[i]);
|
---|
| 1653 | *(p++) = ' ';
|
---|
| 1654 | }
|
---|
| 1655 | p[-1] = '\0';
|
---|
| 1656 |
|
---|
| 1657 | define_variable_cname ("-*-eval-flags-*-", value, o_automatic, 0);
|
---|
| 1658 | }
|
---|
| 1659 |
|
---|
| 1660 | /* Read all the makefiles. */
|
---|
| 1661 |
|
---|
| 1662 | read_makefiles
|
---|
| 1663 | = read_all_makefiles (makefiles == 0 ? 0 : makefiles->list);
|
---|
| 1664 |
|
---|
| 1665 | #ifdef WINDOWS32
|
---|
| 1666 | /* look one last time after reading all Makefiles */
|
---|
| 1667 | if (no_default_sh_exe)
|
---|
| 1668 | no_default_sh_exe = !find_and_set_default_shell(NULL);
|
---|
| 1669 | #endif /* WINDOWS32 */
|
---|
| 1670 |
|
---|
| 1671 | #if defined (__MSDOS__) || defined (__EMX__)
|
---|
| 1672 | /* We need to know what kind of shell we will be using. */
|
---|
| 1673 | {
|
---|
| 1674 | extern int _is_unixy_shell (const char *_path);
|
---|
| 1675 | struct variable *shv = lookup_variable (STRING_SIZE_TUPLE ("SHELL"));
|
---|
| 1676 | extern int unixy_shell;
|
---|
| 1677 | extern char *default_shell;
|
---|
| 1678 |
|
---|
| 1679 | if (shv && *shv->value)
|
---|
| 1680 | {
|
---|
| 1681 | char *shell_path = recursively_expand(shv);
|
---|
| 1682 |
|
---|
| 1683 | if (shell_path && _is_unixy_shell (shell_path))
|
---|
| 1684 | unixy_shell = 1;
|
---|
| 1685 | else
|
---|
| 1686 | unixy_shell = 0;
|
---|
| 1687 | if (shell_path)
|
---|
| 1688 | default_shell = shell_path;
|
---|
| 1689 | }
|
---|
| 1690 | }
|
---|
| 1691 | #endif /* __MSDOS__ || __EMX__ */
|
---|
| 1692 |
|
---|
| 1693 | /* Decode switches again, in case the variables were set by the makefile. */
|
---|
| 1694 | decode_env_switches (STRING_SIZE_TUPLE ("MAKEFLAGS"));
|
---|
| 1695 | #if 0
|
---|
| 1696 | decode_env_switches (STRING_SIZE_TUPLE ("MFLAGS"));
|
---|
| 1697 | #endif
|
---|
| 1698 |
|
---|
| 1699 | #if defined (__MSDOS__) || defined (__EMX__)
|
---|
| 1700 | if (job_slots != 1
|
---|
| 1701 | # ifdef __EMX__
|
---|
| 1702 | && _osmode != OS2_MODE /* turn off -j if we are in DOS mode */
|
---|
| 1703 | # endif
|
---|
| 1704 | )
|
---|
| 1705 | {
|
---|
| 1706 | error (NILF,
|
---|
| 1707 | _("Parallel jobs (-j) are not supported on this platform."));
|
---|
| 1708 | error (NILF, _("Resetting to single job (-j1) mode."));
|
---|
| 1709 | job_slots = 1;
|
---|
| 1710 | }
|
---|
| 1711 | #endif
|
---|
| 1712 |
|
---|
| 1713 | #ifdef MAKE_JOBSERVER
|
---|
| 1714 | /* If the jobserver-fds option is seen, make sure that -j is reasonable. */
|
---|
| 1715 |
|
---|
| 1716 | if (jobserver_fds)
|
---|
| 1717 | {
|
---|
| 1718 | const char *cp;
|
---|
| 1719 | unsigned int ui;
|
---|
| 1720 |
|
---|
| 1721 | for (ui=1; ui < jobserver_fds->idx; ++ui)
|
---|
| 1722 | if (!streq (jobserver_fds->list[0], jobserver_fds->list[ui]))
|
---|
| 1723 | fatal (NILF, _("internal error: multiple --jobserver-fds options"));
|
---|
| 1724 |
|
---|
| 1725 | /* Now parse the fds string and make sure it has the proper format. */
|
---|
| 1726 |
|
---|
| 1727 | cp = jobserver_fds->list[0];
|
---|
| 1728 |
|
---|
| 1729 | if (sscanf (cp, "%d,%d", &job_fds[0], &job_fds[1]) != 2)
|
---|
| 1730 | fatal (NILF,
|
---|
| 1731 | _("internal error: invalid --jobserver-fds string `%s'"), cp);
|
---|
| 1732 |
|
---|
| 1733 | DB (DB_JOBS,
|
---|
| 1734 | (_("Jobserver client (fds %d,%d)\n"), job_fds[0], job_fds[1]));
|
---|
| 1735 |
|
---|
| 1736 | /* The combination of a pipe + !job_slots means we're using the
|
---|
| 1737 | jobserver. If !job_slots and we don't have a pipe, we can start
|
---|
| 1738 | infinite jobs. If we see both a pipe and job_slots >0 that means the
|
---|
| 1739 | user set -j explicitly. This is broken; in this case obey the user
|
---|
| 1740 | (ignore the jobserver pipe for this make) but print a message. */
|
---|
| 1741 |
|
---|
| 1742 | if (job_slots > 0)
|
---|
| 1743 | error (NILF,
|
---|
| 1744 | _("warning: -jN forced in submake: disabling jobserver mode."));
|
---|
| 1745 |
|
---|
| 1746 | /* Create a duplicate pipe, that will be closed in the SIGCHLD
|
---|
| 1747 | handler. If this fails with EBADF, the parent has closed the pipe
|
---|
| 1748 | on us because it didn't think we were a submake. If so, print a
|
---|
| 1749 | warning then default to -j1. */
|
---|
| 1750 |
|
---|
| 1751 | else if ((job_rfd = dup (job_fds[0])) < 0)
|
---|
| 1752 | {
|
---|
| 1753 | if (errno != EBADF)
|
---|
| 1754 | pfatal_with_name (_("dup jobserver"));
|
---|
| 1755 |
|
---|
| 1756 | error (NILF,
|
---|
| 1757 | _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule."));
|
---|
| 1758 | job_slots = 1;
|
---|
| 1759 | }
|
---|
| 1760 |
|
---|
| 1761 | if (job_slots > 0)
|
---|
| 1762 | {
|
---|
| 1763 | close (job_fds[0]);
|
---|
| 1764 | close (job_fds[1]);
|
---|
| 1765 | job_fds[0] = job_fds[1] = -1;
|
---|
| 1766 | free (jobserver_fds->list);
|
---|
| 1767 | free (jobserver_fds);
|
---|
| 1768 | jobserver_fds = 0;
|
---|
| 1769 | }
|
---|
| 1770 | }
|
---|
| 1771 |
|
---|
| 1772 | /* If we have >1 slot but no jobserver-fds, then we're a top-level make.
|
---|
| 1773 | Set up the pipe and install the fds option for our children. */
|
---|
| 1774 |
|
---|
| 1775 | if (job_slots > 1)
|
---|
| 1776 | {
|
---|
| 1777 | char *cp;
|
---|
| 1778 | char c = '+';
|
---|
| 1779 |
|
---|
| 1780 | if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0)
|
---|
| 1781 | pfatal_with_name (_("creating jobs pipe"));
|
---|
| 1782 |
|
---|
| 1783 | /* Every make assumes that it always has one job it can run. For the
|
---|
| 1784 | submakes it's the token they were given by their parent. For the
|
---|
| 1785 | top make, we just subtract one from the number the user wants. We
|
---|
| 1786 | want job_slots to be 0 to indicate we're using the jobserver. */
|
---|
| 1787 |
|
---|
| 1788 | master_job_slots = job_slots;
|
---|
| 1789 |
|
---|
| 1790 | while (--job_slots)
|
---|
| 1791 | {
|
---|
| 1792 | int r;
|
---|
| 1793 |
|
---|
| 1794 | EINTRLOOP (r, write (job_fds[1], &c, 1));
|
---|
| 1795 | if (r != 1)
|
---|
| 1796 | pfatal_with_name (_("init jobserver pipe"));
|
---|
| 1797 | }
|
---|
| 1798 |
|
---|
| 1799 | /* Fill in the jobserver_fds struct for our children. */
|
---|
| 1800 |
|
---|
| 1801 | cp = xmalloc ((sizeof ("1024")*2)+1);
|
---|
| 1802 | sprintf (cp, "%d,%d", job_fds[0], job_fds[1]);
|
---|
| 1803 |
|
---|
| 1804 | jobserver_fds = (struct stringlist *)
|
---|
| 1805 | xmalloc (sizeof (struct stringlist));
|
---|
| 1806 | jobserver_fds->list = xmalloc (sizeof (char *));
|
---|
| 1807 | jobserver_fds->list[0] = cp;
|
---|
| 1808 | jobserver_fds->idx = 1;
|
---|
| 1809 | jobserver_fds->max = 1;
|
---|
| 1810 | }
|
---|
| 1811 | #endif
|
---|
| 1812 |
|
---|
| 1813 | #ifndef MAKE_SYMLINKS
|
---|
| 1814 | if (check_symlink_flag)
|
---|
| 1815 | {
|
---|
| 1816 | error (NILF, _("Symbolic links not supported: disabling -L."));
|
---|
| 1817 | check_symlink_flag = 0;
|
---|
| 1818 | }
|
---|
| 1819 | #endif
|
---|
| 1820 |
|
---|
| 1821 | /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */
|
---|
| 1822 |
|
---|
| 1823 | define_makeflags (1, 0);
|
---|
| 1824 |
|
---|
| 1825 | /* Make each `struct dep' point at the `struct file' for the file
|
---|
| 1826 | depended on. Also do magic for special targets. */
|
---|
| 1827 |
|
---|
| 1828 | snap_deps ();
|
---|
| 1829 |
|
---|
| 1830 | /* Convert old-style suffix rules to pattern rules. It is important to
|
---|
| 1831 | do this before installing the built-in pattern rules below, so that
|
---|
| 1832 | makefile-specified suffix rules take precedence over built-in pattern
|
---|
| 1833 | rules. */
|
---|
| 1834 |
|
---|
| 1835 | convert_to_pattern ();
|
---|
| 1836 |
|
---|
| 1837 | /* Install the default implicit pattern rules.
|
---|
| 1838 | This used to be done before reading the makefiles.
|
---|
| 1839 | But in that case, built-in pattern rules were in the chain
|
---|
| 1840 | before user-defined ones, so they matched first. */
|
---|
| 1841 |
|
---|
| 1842 | install_default_implicit_rules ();
|
---|
| 1843 |
|
---|
| 1844 | /* Compute implicit rule limits. */
|
---|
| 1845 |
|
---|
| 1846 | count_implicit_rule_limits ();
|
---|
| 1847 |
|
---|
| 1848 | /* Construct the listings of directories in VPATH lists. */
|
---|
| 1849 |
|
---|
| 1850 | build_vpath_lists ();
|
---|
| 1851 |
|
---|
| 1852 | /* Mark files given with -o flags as very old and as having been updated
|
---|
| 1853 | already, and files given with -W flags as brand new (time-stamp as far
|
---|
| 1854 | as possible into the future). If restarts is set we'll do -W later. */
|
---|
| 1855 |
|
---|
| 1856 | if (old_files != 0)
|
---|
| 1857 | {
|
---|
| 1858 | const char **p;
|
---|
| 1859 | for (p = old_files->list; *p != 0; ++p)
|
---|
| 1860 | {
|
---|
| 1861 | struct file *f = enter_file (*p);
|
---|
| 1862 | f->last_mtime = f->mtime_before_update = OLD_MTIME;
|
---|
| 1863 | f->updated = 1;
|
---|
| 1864 | f->update_status = 0;
|
---|
| 1865 | f->command_state = cs_finished;
|
---|
| 1866 | }
|
---|
| 1867 | }
|
---|
| 1868 |
|
---|
| 1869 | if (!restarts && new_files != 0)
|
---|
| 1870 | {
|
---|
| 1871 | const char **p;
|
---|
| 1872 | for (p = new_files->list; *p != 0; ++p)
|
---|
| 1873 | {
|
---|
| 1874 | struct file *f = enter_file (*p);
|
---|
| 1875 | f->last_mtime = f->mtime_before_update = NEW_MTIME;
|
---|
| 1876 | }
|
---|
| 1877 | }
|
---|
| 1878 |
|
---|
| 1879 | /* Initialize the remote job module. */
|
---|
| 1880 | remote_setup ();
|
---|
| 1881 |
|
---|
| 1882 | if (read_makefiles != 0)
|
---|
| 1883 | {
|
---|
| 1884 | /* Update any makefiles if necessary. */
|
---|
| 1885 |
|
---|
| 1886 | FILE_TIMESTAMP *makefile_mtimes = 0;
|
---|
| 1887 | unsigned int mm_idx = 0;
|
---|
| 1888 | char **nargv;
|
---|
| 1889 | int nargc;
|
---|
| 1890 | int orig_db_level = db_level;
|
---|
| 1891 | int status;
|
---|
| 1892 |
|
---|
| 1893 | if (! ISDB (DB_MAKEFILES))
|
---|
| 1894 | db_level = DB_NONE;
|
---|
| 1895 |
|
---|
| 1896 | DB (DB_BASIC, (_("Updating makefiles....\n")));
|
---|
| 1897 |
|
---|
| 1898 | /* Remove any makefiles we don't want to try to update.
|
---|
| 1899 | Also record the current modtimes so we can compare them later. */
|
---|
| 1900 | {
|
---|
| 1901 | register struct dep *d, *last;
|
---|
| 1902 | last = 0;
|
---|
| 1903 | d = read_makefiles;
|
---|
| 1904 | while (d != 0)
|
---|
| 1905 | {
|
---|
| 1906 | struct file *f = d->file;
|
---|
| 1907 | if (f->double_colon)
|
---|
| 1908 | for (f = f->double_colon; f != NULL; f = f->prev)
|
---|
| 1909 | {
|
---|
| 1910 | if (f->deps == 0 && f->cmds != 0)
|
---|
| 1911 | {
|
---|
| 1912 | /* This makefile is a :: target with commands, but
|
---|
| 1913 | no dependencies. So, it will always be remade.
|
---|
| 1914 | This might well cause an infinite loop, so don't
|
---|
| 1915 | try to remake it. (This will only happen if
|
---|
| 1916 | your makefiles are written exceptionally
|
---|
| 1917 | stupidly; but if you work for Athena, that's how
|
---|
| 1918 | you write your makefiles.) */
|
---|
| 1919 |
|
---|
| 1920 | DB (DB_VERBOSE,
|
---|
| 1921 | (_("Makefile `%s' might loop; not remaking it.\n"),
|
---|
| 1922 | f->name));
|
---|
| 1923 |
|
---|
| 1924 | if (last == 0)
|
---|
| 1925 | read_makefiles = d->next;
|
---|
| 1926 | else
|
---|
| 1927 | last->next = d->next;
|
---|
| 1928 |
|
---|
| 1929 | /* Free the storage. */
|
---|
| 1930 | free_dep (d);
|
---|
| 1931 |
|
---|
| 1932 | d = last == 0 ? read_makefiles : last->next;
|
---|
| 1933 |
|
---|
| 1934 | break;
|
---|
| 1935 | }
|
---|
| 1936 | }
|
---|
| 1937 | if (f == NULL || !f->double_colon)
|
---|
| 1938 | {
|
---|
| 1939 | makefile_mtimes = xrealloc (makefile_mtimes,
|
---|
| 1940 | (mm_idx+1)
|
---|
| 1941 | * sizeof (FILE_TIMESTAMP));
|
---|
| 1942 | makefile_mtimes[mm_idx++] = file_mtime_no_search (d->file);
|
---|
| 1943 | last = d;
|
---|
| 1944 | d = d->next;
|
---|
| 1945 | }
|
---|
| 1946 | }
|
---|
| 1947 | }
|
---|
| 1948 |
|
---|
| 1949 | /* Set up `MAKEFLAGS' specially while remaking makefiles. */
|
---|
| 1950 | define_makeflags (1, 1);
|
---|
| 1951 |
|
---|
| 1952 | rebuilding_makefiles = 1;
|
---|
| 1953 | status = update_goal_chain (read_makefiles);
|
---|
| 1954 | rebuilding_makefiles = 0;
|
---|
| 1955 |
|
---|
| 1956 | switch (status)
|
---|
| 1957 | {
|
---|
| 1958 | case 1:
|
---|
| 1959 | /* The only way this can happen is if the user specified -q and asked
|
---|
| 1960 | * for one of the makefiles to be remade as a target on the command
|
---|
| 1961 | * line. Since we're not actually updating anything with -q we can
|
---|
| 1962 | * treat this as "did nothing".
|
---|
| 1963 | */
|
---|
| 1964 |
|
---|
| 1965 | case -1:
|
---|
| 1966 | /* Did nothing. */
|
---|
| 1967 | break;
|
---|
| 1968 |
|
---|
| 1969 | case 2:
|
---|
| 1970 | /* Failed to update. Figure out if we care. */
|
---|
| 1971 | {
|
---|
| 1972 | /* Nonzero if any makefile was successfully remade. */
|
---|
| 1973 | int any_remade = 0;
|
---|
| 1974 | /* Nonzero if any makefile we care about failed
|
---|
| 1975 | in updating or could not be found at all. */
|
---|
| 1976 | int any_failed = 0;
|
---|
| 1977 | unsigned int i;
|
---|
| 1978 | struct dep *d;
|
---|
| 1979 |
|
---|
| 1980 | for (i = 0, d = read_makefiles; d != 0; ++i, d = d->next)
|
---|
| 1981 | {
|
---|
| 1982 | /* Reset the considered flag; we may need to look at the file
|
---|
| 1983 | again to print an error. */
|
---|
| 1984 | d->file->considered = 0;
|
---|
| 1985 |
|
---|
| 1986 | if (d->file->updated)
|
---|
| 1987 | {
|
---|
| 1988 | /* This makefile was updated. */
|
---|
| 1989 | if (d->file->update_status == 0)
|
---|
| 1990 | {
|
---|
| 1991 | /* It was successfully updated. */
|
---|
| 1992 | any_remade |= (file_mtime_no_search (d->file)
|
---|
| 1993 | != makefile_mtimes[i]);
|
---|
| 1994 | }
|
---|
| 1995 | else if (! (d->changed & RM_DONTCARE))
|
---|
| 1996 | {
|
---|
| 1997 | FILE_TIMESTAMP mtime;
|
---|
| 1998 | /* The update failed and this makefile was not
|
---|
| 1999 | from the MAKEFILES variable, so we care. */
|
---|
| 2000 | error (NILF, _("Failed to remake makefile `%s'."),
|
---|
| 2001 | d->file->name);
|
---|
| 2002 | mtime = file_mtime_no_search (d->file);
|
---|
| 2003 | any_remade |= (mtime != NONEXISTENT_MTIME
|
---|
| 2004 | && mtime != makefile_mtimes[i]);
|
---|
| 2005 | makefile_status = MAKE_FAILURE;
|
---|
| 2006 | }
|
---|
| 2007 | }
|
---|
| 2008 | else
|
---|
| 2009 | /* This makefile was not found at all. */
|
---|
| 2010 | if (! (d->changed & RM_DONTCARE))
|
---|
| 2011 | {
|
---|
| 2012 | /* This is a makefile we care about. See how much. */
|
---|
| 2013 | if (d->changed & RM_INCLUDED)
|
---|
| 2014 | /* An included makefile. We don't need
|
---|
| 2015 | to die, but we do want to complain. */
|
---|
| 2016 | error (NILF,
|
---|
| 2017 | _("Included makefile `%s' was not found."),
|
---|
| 2018 | dep_name (d));
|
---|
| 2019 | else
|
---|
| 2020 | {
|
---|
| 2021 | /* A normal makefile. We must die later. */
|
---|
| 2022 | error (NILF, _("Makefile `%s' was not found"),
|
---|
| 2023 | dep_name (d));
|
---|
| 2024 | any_failed = 1;
|
---|
| 2025 | }
|
---|
| 2026 | }
|
---|
| 2027 | }
|
---|
| 2028 | /* Reset this to empty so we get the right error message below. */
|
---|
| 2029 | read_makefiles = 0;
|
---|
| 2030 |
|
---|
| 2031 | if (any_remade)
|
---|
| 2032 | goto re_exec;
|
---|
| 2033 | if (any_failed)
|
---|
| 2034 | die (2);
|
---|
| 2035 | break;
|
---|
| 2036 | }
|
---|
| 2037 |
|
---|
| 2038 | case 0:
|
---|
| 2039 | re_exec:
|
---|
| 2040 | /* Updated successfully. Re-exec ourselves. */
|
---|
| 2041 |
|
---|
| 2042 | remove_intermediates (0);
|
---|
| 2043 |
|
---|
| 2044 | if (print_data_base_flag)
|
---|
| 2045 | print_data_base ();
|
---|
| 2046 |
|
---|
| 2047 | log_working_directory (0);
|
---|
| 2048 |
|
---|
| 2049 | clean_jobserver (0);
|
---|
| 2050 |
|
---|
| 2051 | if (makefiles != 0)
|
---|
| 2052 | {
|
---|
| 2053 | /* These names might have changed. */
|
---|
| 2054 | int i, j = 0;
|
---|
| 2055 | for (i = 1; i < argc; ++i)
|
---|
| 2056 | if (strneq (argv[i], "-f", 2)) /* XXX */
|
---|
| 2057 | {
|
---|
| 2058 | if (argv[i][2] == '\0')
|
---|
| 2059 | /* This cast is OK since we never modify argv. */
|
---|
| 2060 | argv[++i] = (char *) makefiles->list[j];
|
---|
| 2061 | else
|
---|
| 2062 | argv[i] = xstrdup (concat (2, "-f", makefiles->list[j]));
|
---|
| 2063 | ++j;
|
---|
| 2064 | }
|
---|
| 2065 | }
|
---|
| 2066 |
|
---|
| 2067 | /* Add -o option for the stdin temporary file, if necessary. */
|
---|
| 2068 | nargc = argc;
|
---|
| 2069 | if (stdin_nm)
|
---|
| 2070 | {
|
---|
| 2071 | nargv = xmalloc ((nargc + 2) * sizeof (char *));
|
---|
| 2072 | memcpy (nargv, argv, argc * sizeof (char *));
|
---|
| 2073 | nargv[nargc++] = xstrdup (concat (2, "-o", stdin_nm));
|
---|
| 2074 | nargv[nargc] = 0;
|
---|
| 2075 | }
|
---|
| 2076 | else
|
---|
| 2077 | nargv = argv;
|
---|
| 2078 |
|
---|
| 2079 | if (directories != 0 && directories->idx > 0)
|
---|
| 2080 | {
|
---|
| 2081 | int bad = 1;
|
---|
| 2082 | if (directory_before_chdir != 0)
|
---|
| 2083 | {
|
---|
| 2084 | if (chdir (directory_before_chdir) < 0)
|
---|
| 2085 | perror_with_name ("chdir", "");
|
---|
| 2086 | else
|
---|
| 2087 | bad = 0;
|
---|
| 2088 | }
|
---|
| 2089 | if (bad)
|
---|
| 2090 | fatal (NILF, _("Couldn't change back to original directory."));
|
---|
| 2091 | }
|
---|
| 2092 |
|
---|
| 2093 | ++restarts;
|
---|
| 2094 |
|
---|
| 2095 | /* Reset makeflags in case they were changed. */
|
---|
| 2096 | {
|
---|
| 2097 | const char *pv = define_makeflags (1, 1);
|
---|
| 2098 | char *p = alloca (sizeof ("MAKEFLAGS=") + strlen (pv) + 1);
|
---|
| 2099 | sprintf (p, "MAKEFLAGS=%s", pv);
|
---|
| 2100 | putenv (p);
|
---|
| 2101 | }
|
---|
| 2102 |
|
---|
| 2103 | if (ISDB (DB_BASIC))
|
---|
| 2104 | {
|
---|
| 2105 | char **p;
|
---|
| 2106 | printf (_("Re-executing[%u]:"), restarts);
|
---|
| 2107 | for (p = nargv; *p != 0; ++p)
|
---|
| 2108 | printf (" %s", *p);
|
---|
| 2109 | putchar ('\n');
|
---|
| 2110 | }
|
---|
| 2111 |
|
---|
| 2112 | #ifndef _AMIGA
|
---|
| 2113 | {
|
---|
| 2114 | char **p;
|
---|
| 2115 | for (p = environ; *p != 0; ++p)
|
---|
| 2116 | {
|
---|
| 2117 | if (strneq (*p, MAKELEVEL_NAME, MAKELEVEL_LENGTH)
|
---|
| 2118 | && (*p)[MAKELEVEL_LENGTH] == '=')
|
---|
| 2119 | {
|
---|
| 2120 | *p = alloca (40);
|
---|
| 2121 | sprintf (*p, "%s=%u", MAKELEVEL_NAME, makelevel);
|
---|
| 2122 | }
|
---|
| 2123 | if (strneq (*p, "MAKE_RESTARTS=", 14))
|
---|
| 2124 | {
|
---|
| 2125 | *p = alloca (40);
|
---|
| 2126 | sprintf (*p, "MAKE_RESTARTS=%u", restarts);
|
---|
| 2127 | restarts = 0;
|
---|
| 2128 | }
|
---|
| 2129 | }
|
---|
| 2130 | }
|
---|
| 2131 | #else /* AMIGA */
|
---|
| 2132 | {
|
---|
| 2133 | char buffer[256];
|
---|
| 2134 |
|
---|
| 2135 | sprintf (buffer, "%u", makelevel);
|
---|
| 2136 | SetVar (MAKELEVEL_NAME, buffer, -1, GVF_GLOBAL_ONLY);
|
---|
| 2137 |
|
---|
| 2138 | sprintf (buffer, "%u", restarts);
|
---|
| 2139 | SetVar ("MAKE_RESTARTS", buffer, -1, GVF_GLOBAL_ONLY);
|
---|
| 2140 | restarts = 0;
|
---|
| 2141 | }
|
---|
| 2142 | #endif
|
---|
| 2143 |
|
---|
| 2144 | /* If we didn't set the restarts variable yet, add it. */
|
---|
| 2145 | if (restarts)
|
---|
| 2146 | {
|
---|
| 2147 | char *b = alloca (40);
|
---|
| 2148 | sprintf (b, "MAKE_RESTARTS=%u", restarts);
|
---|
| 2149 | putenv (b);
|
---|
| 2150 | }
|
---|
| 2151 |
|
---|
| 2152 | fflush (stdout);
|
---|
| 2153 | fflush (stderr);
|
---|
| 2154 |
|
---|
| 2155 | /* Close the dup'd jobserver pipe if we opened one. */
|
---|
| 2156 | if (job_rfd >= 0)
|
---|
| 2157 | close (job_rfd);
|
---|
| 2158 |
|
---|
| 2159 | #ifdef _AMIGA
|
---|
| 2160 | exec_command (nargv);
|
---|
| 2161 | exit (0);
|
---|
| 2162 | #elif defined (__EMX__)
|
---|
| 2163 | {
|
---|
| 2164 | /* It is not possible to use execve() here because this
|
---|
| 2165 | would cause the parent process to be terminated with
|
---|
| 2166 | exit code 0 before the child process has been terminated.
|
---|
| 2167 | Therefore it may be the best solution simply to spawn the
|
---|
| 2168 | child process including all file handles and to wait for its
|
---|
| 2169 | termination. */
|
---|
| 2170 | int pid;
|
---|
| 2171 | int status;
|
---|
| 2172 | pid = child_execute_job (0, 1, nargv, environ);
|
---|
| 2173 |
|
---|
| 2174 | /* is this loop really necessary? */
|
---|
| 2175 | do {
|
---|
| 2176 | pid = wait (&status);
|
---|
| 2177 | } while (pid <= 0);
|
---|
| 2178 | /* use the exit code of the child process */
|
---|
| 2179 | exit (WIFEXITED(status) ? WEXITSTATUS(status) : EXIT_FAILURE);
|
---|
| 2180 | }
|
---|
| 2181 | #else
|
---|
| 2182 | exec_command (nargv, environ);
|
---|
| 2183 | #endif
|
---|
| 2184 | /* NOTREACHED */
|
---|
| 2185 |
|
---|
| 2186 | default:
|
---|
| 2187 | #define BOGUS_UPDATE_STATUS 0
|
---|
| 2188 | assert (BOGUS_UPDATE_STATUS);
|
---|
| 2189 | break;
|
---|
| 2190 | }
|
---|
| 2191 |
|
---|
| 2192 | db_level = orig_db_level;
|
---|
| 2193 |
|
---|
| 2194 | /* Free the makefile mtimes (if we allocated any). */
|
---|
| 2195 | if (makefile_mtimes)
|
---|
| 2196 | free (makefile_mtimes);
|
---|
| 2197 | }
|
---|
| 2198 |
|
---|
| 2199 | /* Set up `MAKEFLAGS' again for the normal targets. */
|
---|
| 2200 | define_makeflags (1, 0);
|
---|
| 2201 |
|
---|
| 2202 | /* Set always_make_flag if -B was given. */
|
---|
| 2203 | always_make_flag = always_make_set;
|
---|
| 2204 |
|
---|
| 2205 | /* If restarts is set we haven't set up -W files yet, so do that now. */
|
---|
| 2206 | if (restarts && new_files != 0)
|
---|
| 2207 | {
|
---|
| 2208 | const char **p;
|
---|
| 2209 | for (p = new_files->list; *p != 0; ++p)
|
---|
| 2210 | {
|
---|
| 2211 | struct file *f = enter_file (*p);
|
---|
| 2212 | f->last_mtime = f->mtime_before_update = NEW_MTIME;
|
---|
| 2213 | }
|
---|
| 2214 | }
|
---|
| 2215 |
|
---|
| 2216 | /* If there is a temp file from reading a makefile from stdin, get rid of
|
---|
| 2217 | it now. */
|
---|
| 2218 | if (stdin_nm && unlink (stdin_nm) < 0 && errno != ENOENT)
|
---|
| 2219 | perror_with_name (_("unlink (temporary file): "), stdin_nm);
|
---|
| 2220 |
|
---|
| 2221 | /* If there were no command-line goals, use the default. */
|
---|
| 2222 | if (goals == 0)
|
---|
| 2223 | {
|
---|
| 2224 | char *p;
|
---|
| 2225 |
|
---|
| 2226 | if (default_goal_var->recursive)
|
---|
| 2227 | p = variable_expand (default_goal_var->value);
|
---|
| 2228 | else
|
---|
| 2229 | {
|
---|
| 2230 | p = variable_buffer_output (variable_buffer, default_goal_var->value,
|
---|
| 2231 | strlen (default_goal_var->value));
|
---|
| 2232 | *p = '\0';
|
---|
| 2233 | p = variable_buffer;
|
---|
| 2234 | }
|
---|
| 2235 |
|
---|
| 2236 | if (*p != '\0')
|
---|
| 2237 | {
|
---|
| 2238 | struct file *f = lookup_file (p);
|
---|
| 2239 |
|
---|
| 2240 | /* If .DEFAULT_GOAL is a non-existent target, enter it into the
|
---|
| 2241 | table and let the standard logic sort it out. */
|
---|
| 2242 | if (f == 0)
|
---|
| 2243 | {
|
---|
| 2244 | struct nameseq *ns;
|
---|
| 2245 |
|
---|
| 2246 | ns = PARSE_FILE_SEQ (&p, struct nameseq, '\0', NULL, 0);
|
---|
| 2247 | if (ns)
|
---|
| 2248 | {
|
---|
| 2249 | /* .DEFAULT_GOAL should contain one target. */
|
---|
| 2250 | if (ns->next != 0)
|
---|
| 2251 | fatal (NILF, _(".DEFAULT_GOAL contains more than one target"));
|
---|
| 2252 |
|
---|
| 2253 | f = enter_file (strcache_add (ns->name));
|
---|
| 2254 |
|
---|
| 2255 | ns->name = 0; /* It was reused by enter_file(). */
|
---|
| 2256 | free_ns_chain (ns);
|
---|
| 2257 | }
|
---|
| 2258 | }
|
---|
| 2259 |
|
---|
| 2260 | if (f)
|
---|
| 2261 | {
|
---|
| 2262 | goals = alloc_dep ();
|
---|
| 2263 | goals->file = f;
|
---|
| 2264 | }
|
---|
| 2265 | }
|
---|
| 2266 | }
|
---|
| 2267 | else
|
---|
| 2268 | lastgoal->next = 0;
|
---|
| 2269 |
|
---|
| 2270 |
|
---|
| 2271 | if (!goals)
|
---|
| 2272 | {
|
---|
| 2273 | if (read_makefiles == 0)
|
---|
| 2274 | fatal (NILF, _("No targets specified and no makefile found"));
|
---|
| 2275 |
|
---|
| 2276 | fatal (NILF, _("No targets"));
|
---|
| 2277 | }
|
---|
| 2278 |
|
---|
| 2279 | /* Update the goals. */
|
---|
| 2280 |
|
---|
| 2281 | DB (DB_BASIC, (_("Updating goal targets....\n")));
|
---|
| 2282 |
|
---|
| 2283 | {
|
---|
| 2284 | int status;
|
---|
| 2285 |
|
---|
| 2286 | switch (update_goal_chain (goals))
|
---|
| 2287 | {
|
---|
| 2288 | case -1:
|
---|
| 2289 | /* Nothing happened. */
|
---|
| 2290 | case 0:
|
---|
| 2291 | /* Updated successfully. */
|
---|
| 2292 | status = makefile_status;
|
---|
| 2293 | break;
|
---|
| 2294 | case 1:
|
---|
| 2295 | /* We are under -q and would run some commands. */
|
---|
| 2296 | status = MAKE_TROUBLE;
|
---|
| 2297 | break;
|
---|
| 2298 | case 2:
|
---|
| 2299 | /* Updating failed. POSIX.2 specifies exit status >1 for this;
|
---|
| 2300 | but in VMS, there is only success and failure. */
|
---|
| 2301 | status = MAKE_FAILURE;
|
---|
| 2302 | break;
|
---|
| 2303 | default:
|
---|
| 2304 | abort ();
|
---|
| 2305 | }
|
---|
| 2306 |
|
---|
| 2307 | /* If we detected some clock skew, generate one last warning */
|
---|
| 2308 | if (clock_skew_detected)
|
---|
| 2309 | error (NILF,
|
---|
| 2310 | _("warning: Clock skew detected. Your build may be incomplete."));
|
---|
| 2311 |
|
---|
| 2312 | /* Exit. */
|
---|
| 2313 | die (status);
|
---|
| 2314 | }
|
---|
| 2315 |
|
---|
| 2316 | /* NOTREACHED */
|
---|
| 2317 | return 0;
|
---|
| 2318 | }
|
---|
| 2319 | |
---|
| 2320 |
|
---|
| 2321 | /* Parsing of arguments, decoding of switches. */
|
---|
| 2322 |
|
---|
| 2323 | static char options[1 + sizeof (switches) / sizeof (switches[0]) * 3];
|
---|
| 2324 | static struct option long_options[(sizeof (switches) / sizeof (switches[0])) +
|
---|
| 2325 | (sizeof (long_option_aliases) /
|
---|
| 2326 | sizeof (long_option_aliases[0]))];
|
---|
| 2327 |
|
---|
| 2328 | /* Fill in the string and vector for getopt. */
|
---|
| 2329 | static void
|
---|
| 2330 | init_switches (void)
|
---|
| 2331 | {
|
---|
| 2332 | char *p;
|
---|
| 2333 | unsigned int c;
|
---|
| 2334 | unsigned int i;
|
---|
| 2335 |
|
---|
| 2336 | if (options[0] != '\0')
|
---|
| 2337 | /* Already done. */
|
---|
| 2338 | return;
|
---|
| 2339 |
|
---|
| 2340 | p = options;
|
---|
| 2341 |
|
---|
| 2342 | /* Return switch and non-switch args in order, regardless of
|
---|
| 2343 | POSIXLY_CORRECT. Non-switch args are returned as option 1. */
|
---|
| 2344 | *p++ = '-';
|
---|
| 2345 |
|
---|
| 2346 | for (i = 0; switches[i].c != '\0'; ++i)
|
---|
| 2347 | {
|
---|
| 2348 | long_options[i].name = (switches[i].long_name == 0 ? "" :
|
---|
| 2349 | switches[i].long_name);
|
---|
| 2350 | long_options[i].flag = 0;
|
---|
| 2351 | long_options[i].val = switches[i].c;
|
---|
| 2352 | if (short_option (switches[i].c))
|
---|
| 2353 | *p++ = switches[i].c;
|
---|
| 2354 | switch (switches[i].type)
|
---|
| 2355 | {
|
---|
| 2356 | case flag:
|
---|
| 2357 | case flag_off:
|
---|
| 2358 | case ignore:
|
---|
| 2359 | long_options[i].has_arg = no_argument;
|
---|
| 2360 | break;
|
---|
| 2361 |
|
---|
| 2362 | case string:
|
---|
| 2363 | case filename:
|
---|
| 2364 | case positive_int:
|
---|
| 2365 | case floating:
|
---|
| 2366 | if (short_option (switches[i].c))
|
---|
| 2367 | *p++ = ':';
|
---|
| 2368 | if (switches[i].noarg_value != 0)
|
---|
| 2369 | {
|
---|
| 2370 | if (short_option (switches[i].c))
|
---|
| 2371 | *p++ = ':';
|
---|
| 2372 | long_options[i].has_arg = optional_argument;
|
---|
| 2373 | }
|
---|
| 2374 | else
|
---|
| 2375 | long_options[i].has_arg = required_argument;
|
---|
| 2376 | break;
|
---|
| 2377 | }
|
---|
| 2378 | }
|
---|
| 2379 | *p = '\0';
|
---|
| 2380 | for (c = 0; c < (sizeof (long_option_aliases) /
|
---|
| 2381 | sizeof (long_option_aliases[0]));
|
---|
| 2382 | ++c)
|
---|
| 2383 | long_options[i++] = long_option_aliases[c];
|
---|
| 2384 | long_options[i].name = 0;
|
---|
| 2385 | }
|
---|
| 2386 |
|
---|
| 2387 | static void
|
---|
| 2388 | handle_non_switch_argument (char *arg, int env)
|
---|
| 2389 | {
|
---|
| 2390 | /* Non-option argument. It might be a variable definition. */
|
---|
| 2391 | struct variable *v;
|
---|
| 2392 | if (arg[0] == '-' && arg[1] == '\0')
|
---|
| 2393 | /* Ignore plain `-' for compatibility. */
|
---|
| 2394 | return;
|
---|
| 2395 | v = try_variable_definition (0, arg, o_command, 0);
|
---|
| 2396 | if (v != 0)
|
---|
| 2397 | {
|
---|
| 2398 | /* It is indeed a variable definition. If we don't already have this
|
---|
| 2399 | one, record a pointer to the variable for later use in
|
---|
| 2400 | define_makeflags. */
|
---|
| 2401 | struct command_variable *cv;
|
---|
| 2402 |
|
---|
| 2403 | for (cv = command_variables; cv != 0; cv = cv->next)
|
---|
| 2404 | if (cv->variable == v)
|
---|
| 2405 | break;
|
---|
| 2406 |
|
---|
| 2407 | if (! cv) {
|
---|
| 2408 | cv = xmalloc (sizeof (*cv));
|
---|
| 2409 | cv->variable = v;
|
---|
| 2410 | cv->next = command_variables;
|
---|
| 2411 | command_variables = cv;
|
---|
| 2412 | }
|
---|
| 2413 | }
|
---|
| 2414 | else if (! env)
|
---|
| 2415 | {
|
---|
| 2416 | /* Not an option or variable definition; it must be a goal
|
---|
| 2417 | target! Enter it as a file and add it to the dep chain of
|
---|
| 2418 | goals. */
|
---|
| 2419 | struct file *f = enter_file (strcache_add (expand_command_line_file (arg)));
|
---|
| 2420 | f->cmd_target = 1;
|
---|
| 2421 |
|
---|
| 2422 | if (goals == 0)
|
---|
| 2423 | {
|
---|
| 2424 | goals = alloc_dep ();
|
---|
| 2425 | lastgoal = goals;
|
---|
| 2426 | }
|
---|
| 2427 | else
|
---|
| 2428 | {
|
---|
| 2429 | lastgoal->next = alloc_dep ();
|
---|
| 2430 | lastgoal = lastgoal->next;
|
---|
| 2431 | }
|
---|
| 2432 |
|
---|
| 2433 | lastgoal->file = f;
|
---|
| 2434 |
|
---|
| 2435 | {
|
---|
| 2436 | /* Add this target name to the MAKECMDGOALS variable. */
|
---|
| 2437 | struct variable *gv;
|
---|
| 2438 | const char *value;
|
---|
| 2439 |
|
---|
| 2440 | gv = lookup_variable (STRING_SIZE_TUPLE ("MAKECMDGOALS"));
|
---|
| 2441 | if (gv == 0)
|
---|
| 2442 | value = f->name;
|
---|
| 2443 | else
|
---|
| 2444 | {
|
---|
| 2445 | /* Paste the old and new values together */
|
---|
| 2446 | unsigned int oldlen, newlen;
|
---|
| 2447 | char *vp;
|
---|
| 2448 |
|
---|
| 2449 | oldlen = strlen (gv->value);
|
---|
| 2450 | newlen = strlen (f->name);
|
---|
| 2451 | vp = alloca (oldlen + 1 + newlen + 1);
|
---|
| 2452 | memcpy (vp, gv->value, oldlen);
|
---|
| 2453 | vp[oldlen] = ' ';
|
---|
| 2454 | memcpy (&vp[oldlen + 1], f->name, newlen + 1);
|
---|
| 2455 | value = vp;
|
---|
| 2456 | }
|
---|
| 2457 | define_variable_cname ("MAKECMDGOALS", value, o_default, 0);
|
---|
| 2458 | }
|
---|
| 2459 | }
|
---|
| 2460 | }
|
---|
| 2461 |
|
---|
| 2462 | /* Print a nice usage method. */
|
---|
| 2463 |
|
---|
| 2464 | static void
|
---|
| 2465 | print_usage (int bad)
|
---|
| 2466 | {
|
---|
| 2467 | const char *const *cpp;
|
---|
| 2468 | FILE *usageto;
|
---|
| 2469 |
|
---|
| 2470 | if (print_version_flag)
|
---|
| 2471 | print_version ();
|
---|
| 2472 |
|
---|
| 2473 | usageto = bad ? stderr : stdout;
|
---|
| 2474 |
|
---|
| 2475 | fprintf (usageto, _("Usage: %s [options] [target] ...\n"), program);
|
---|
| 2476 |
|
---|
| 2477 | for (cpp = usage; *cpp; ++cpp)
|
---|
| 2478 | fputs (_(*cpp), usageto);
|
---|
| 2479 |
|
---|
| 2480 | if (!remote_description || *remote_description == '\0')
|
---|
| 2481 | fprintf (usageto, _("\nThis program built for %s\n"), make_host);
|
---|
| 2482 | else
|
---|
| 2483 | fprintf (usageto, _("\nThis program built for %s (%s)\n"),
|
---|
| 2484 | make_host, remote_description);
|
---|
| 2485 |
|
---|
| 2486 | fprintf (usageto, _("Report bugs to <bug-make@gnu.org>\n"));
|
---|
| 2487 | }
|
---|
| 2488 |
|
---|
| 2489 | /* Decode switches from ARGC and ARGV.
|
---|
| 2490 | They came from the environment if ENV is nonzero. */
|
---|
| 2491 |
|
---|
| 2492 | static void
|
---|
| 2493 | decode_switches (int argc, char **argv, int env)
|
---|
| 2494 | {
|
---|
| 2495 | int bad = 0;
|
---|
| 2496 | register const struct command_switch *cs;
|
---|
| 2497 | register struct stringlist *sl;
|
---|
| 2498 | register int c;
|
---|
| 2499 |
|
---|
| 2500 | /* getopt does most of the parsing for us.
|
---|
| 2501 | First, get its vectors set up. */
|
---|
| 2502 |
|
---|
| 2503 | init_switches ();
|
---|
| 2504 |
|
---|
| 2505 | /* Let getopt produce error messages for the command line,
|
---|
| 2506 | but not for options from the environment. */
|
---|
| 2507 | opterr = !env;
|
---|
| 2508 | /* Reset getopt's state. */
|
---|
| 2509 | optind = 0;
|
---|
| 2510 |
|
---|
| 2511 | while (optind < argc)
|
---|
| 2512 | {
|
---|
| 2513 | /* Parse the next argument. */
|
---|
| 2514 | c = getopt_long (argc, argv, options, long_options, (int *) 0);
|
---|
| 2515 | if (c == EOF)
|
---|
| 2516 | /* End of arguments, or "--" marker seen. */
|
---|
| 2517 | break;
|
---|
| 2518 | else if (c == 1)
|
---|
| 2519 | /* An argument not starting with a dash. */
|
---|
| 2520 | handle_non_switch_argument (optarg, env);
|
---|
| 2521 | else if (c == '?')
|
---|
| 2522 | /* Bad option. We will print a usage message and die later.
|
---|
| 2523 | But continue to parse the other options so the user can
|
---|
| 2524 | see all he did wrong. */
|
---|
| 2525 | bad = 1;
|
---|
| 2526 | else
|
---|
| 2527 | for (cs = switches; cs->c != '\0'; ++cs)
|
---|
| 2528 | if (cs->c == c)
|
---|
| 2529 | {
|
---|
| 2530 | /* Whether or not we will actually do anything with
|
---|
| 2531 | this switch. We test this individually inside the
|
---|
| 2532 | switch below rather than just once outside it, so that
|
---|
| 2533 | options which are to be ignored still consume args. */
|
---|
| 2534 | int doit = !env || cs->env;
|
---|
| 2535 |
|
---|
| 2536 | switch (cs->type)
|
---|
| 2537 | {
|
---|
| 2538 | default:
|
---|
| 2539 | abort ();
|
---|
| 2540 |
|
---|
| 2541 | case ignore:
|
---|
| 2542 | break;
|
---|
| 2543 |
|
---|
| 2544 | case flag:
|
---|
| 2545 | case flag_off:
|
---|
| 2546 | if (doit)
|
---|
| 2547 | *(int *) cs->value_ptr = cs->type == flag;
|
---|
| 2548 | break;
|
---|
| 2549 |
|
---|
| 2550 | case string:
|
---|
| 2551 | case filename:
|
---|
| 2552 | if (!doit)
|
---|
| 2553 | break;
|
---|
| 2554 |
|
---|
| 2555 | if (optarg == 0)
|
---|
| 2556 | optarg = xstrdup (cs->noarg_value);
|
---|
| 2557 | else if (*optarg == '\0')
|
---|
| 2558 | {
|
---|
| 2559 | char opt[2] = "c";
|
---|
| 2560 | const char *op = opt;
|
---|
| 2561 |
|
---|
| 2562 | if (short_option (cs->c))
|
---|
| 2563 | opt[0] = cs->c;
|
---|
| 2564 | else
|
---|
| 2565 | op = cs->long_name;
|
---|
| 2566 |
|
---|
| 2567 | error (NILF, _("the `%s%s' option requires a non-empty string argument"),
|
---|
| 2568 | short_option (cs->c) ? "-" : "--", op);
|
---|
| 2569 | bad = 1;
|
---|
| 2570 | }
|
---|
| 2571 |
|
---|
| 2572 | sl = *(struct stringlist **) cs->value_ptr;
|
---|
| 2573 | if (sl == 0)
|
---|
| 2574 | {
|
---|
| 2575 | sl = (struct stringlist *)
|
---|
| 2576 | xmalloc (sizeof (struct stringlist));
|
---|
| 2577 | sl->max = 5;
|
---|
| 2578 | sl->idx = 0;
|
---|
| 2579 | sl->list = xmalloc (5 * sizeof (char *));
|
---|
| 2580 | *(struct stringlist **) cs->value_ptr = sl;
|
---|
| 2581 | }
|
---|
| 2582 | else if (sl->idx == sl->max - 1)
|
---|
| 2583 | {
|
---|
| 2584 | sl->max += 5;
|
---|
| 2585 | /* MSVC erroneously warns without a cast here. */
|
---|
| 2586 | sl->list = xrealloc ((void *)sl->list,
|
---|
| 2587 | sl->max * sizeof (char *));
|
---|
| 2588 | }
|
---|
| 2589 | if (cs->type == filename)
|
---|
| 2590 | sl->list[sl->idx++] = expand_command_line_file (optarg);
|
---|
| 2591 | else
|
---|
| 2592 | sl->list[sl->idx++] = optarg;
|
---|
| 2593 | sl->list[sl->idx] = 0;
|
---|
| 2594 | break;
|
---|
| 2595 |
|
---|
| 2596 | case positive_int:
|
---|
| 2597 | /* See if we have an option argument; if we do require that
|
---|
| 2598 | it's all digits, not something like "10foo". */
|
---|
| 2599 | if (optarg == 0 && argc > optind)
|
---|
| 2600 | {
|
---|
| 2601 | const char *cp;
|
---|
| 2602 | for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp)
|
---|
| 2603 | ;
|
---|
| 2604 | if (cp[0] == '\0')
|
---|
| 2605 | optarg = argv[optind++];
|
---|
| 2606 | }
|
---|
| 2607 |
|
---|
| 2608 | if (!doit)
|
---|
| 2609 | break;
|
---|
| 2610 |
|
---|
| 2611 | if (optarg != 0)
|
---|
| 2612 | {
|
---|
| 2613 | int i = atoi (optarg);
|
---|
| 2614 | const char *cp;
|
---|
| 2615 |
|
---|
| 2616 | /* Yes, I realize we're repeating this in some cases. */
|
---|
| 2617 | for (cp = optarg; ISDIGIT (cp[0]); ++cp)
|
---|
| 2618 | ;
|
---|
| 2619 |
|
---|
| 2620 | if (i < 1 || cp[0] != '\0')
|
---|
| 2621 | {
|
---|
| 2622 | error (NILF, _("the `-%c' option requires a positive integral argument"),
|
---|
| 2623 | cs->c);
|
---|
| 2624 | bad = 1;
|
---|
| 2625 | }
|
---|
| 2626 | else
|
---|
| 2627 | *(unsigned int *) cs->value_ptr = i;
|
---|
| 2628 | }
|
---|
| 2629 | else
|
---|
| 2630 | *(unsigned int *) cs->value_ptr
|
---|
| 2631 | = *(unsigned int *) cs->noarg_value;
|
---|
| 2632 | break;
|
---|
| 2633 |
|
---|
| 2634 | #ifndef NO_FLOAT
|
---|
| 2635 | case floating:
|
---|
| 2636 | if (optarg == 0 && optind < argc
|
---|
| 2637 | && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.'))
|
---|
| 2638 | optarg = argv[optind++];
|
---|
| 2639 |
|
---|
| 2640 | if (doit)
|
---|
| 2641 | *(double *) cs->value_ptr
|
---|
| 2642 | = (optarg != 0 ? atof (optarg)
|
---|
| 2643 | : *(double *) cs->noarg_value);
|
---|
| 2644 |
|
---|
| 2645 | break;
|
---|
| 2646 | #endif
|
---|
| 2647 | }
|
---|
| 2648 |
|
---|
| 2649 | /* We've found the switch. Stop looking. */
|
---|
| 2650 | break;
|
---|
| 2651 | }
|
---|
| 2652 | }
|
---|
| 2653 |
|
---|
| 2654 | /* There are no more options according to getting getopt, but there may
|
---|
| 2655 | be some arguments left. Since we have asked for non-option arguments
|
---|
| 2656 | to be returned in order, this only happens when there is a "--"
|
---|
| 2657 | argument to prevent later arguments from being options. */
|
---|
| 2658 | while (optind < argc)
|
---|
| 2659 | handle_non_switch_argument (argv[optind++], env);
|
---|
| 2660 |
|
---|
| 2661 |
|
---|
| 2662 | if (!env && (bad || print_usage_flag))
|
---|
| 2663 | {
|
---|
| 2664 | print_usage (bad);
|
---|
| 2665 | die (bad ? 2 : 0);
|
---|
| 2666 | }
|
---|
| 2667 | }
|
---|
| 2668 |
|
---|
| 2669 | /* Decode switches from environment variable ENVAR (which is LEN chars long).
|
---|
| 2670 | We do this by chopping the value into a vector of words, prepending a
|
---|
| 2671 | dash to the first word if it lacks one, and passing the vector to
|
---|
| 2672 | decode_switches. */
|
---|
| 2673 |
|
---|
| 2674 | static void
|
---|
| 2675 | decode_env_switches (char *envar, unsigned int len)
|
---|
| 2676 | {
|
---|
| 2677 | char *varref = alloca (2 + len + 2);
|
---|
| 2678 | char *value, *p;
|
---|
| 2679 | int argc;
|
---|
| 2680 | char **argv;
|
---|
| 2681 |
|
---|
| 2682 | /* Get the variable's value. */
|
---|
| 2683 | varref[0] = '$';
|
---|
| 2684 | varref[1] = '(';
|
---|
| 2685 | memcpy (&varref[2], envar, len);
|
---|
| 2686 | varref[2 + len] = ')';
|
---|
| 2687 | varref[2 + len + 1] = '\0';
|
---|
| 2688 | value = variable_expand (varref);
|
---|
| 2689 |
|
---|
| 2690 | /* Skip whitespace, and check for an empty value. */
|
---|
| 2691 | value = next_token (value);
|
---|
| 2692 | len = strlen (value);
|
---|
| 2693 | if (len == 0)
|
---|
| 2694 | return;
|
---|
| 2695 |
|
---|
| 2696 | /* Allocate a vector that is definitely big enough. */
|
---|
| 2697 | argv = alloca ((1 + len + 1) * sizeof (char *));
|
---|
| 2698 |
|
---|
| 2699 | /* Allocate a buffer to copy the value into while we split it into words
|
---|
| 2700 | and unquote it. We must use permanent storage for this because
|
---|
| 2701 | decode_switches may store pointers into the passed argument words. */
|
---|
| 2702 | p = xmalloc (2 * len);
|
---|
| 2703 |
|
---|
| 2704 | /* getopt will look at the arguments starting at ARGV[1].
|
---|
| 2705 | Prepend a spacer word. */
|
---|
| 2706 | argv[0] = 0;
|
---|
| 2707 | argc = 1;
|
---|
| 2708 | argv[argc] = p;
|
---|
| 2709 | while (*value != '\0')
|
---|
| 2710 | {
|
---|
| 2711 | if (*value == '\\' && value[1] != '\0')
|
---|
| 2712 | ++value; /* Skip the backslash. */
|
---|
| 2713 | else if (isblank ((unsigned char)*value))
|
---|
| 2714 | {
|
---|
| 2715 | /* End of the word. */
|
---|
| 2716 | *p++ = '\0';
|
---|
| 2717 | argv[++argc] = p;
|
---|
| 2718 | do
|
---|
| 2719 | ++value;
|
---|
| 2720 | while (isblank ((unsigned char)*value));
|
---|
| 2721 | continue;
|
---|
| 2722 | }
|
---|
| 2723 | *p++ = *value++;
|
---|
| 2724 | }
|
---|
| 2725 | *p = '\0';
|
---|
| 2726 | argv[++argc] = 0;
|
---|
| 2727 |
|
---|
| 2728 | if (argv[1][0] != '-' && strchr (argv[1], '=') == 0)
|
---|
| 2729 | /* The first word doesn't start with a dash and isn't a variable
|
---|
| 2730 | definition. Add a dash and pass it along to decode_switches. We
|
---|
| 2731 | need permanent storage for this in case decode_switches saves
|
---|
| 2732 | pointers into the value. */
|
---|
| 2733 | argv[1] = xstrdup (concat (2, "-", argv[1]));
|
---|
| 2734 |
|
---|
| 2735 | /* Parse those words. */
|
---|
| 2736 | decode_switches (argc, argv, 1);
|
---|
| 2737 | }
|
---|
| 2738 | |
---|
| 2739 |
|
---|
| 2740 | /* Quote the string IN so that it will be interpreted as a single word with
|
---|
| 2741 | no magic by decode_env_switches; also double dollar signs to avoid
|
---|
| 2742 | variable expansion in make itself. Write the result into OUT, returning
|
---|
| 2743 | the address of the next character to be written.
|
---|
| 2744 | Allocating space for OUT twice the length of IN is always sufficient. */
|
---|
| 2745 |
|
---|
| 2746 | static char *
|
---|
| 2747 | quote_for_env (char *out, const char *in)
|
---|
| 2748 | {
|
---|
| 2749 | while (*in != '\0')
|
---|
| 2750 | {
|
---|
| 2751 | if (*in == '$')
|
---|
| 2752 | *out++ = '$';
|
---|
| 2753 | else if (isblank ((unsigned char)*in) || *in == '\\')
|
---|
| 2754 | *out++ = '\\';
|
---|
| 2755 | *out++ = *in++;
|
---|
| 2756 | }
|
---|
| 2757 |
|
---|
| 2758 | return out;
|
---|
| 2759 | }
|
---|
| 2760 |
|
---|
| 2761 | /* Define the MAKEFLAGS and MFLAGS variables to reflect the settings of the
|
---|
| 2762 | command switches. Include options with args if ALL is nonzero.
|
---|
| 2763 | Don't include options with the `no_makefile' flag set if MAKEFILE. */
|
---|
| 2764 |
|
---|
| 2765 | static const char *
|
---|
| 2766 | define_makeflags (int all, int makefile)
|
---|
| 2767 | {
|
---|
| 2768 | const char ref[] = "$(MAKEOVERRIDES)";
|
---|
| 2769 | const char posixref[] = "$(-*-command-variables-*-)";
|
---|
| 2770 | const char evalref[] = "$(-*-eval-flags-*-)";
|
---|
| 2771 | const struct command_switch *cs;
|
---|
| 2772 | char *flagstring;
|
---|
| 2773 | register char *p;
|
---|
| 2774 | unsigned int words;
|
---|
| 2775 | struct variable *v;
|
---|
| 2776 |
|
---|
| 2777 | /* We will construct a linked list of `struct flag's describing
|
---|
| 2778 | all the flags which need to go in MAKEFLAGS. Then, once we
|
---|
| 2779 | know how many there are and their lengths, we can put them all
|
---|
| 2780 | together in a string. */
|
---|
| 2781 |
|
---|
| 2782 | struct flag
|
---|
| 2783 | {
|
---|
| 2784 | struct flag *next;
|
---|
| 2785 | const struct command_switch *cs;
|
---|
| 2786 | const char *arg;
|
---|
| 2787 | };
|
---|
| 2788 | struct flag *flags = 0;
|
---|
| 2789 | unsigned int flagslen = 0;
|
---|
| 2790 | #define ADD_FLAG(ARG, LEN) \
|
---|
| 2791 | do { \
|
---|
| 2792 | struct flag *new = alloca (sizeof (struct flag)); \
|
---|
| 2793 | new->cs = cs; \
|
---|
| 2794 | new->arg = (ARG); \
|
---|
| 2795 | new->next = flags; \
|
---|
| 2796 | flags = new; \
|
---|
| 2797 | if (new->arg == 0) \
|
---|
| 2798 | ++flagslen; /* Just a single flag letter. */ \
|
---|
| 2799 | else \
|
---|
| 2800 | /* " -x foo", plus space to expand "foo". */ \
|
---|
| 2801 | flagslen += 1 + 1 + 1 + 1 + (3 * (LEN)); \
|
---|
| 2802 | if (!short_option (cs->c)) \
|
---|
| 2803 | /* This switch has no single-letter version, so we use the long. */ \
|
---|
| 2804 | flagslen += 2 + strlen (cs->long_name); \
|
---|
| 2805 | } while (0)
|
---|
| 2806 |
|
---|
| 2807 | for (cs = switches; cs->c != '\0'; ++cs)
|
---|
| 2808 | if (cs->toenv && (!makefile || !cs->no_makefile))
|
---|
| 2809 | switch (cs->type)
|
---|
| 2810 | {
|
---|
| 2811 | case ignore:
|
---|
| 2812 | break;
|
---|
| 2813 |
|
---|
| 2814 | case flag:
|
---|
| 2815 | case flag_off:
|
---|
| 2816 | if (!*(int *) cs->value_ptr == (cs->type == flag_off)
|
---|
| 2817 | && (cs->default_value == 0
|
---|
| 2818 | || *(int *) cs->value_ptr != *(int *) cs->default_value))
|
---|
| 2819 | ADD_FLAG (0, 0);
|
---|
| 2820 | break;
|
---|
| 2821 |
|
---|
| 2822 | case positive_int:
|
---|
| 2823 | if (all)
|
---|
| 2824 | {
|
---|
| 2825 | if ((cs->default_value != 0
|
---|
| 2826 | && (*(unsigned int *) cs->value_ptr
|
---|
| 2827 | == *(unsigned int *) cs->default_value)))
|
---|
| 2828 | break;
|
---|
| 2829 | else if (cs->noarg_value != 0
|
---|
| 2830 | && (*(unsigned int *) cs->value_ptr ==
|
---|
| 2831 | *(unsigned int *) cs->noarg_value))
|
---|
| 2832 | ADD_FLAG ("", 0); /* Optional value omitted; see below. */
|
---|
| 2833 | else if (cs->c == 'j')
|
---|
| 2834 | /* Special case for `-j'. */
|
---|
| 2835 | ADD_FLAG ("1", 1);
|
---|
| 2836 | else
|
---|
| 2837 | {
|
---|
| 2838 | char *buf = alloca (30);
|
---|
| 2839 | sprintf (buf, "%u", *(unsigned int *) cs->value_ptr);
|
---|
| 2840 | ADD_FLAG (buf, strlen (buf));
|
---|
| 2841 | }
|
---|
| 2842 | }
|
---|
| 2843 | break;
|
---|
| 2844 |
|
---|
| 2845 | #ifndef NO_FLOAT
|
---|
| 2846 | case floating:
|
---|
| 2847 | if (all)
|
---|
| 2848 | {
|
---|
| 2849 | if (cs->default_value != 0
|
---|
| 2850 | && (*(double *) cs->value_ptr
|
---|
| 2851 | == *(double *) cs->default_value))
|
---|
| 2852 | break;
|
---|
| 2853 | else if (cs->noarg_value != 0
|
---|
| 2854 | && (*(double *) cs->value_ptr
|
---|
| 2855 | == *(double *) cs->noarg_value))
|
---|
| 2856 | ADD_FLAG ("", 0); /* Optional value omitted; see below. */
|
---|
| 2857 | else
|
---|
| 2858 | {
|
---|
| 2859 | char *buf = alloca (100);
|
---|
| 2860 | sprintf (buf, "%g", *(double *) cs->value_ptr);
|
---|
| 2861 | ADD_FLAG (buf, strlen (buf));
|
---|
| 2862 | }
|
---|
| 2863 | }
|
---|
| 2864 | break;
|
---|
| 2865 | #endif
|
---|
| 2866 |
|
---|
| 2867 | case filename:
|
---|
| 2868 | case string:
|
---|
| 2869 | if (all)
|
---|
| 2870 | {
|
---|
| 2871 | struct stringlist *sl = *(struct stringlist **) cs->value_ptr;
|
---|
| 2872 | if (sl != 0)
|
---|
| 2873 | {
|
---|
| 2874 | /* Add the elements in reverse order, because all the flags
|
---|
| 2875 | get reversed below; and the order matters for some
|
---|
| 2876 | switches (like -I). */
|
---|
| 2877 | unsigned int i = sl->idx;
|
---|
| 2878 | while (i-- > 0)
|
---|
| 2879 | ADD_FLAG (sl->list[i], strlen (sl->list[i]));
|
---|
| 2880 | }
|
---|
| 2881 | }
|
---|
| 2882 | break;
|
---|
| 2883 |
|
---|
| 2884 | default:
|
---|
| 2885 | abort ();
|
---|
| 2886 | }
|
---|
| 2887 |
|
---|
| 2888 | /* Four more for the possible " -- ". */
|
---|
| 2889 | flagslen += 4 + sizeof (posixref) + sizeof (evalref);
|
---|
| 2890 |
|
---|
| 2891 | #undef ADD_FLAG
|
---|
| 2892 |
|
---|
| 2893 | /* Construct the value in FLAGSTRING.
|
---|
| 2894 | We allocate enough space for a preceding dash and trailing null. */
|
---|
| 2895 | flagstring = alloca (1 + flagslen + 1);
|
---|
| 2896 | memset (flagstring, '\0', 1 + flagslen + 1);
|
---|
| 2897 | p = flagstring;
|
---|
| 2898 | words = 1;
|
---|
| 2899 | *p++ = '-';
|
---|
| 2900 | while (flags != 0)
|
---|
| 2901 | {
|
---|
| 2902 | /* Add the flag letter or name to the string. */
|
---|
| 2903 | if (short_option (flags->cs->c))
|
---|
| 2904 | *p++ = flags->cs->c;
|
---|
| 2905 | else
|
---|
| 2906 | {
|
---|
| 2907 | if (*p != '-')
|
---|
| 2908 | {
|
---|
| 2909 | *p++ = ' ';
|
---|
| 2910 | *p++ = '-';
|
---|
| 2911 | }
|
---|
| 2912 | *p++ = '-';
|
---|
| 2913 | strcpy (p, flags->cs->long_name);
|
---|
| 2914 | p += strlen (p);
|
---|
| 2915 | }
|
---|
| 2916 | if (flags->arg != 0)
|
---|
| 2917 | {
|
---|
| 2918 | /* A flag that takes an optional argument which in this case is
|
---|
| 2919 | omitted is specified by ARG being "". We must distinguish
|
---|
| 2920 | because a following flag appended without an intervening " -"
|
---|
| 2921 | is considered the arg for the first. */
|
---|
| 2922 | if (flags->arg[0] != '\0')
|
---|
| 2923 | {
|
---|
| 2924 | /* Add its argument too. */
|
---|
| 2925 | *p++ = !short_option (flags->cs->c) ? '=' : ' ';
|
---|
| 2926 | p = quote_for_env (p, flags->arg);
|
---|
| 2927 | }
|
---|
| 2928 | ++words;
|
---|
| 2929 | /* Write a following space and dash, for the next flag. */
|
---|
| 2930 | *p++ = ' ';
|
---|
| 2931 | *p++ = '-';
|
---|
| 2932 | }
|
---|
| 2933 | else if (!short_option (flags->cs->c))
|
---|
| 2934 | {
|
---|
| 2935 | ++words;
|
---|
| 2936 | /* Long options must each go in their own word,
|
---|
| 2937 | so we write the following space and dash. */
|
---|
| 2938 | *p++ = ' ';
|
---|
| 2939 | *p++ = '-';
|
---|
| 2940 | }
|
---|
| 2941 | flags = flags->next;
|
---|
| 2942 | }
|
---|
| 2943 |
|
---|
| 2944 | /* Define MFLAGS before appending variable definitions. */
|
---|
| 2945 |
|
---|
| 2946 | if (p == &flagstring[1])
|
---|
| 2947 | /* No flags. */
|
---|
| 2948 | flagstring[0] = '\0';
|
---|
| 2949 | else if (p[-1] == '-')
|
---|
| 2950 | {
|
---|
| 2951 | /* Kill the final space and dash. */
|
---|
| 2952 | p -= 2;
|
---|
| 2953 | *p = '\0';
|
---|
| 2954 | }
|
---|
| 2955 | else
|
---|
| 2956 | /* Terminate the string. */
|
---|
| 2957 | *p = '\0';
|
---|
| 2958 |
|
---|
| 2959 | /* Since MFLAGS is not parsed for flags, there is no reason to
|
---|
| 2960 | override any makefile redefinition. */
|
---|
| 2961 | define_variable_cname ("MFLAGS", flagstring, o_env, 1);
|
---|
| 2962 |
|
---|
| 2963 | /* Write a reference to -*-eval-flags-*-, which contains all the --eval
|
---|
| 2964 | flag options. */
|
---|
| 2965 | if (eval_strings)
|
---|
| 2966 | {
|
---|
| 2967 | if (p == &flagstring[1])
|
---|
| 2968 | /* No flags written, so elide the leading dash already written. */
|
---|
| 2969 | p = flagstring;
|
---|
| 2970 | else
|
---|
| 2971 | *p++ = ' ';
|
---|
| 2972 | memcpy (p, evalref, sizeof (evalref) - 1);
|
---|
| 2973 | p += sizeof (evalref) - 1;
|
---|
| 2974 | }
|
---|
| 2975 |
|
---|
| 2976 | if (all && command_variables != 0)
|
---|
| 2977 | {
|
---|
| 2978 | /* Now write a reference to $(MAKEOVERRIDES), which contains all the
|
---|
| 2979 | command-line variable definitions. */
|
---|
| 2980 |
|
---|
| 2981 | if (p == &flagstring[1])
|
---|
| 2982 | /* No flags written, so elide the leading dash already written. */
|
---|
| 2983 | p = flagstring;
|
---|
| 2984 | else
|
---|
| 2985 | {
|
---|
| 2986 | /* Separate the variables from the switches with a "--" arg. */
|
---|
| 2987 | if (p[-1] != '-')
|
---|
| 2988 | {
|
---|
| 2989 | /* We did not already write a trailing " -". */
|
---|
| 2990 | *p++ = ' ';
|
---|
| 2991 | *p++ = '-';
|
---|
| 2992 | }
|
---|
| 2993 | /* There is a trailing " -"; fill it out to " -- ". */
|
---|
| 2994 | *p++ = '-';
|
---|
| 2995 | *p++ = ' ';
|
---|
| 2996 | }
|
---|
| 2997 |
|
---|
| 2998 | /* Copy in the string. */
|
---|
| 2999 | if (posix_pedantic)
|
---|
| 3000 | {
|
---|
| 3001 | memcpy (p, posixref, sizeof (posixref) - 1);
|
---|
| 3002 | p += sizeof (posixref) - 1;
|
---|
| 3003 | }
|
---|
| 3004 | else
|
---|
| 3005 | {
|
---|
| 3006 | memcpy (p, ref, sizeof (ref) - 1);
|
---|
| 3007 | p += sizeof (ref) - 1;
|
---|
| 3008 | }
|
---|
| 3009 | }
|
---|
| 3010 | else if (p == &flagstring[1])
|
---|
| 3011 | {
|
---|
| 3012 | words = 0;
|
---|
| 3013 | --p;
|
---|
| 3014 | }
|
---|
| 3015 | else if (p[-1] == '-')
|
---|
| 3016 | /* Kill the final space and dash. */
|
---|
| 3017 | p -= 2;
|
---|
| 3018 | /* Terminate the string. */
|
---|
| 3019 | *p = '\0';
|
---|
| 3020 |
|
---|
| 3021 | /* If there are switches, omit the leading dash unless it is a single long
|
---|
| 3022 | option with two leading dashes. */
|
---|
| 3023 | if (flagstring[0] == '-' && flagstring[1] != '-')
|
---|
| 3024 | ++flagstring;
|
---|
| 3025 |
|
---|
| 3026 | v = define_variable_cname ("MAKEFLAGS", flagstring,
|
---|
| 3027 | /* This used to use o_env, but that lost when a
|
---|
| 3028 | makefile defined MAKEFLAGS. Makefiles set
|
---|
| 3029 | MAKEFLAGS to add switches, but we still want
|
---|
| 3030 | to redefine its value with the full set of
|
---|
| 3031 | switches. Of course, an override or command
|
---|
| 3032 | definition will still take precedence. */
|
---|
| 3033 | o_file, 1);
|
---|
| 3034 |
|
---|
| 3035 | if (! all)
|
---|
| 3036 | /* The first time we are called, set MAKEFLAGS to always be exported.
|
---|
| 3037 | We should not do this again on the second call, because that is
|
---|
| 3038 | after reading makefiles which might have done `unexport MAKEFLAGS'. */
|
---|
| 3039 | v->export = v_export;
|
---|
| 3040 |
|
---|
| 3041 | return v->value;
|
---|
| 3042 | }
|
---|
| 3043 | |
---|
| 3044 |
|
---|
| 3045 | /* Print version information. */
|
---|
| 3046 |
|
---|
| 3047 | static void
|
---|
| 3048 | print_version (void)
|
---|
| 3049 | {
|
---|
| 3050 | static int printed_version = 0;
|
---|
| 3051 |
|
---|
| 3052 | char *precede = print_data_base_flag ? "# " : "";
|
---|
| 3053 |
|
---|
| 3054 | if (printed_version)
|
---|
| 3055 | /* Do it only once. */
|
---|
| 3056 | return;
|
---|
| 3057 |
|
---|
| 3058 | printf ("%sGNU Make %s\n", precede, version_string);
|
---|
| 3059 |
|
---|
| 3060 | if (!remote_description || *remote_description == '\0')
|
---|
| 3061 | printf (_("%sBuilt for %s\n"), precede, make_host);
|
---|
| 3062 | else
|
---|
| 3063 | printf (_("%sBuilt for %s (%s)\n"),
|
---|
| 3064 | precede, make_host, remote_description);
|
---|
| 3065 |
|
---|
| 3066 | /* Print this untranslated. The coding standards recommend translating the
|
---|
| 3067 | (C) to the copyright symbol, but this string is going to change every
|
---|
| 3068 | year, and none of the rest of it should be translated (including the
|
---|
| 3069 | word "Copyright", so it hardly seems worth it. */
|
---|
| 3070 |
|
---|
| 3071 | printf ("%sCopyright (C) 2010 Free Software Foundation, Inc.\n", precede);
|
---|
| 3072 |
|
---|
| 3073 | printf (_("%sLicense GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
|
---|
| 3074 | %sThis is free software: you are free to change and redistribute it.\n\
|
---|
| 3075 | %sThere is NO WARRANTY, to the extent permitted by law.\n"),
|
---|
| 3076 | precede, precede, precede);
|
---|
| 3077 |
|
---|
| 3078 | printed_version = 1;
|
---|
| 3079 |
|
---|
| 3080 | /* Flush stdout so the user doesn't have to wait to see the
|
---|
| 3081 | version information while things are thought about. */
|
---|
| 3082 | fflush (stdout);
|
---|
| 3083 | }
|
---|
| 3084 |
|
---|
| 3085 | /* Print a bunch of information about this and that. */
|
---|
| 3086 |
|
---|
| 3087 | static void
|
---|
| 3088 | print_data_base ()
|
---|
| 3089 | {
|
---|
| 3090 | time_t when;
|
---|
| 3091 |
|
---|
| 3092 | when = time ((time_t *) 0);
|
---|
| 3093 | printf (_("\n# Make data base, printed on %s"), ctime (&when));
|
---|
| 3094 |
|
---|
| 3095 | print_variable_data_base ();
|
---|
| 3096 | print_dir_data_base ();
|
---|
| 3097 | print_rule_data_base ();
|
---|
| 3098 | print_file_data_base ();
|
---|
| 3099 | print_vpath_data_base ();
|
---|
| 3100 | strcache_print_stats ("#");
|
---|
| 3101 |
|
---|
| 3102 | when = time ((time_t *) 0);
|
---|
| 3103 | printf (_("\n# Finished Make data base on %s\n"), ctime (&when));
|
---|
| 3104 | }
|
---|
| 3105 |
|
---|
| 3106 | static void
|
---|
| 3107 | clean_jobserver (int status)
|
---|
| 3108 | {
|
---|
| 3109 | char token = '+';
|
---|
| 3110 |
|
---|
| 3111 | /* Sanity: have we written all our jobserver tokens back? If our
|
---|
| 3112 | exit status is 2 that means some kind of syntax error; we might not
|
---|
| 3113 | have written all our tokens so do that now. If tokens are left
|
---|
| 3114 | after any other error code, that's bad. */
|
---|
| 3115 |
|
---|
| 3116 | if (job_fds[0] != -1 && jobserver_tokens)
|
---|
| 3117 | {
|
---|
| 3118 | if (status != 2)
|
---|
| 3119 | error (NILF,
|
---|
| 3120 | "INTERNAL: Exiting with %u jobserver tokens (should be 0)!",
|
---|
| 3121 | jobserver_tokens);
|
---|
| 3122 | else
|
---|
| 3123 | while (jobserver_tokens--)
|
---|
| 3124 | {
|
---|
| 3125 | int r;
|
---|
| 3126 |
|
---|
| 3127 | EINTRLOOP (r, write (job_fds[1], &token, 1));
|
---|
| 3128 | if (r != 1)
|
---|
| 3129 | perror_with_name ("write", "");
|
---|
| 3130 | }
|
---|
| 3131 | }
|
---|
| 3132 |
|
---|
| 3133 |
|
---|
| 3134 | /* Sanity: If we're the master, were all the tokens written back? */
|
---|
| 3135 |
|
---|
| 3136 | if (master_job_slots)
|
---|
| 3137 | {
|
---|
| 3138 | /* We didn't write one for ourself, so start at 1. */
|
---|
| 3139 | unsigned int tcnt = 1;
|
---|
| 3140 |
|
---|
| 3141 | /* Close the write side, so the read() won't hang. */
|
---|
| 3142 | close (job_fds[1]);
|
---|
| 3143 |
|
---|
| 3144 | while (read (job_fds[0], &token, 1) == 1)
|
---|
| 3145 | ++tcnt;
|
---|
| 3146 |
|
---|
| 3147 | if (tcnt != master_job_slots)
|
---|
| 3148 | error (NILF,
|
---|
| 3149 | "INTERNAL: Exiting with %u jobserver tokens available; should be %u!",
|
---|
| 3150 | tcnt, master_job_slots);
|
---|
| 3151 |
|
---|
| 3152 | close (job_fds[0]);
|
---|
| 3153 |
|
---|
| 3154 | /* Clean out jobserver_fds so we don't pass this information to any
|
---|
| 3155 | sub-makes. Also reset job_slots since it will be put on the command
|
---|
| 3156 | line, not in MAKEFLAGS. */
|
---|
| 3157 | job_slots = default_job_slots;
|
---|
| 3158 | if (jobserver_fds)
|
---|
| 3159 | {
|
---|
| 3160 | /* MSVC erroneously warns without a cast here. */
|
---|
| 3161 | free ((void *)jobserver_fds->list);
|
---|
| 3162 | free (jobserver_fds);
|
---|
| 3163 | jobserver_fds = 0;
|
---|
| 3164 | }
|
---|
| 3165 | }
|
---|
| 3166 | }
|
---|
| 3167 | |
---|
| 3168 |
|
---|
| 3169 | /* Exit with STATUS, cleaning up as necessary. */
|
---|
| 3170 |
|
---|
| 3171 | void
|
---|
| 3172 | die (int status)
|
---|
| 3173 | {
|
---|
| 3174 | static char dying = 0;
|
---|
| 3175 |
|
---|
| 3176 | if (!dying)
|
---|
| 3177 | {
|
---|
| 3178 | int err;
|
---|
| 3179 |
|
---|
| 3180 | dying = 1;
|
---|
| 3181 |
|
---|
| 3182 | if (print_version_flag)
|
---|
| 3183 | print_version ();
|
---|
| 3184 |
|
---|
| 3185 | /* Wait for children to die. */
|
---|
| 3186 | err = (status != 0);
|
---|
| 3187 | while (job_slots_used > 0)
|
---|
| 3188 | reap_children (1, err);
|
---|
| 3189 |
|
---|
| 3190 | /* Let the remote job module clean up its state. */
|
---|
| 3191 | remote_cleanup ();
|
---|
| 3192 |
|
---|
| 3193 | /* Remove the intermediate files. */
|
---|
| 3194 | remove_intermediates (0);
|
---|
| 3195 |
|
---|
| 3196 | if (print_data_base_flag)
|
---|
| 3197 | print_data_base ();
|
---|
| 3198 |
|
---|
| 3199 | verify_file_data_base ();
|
---|
| 3200 |
|
---|
| 3201 | clean_jobserver (status);
|
---|
| 3202 |
|
---|
| 3203 | /* Try to move back to the original directory. This is essential on
|
---|
| 3204 | MS-DOS (where there is really only one process), and on Unix it
|
---|
| 3205 | puts core files in the original directory instead of the -C
|
---|
| 3206 | directory. Must wait until after remove_intermediates(), or unlinks
|
---|
| 3207 | of relative pathnames fail. */
|
---|
| 3208 | if (directory_before_chdir != 0)
|
---|
| 3209 | {
|
---|
| 3210 | /* If it fails we don't care: shut up GCC. */
|
---|
| 3211 | int _x;
|
---|
| 3212 | _x = chdir (directory_before_chdir);
|
---|
| 3213 | }
|
---|
| 3214 |
|
---|
| 3215 | log_working_directory (0);
|
---|
| 3216 | }
|
---|
| 3217 |
|
---|
| 3218 | exit (status);
|
---|
| 3219 | }
|
---|
| 3220 | |
---|
| 3221 |
|
---|
| 3222 | /* Write a message indicating that we've just entered or
|
---|
| 3223 | left (according to ENTERING) the current directory. */
|
---|
| 3224 |
|
---|
| 3225 | void
|
---|
| 3226 | log_working_directory (int entering)
|
---|
| 3227 | {
|
---|
| 3228 | static int entered = 0;
|
---|
| 3229 |
|
---|
| 3230 | /* Print nothing without the flag. Don't print the entering message
|
---|
| 3231 | again if we already have. Don't print the leaving message if we
|
---|
| 3232 | haven't printed the entering message. */
|
---|
| 3233 | if (! print_directory_flag || entering == entered)
|
---|
| 3234 | return;
|
---|
| 3235 |
|
---|
| 3236 | entered = entering;
|
---|
| 3237 |
|
---|
| 3238 | if (print_data_base_flag)
|
---|
| 3239 | fputs ("# ", stdout);
|
---|
| 3240 |
|
---|
| 3241 | /* Use entire sentences to give the translators a fighting chance. */
|
---|
| 3242 |
|
---|
| 3243 | if (makelevel == 0)
|
---|
| 3244 | if (starting_directory == 0)
|
---|
| 3245 | if (entering)
|
---|
| 3246 | printf (_("%s: Entering an unknown directory\n"), program);
|
---|
| 3247 | else
|
---|
| 3248 | printf (_("%s: Leaving an unknown directory\n"), program);
|
---|
| 3249 | else
|
---|
| 3250 | if (entering)
|
---|
| 3251 | printf (_("%s: Entering directory `%s'\n"),
|
---|
| 3252 | program, starting_directory);
|
---|
| 3253 | else
|
---|
| 3254 | printf (_("%s: Leaving directory `%s'\n"),
|
---|
| 3255 | program, starting_directory);
|
---|
| 3256 | else
|
---|
| 3257 | if (starting_directory == 0)
|
---|
| 3258 | if (entering)
|
---|
| 3259 | printf (_("%s[%u]: Entering an unknown directory\n"),
|
---|
| 3260 | program, makelevel);
|
---|
| 3261 | else
|
---|
| 3262 | printf (_("%s[%u]: Leaving an unknown directory\n"),
|
---|
| 3263 | program, makelevel);
|
---|
| 3264 | else
|
---|
| 3265 | if (entering)
|
---|
| 3266 | printf (_("%s[%u]: Entering directory `%s'\n"),
|
---|
| 3267 | program, makelevel, starting_directory);
|
---|
| 3268 | else
|
---|
| 3269 | printf (_("%s[%u]: Leaving directory `%s'\n"),
|
---|
| 3270 | program, makelevel, starting_directory);
|
---|
| 3271 |
|
---|
| 3272 | /* Flush stdout to be sure this comes before any stderr output. */
|
---|
| 3273 | fflush (stdout);
|
---|
| 3274 | }
|
---|