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