1 | /* Basic dependency engine for GNU Make.
|
---|
2 | Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
|
---|
3 | 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software
|
---|
4 | Foundation, Inc.
|
---|
5 | This file is part of GNU Make.
|
---|
6 |
|
---|
7 | GNU Make is free software; you can redistribute it and/or modify it under the
|
---|
8 | terms of the GNU General Public License as published by the Free Software
|
---|
9 | Foundation; either version 3 of the License, or (at your option) any later
|
---|
10 | version.
|
---|
11 |
|
---|
12 | GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
---|
13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
---|
14 | A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License along with
|
---|
17 | this program. If not, see <http://www.gnu.org/licenses/>. */
|
---|
18 |
|
---|
19 | #include "make.h"
|
---|
20 | #include "filedef.h"
|
---|
21 | #include "job.h"
|
---|
22 | #include "commands.h"
|
---|
23 | #include "dep.h"
|
---|
24 | #include "variable.h"
|
---|
25 | #include "debug.h"
|
---|
26 |
|
---|
27 | #include <assert.h>
|
---|
28 |
|
---|
29 | #ifdef HAVE_FCNTL_H
|
---|
30 | #include <fcntl.h>
|
---|
31 | #else
|
---|
32 | #include <sys/file.h>
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | #ifdef VMS
|
---|
36 | #include <starlet.h>
|
---|
37 | #endif
|
---|
38 | #ifdef WINDOWS32
|
---|
39 | #include <io.h>
|
---|
40 | #endif
|
---|
41 |
|
---|
42 | extern int try_implicit_rule (struct file *file, unsigned int depth);
|
---|
43 |
|
---|
44 |
|
---|
45 | /* The test for circular dependencies is based on the 'updating' bit in
|
---|
46 | `struct file'. However, double colon targets have seperate `struct
|
---|
47 | file's; make sure we always use the base of the double colon chain. */
|
---|
48 |
|
---|
49 | #define start_updating(_f) (((_f)->double_colon ? (_f)->double_colon : (_f))\
|
---|
50 | ->updating = 1)
|
---|
51 | #define finish_updating(_f) (((_f)->double_colon ? (_f)->double_colon : (_f))\
|
---|
52 | ->updating = 0)
|
---|
53 | #define is_updating(_f) (((_f)->double_colon ? (_f)->double_colon : (_f))\
|
---|
54 | ->updating)
|
---|
55 |
|
---|
56 |
|
---|
57 | /* Incremented when a command is started (under -n, when one would be). */
|
---|
58 | unsigned int commands_started = 0;
|
---|
59 |
|
---|
60 | /* Current value for pruning the scan of the goal chain (toggle 0/1). */
|
---|
61 | static unsigned int considered;
|
---|
62 |
|
---|
63 | static int update_file (struct file *file, unsigned int depth);
|
---|
64 | static int update_file_1 (struct file *file, unsigned int depth);
|
---|
65 | static int check_dep (struct file *file, unsigned int depth,
|
---|
66 | FILE_TIMESTAMP this_mtime, int *must_make_ptr);
|
---|
67 | static int touch_file (struct file *file);
|
---|
68 | static void remake_file (struct file *file);
|
---|
69 | static FILE_TIMESTAMP name_mtime (const char *name);
|
---|
70 | static const char *library_search (const char *lib, FILE_TIMESTAMP *mtime_ptr);
|
---|
71 |
|
---|
72 | |
---|
73 |
|
---|
74 | /* Remake all the goals in the `struct dep' chain GOALS. Return -1 if nothing
|
---|
75 | was done, 0 if all goals were updated successfully, or 1 if a goal failed.
|
---|
76 |
|
---|
77 | If rebuilding_makefiles is nonzero, these goals are makefiles, so -t, -q,
|
---|
78 | and -n should be disabled for them unless they were also command-line
|
---|
79 | targets, and we should only make one goal at a time and return as soon as
|
---|
80 | one goal whose `changed' member is nonzero is successfully made. */
|
---|
81 |
|
---|
82 | int
|
---|
83 | update_goal_chain (struct dep *goals)
|
---|
84 | {
|
---|
85 | int t = touch_flag, q = question_flag, n = just_print_flag;
|
---|
86 | unsigned int j = job_slots;
|
---|
87 | int status = -1;
|
---|
88 |
|
---|
89 | #define MTIME(file) (rebuilding_makefiles ? file_mtime_no_search (file) \
|
---|
90 | : file_mtime (file))
|
---|
91 |
|
---|
92 | /* Duplicate the chain so we can remove things from it. */
|
---|
93 |
|
---|
94 | goals = copy_dep_chain (goals);
|
---|
95 |
|
---|
96 | {
|
---|
97 | /* Clear the `changed' flag of each goal in the chain.
|
---|
98 | We will use the flag below to notice when any commands
|
---|
99 | have actually been run for a target. When no commands
|
---|
100 | have been run, we give an "up to date" diagnostic. */
|
---|
101 |
|
---|
102 | struct dep *g;
|
---|
103 | for (g = goals; g != 0; g = g->next)
|
---|
104 | g->changed = 0;
|
---|
105 | }
|
---|
106 |
|
---|
107 | /* All files start with the considered bit 0, so the global value is 1. */
|
---|
108 | considered = 1;
|
---|
109 |
|
---|
110 | /* Update all the goals until they are all finished. */
|
---|
111 |
|
---|
112 | while (goals != 0)
|
---|
113 | {
|
---|
114 | register struct dep *g, *lastgoal;
|
---|
115 |
|
---|
116 | /* Start jobs that are waiting for the load to go down. */
|
---|
117 |
|
---|
118 | start_waiting_jobs ();
|
---|
119 |
|
---|
120 | /* Wait for a child to die. */
|
---|
121 |
|
---|
122 | reap_children (1, 0);
|
---|
123 |
|
---|
124 | lastgoal = 0;
|
---|
125 | g = goals;
|
---|
126 | while (g != 0)
|
---|
127 | {
|
---|
128 | /* Iterate over all double-colon entries for this file. */
|
---|
129 | struct file *file;
|
---|
130 | int stop = 0, any_not_updated = 0;
|
---|
131 |
|
---|
132 | for (file = g->file->double_colon ? g->file->double_colon : g->file;
|
---|
133 | file != NULL;
|
---|
134 | file = file->prev)
|
---|
135 | {
|
---|
136 | unsigned int ocommands_started;
|
---|
137 | int x;
|
---|
138 | check_renamed (file);
|
---|
139 | if (rebuilding_makefiles)
|
---|
140 | {
|
---|
141 | if (file->cmd_target)
|
---|
142 | {
|
---|
143 | touch_flag = t;
|
---|
144 | question_flag = q;
|
---|
145 | just_print_flag = n;
|
---|
146 | }
|
---|
147 | else
|
---|
148 | touch_flag = question_flag = just_print_flag = 0;
|
---|
149 | }
|
---|
150 |
|
---|
151 | /* Save the old value of `commands_started' so we can compare
|
---|
152 | later. It will be incremented when any commands are
|
---|
153 | actually run. */
|
---|
154 | ocommands_started = commands_started;
|
---|
155 |
|
---|
156 | x = update_file (file, rebuilding_makefiles ? 1 : 0);
|
---|
157 | check_renamed (file);
|
---|
158 |
|
---|
159 | /* Set the goal's `changed' flag if any commands were started
|
---|
160 | by calling update_file above. We check this flag below to
|
---|
161 | decide when to give an "up to date" diagnostic. */
|
---|
162 | if (commands_started > ocommands_started)
|
---|
163 | g->changed = 1;
|
---|
164 |
|
---|
165 | /* If we updated a file and STATUS was not already 1, set it to
|
---|
166 | 1 if updating failed, or to 0 if updating succeeded. Leave
|
---|
167 | STATUS as it is if no updating was done. */
|
---|
168 |
|
---|
169 | stop = 0;
|
---|
170 | if ((x != 0 || file->updated) && status < 1)
|
---|
171 | {
|
---|
172 | if (file->update_status != 0)
|
---|
173 | {
|
---|
174 | /* Updating failed, or -q triggered. The STATUS value
|
---|
175 | tells our caller which. */
|
---|
176 | status = file->update_status;
|
---|
177 | /* If -q just triggered, stop immediately. It doesn't
|
---|
178 | matter how much more we run, since we already know
|
---|
179 | the answer to return. */
|
---|
180 | stop = (question_flag && !keep_going_flag
|
---|
181 | && !rebuilding_makefiles);
|
---|
182 | }
|
---|
183 | else
|
---|
184 | {
|
---|
185 | FILE_TIMESTAMP mtime = MTIME (file);
|
---|
186 | check_renamed (file);
|
---|
187 |
|
---|
188 | if (file->updated && g->changed &&
|
---|
189 | mtime != file->mtime_before_update)
|
---|
190 | {
|
---|
191 | /* Updating was done. If this is a makefile and
|
---|
192 | just_print_flag or question_flag is set (meaning
|
---|
193 | -n or -q was given and this file was specified
|
---|
194 | as a command-line target), don't change STATUS.
|
---|
195 | If STATUS is changed, we will get re-exec'd, and
|
---|
196 | enter an infinite loop. */
|
---|
197 | if (!rebuilding_makefiles
|
---|
198 | || (!just_print_flag && !question_flag))
|
---|
199 | status = 0;
|
---|
200 | if (rebuilding_makefiles && file->dontcare)
|
---|
201 | /* This is a default makefile; stop remaking. */
|
---|
202 | stop = 1;
|
---|
203 | }
|
---|
204 | }
|
---|
205 | }
|
---|
206 |
|
---|
207 | /* Keep track if any double-colon entry is not finished.
|
---|
208 | When they are all finished, the goal is finished. */
|
---|
209 | any_not_updated |= !file->updated;
|
---|
210 |
|
---|
211 | if (stop)
|
---|
212 | break;
|
---|
213 | }
|
---|
214 |
|
---|
215 | /* Reset FILE since it is null at the end of the loop. */
|
---|
216 | file = g->file;
|
---|
217 |
|
---|
218 | if (stop || !any_not_updated)
|
---|
219 | {
|
---|
220 | /* If we have found nothing whatever to do for the goal,
|
---|
221 | print a message saying nothing needs doing. */
|
---|
222 |
|
---|
223 | if (!rebuilding_makefiles
|
---|
224 | /* If the update_status is zero, we updated successfully
|
---|
225 | or not at all. G->changed will have been set above if
|
---|
226 | any commands were actually started for this goal. */
|
---|
227 | && file->update_status == 0 && !g->changed
|
---|
228 | /* Never give a message under -s or -q. */
|
---|
229 | && !silent_flag && !question_flag)
|
---|
230 | message (1, ((file->phony || file->cmds == 0)
|
---|
231 | ? _("Nothing to be done for `%s'.")
|
---|
232 | : _("`%s' is up to date.")),
|
---|
233 | file->name);
|
---|
234 |
|
---|
235 | /* This goal is finished. Remove it from the chain. */
|
---|
236 | if (lastgoal == 0)
|
---|
237 | goals = g->next;
|
---|
238 | else
|
---|
239 | lastgoal->next = g->next;
|
---|
240 |
|
---|
241 | /* Free the storage. */
|
---|
242 | free (g);
|
---|
243 |
|
---|
244 | g = lastgoal == 0 ? goals : lastgoal->next;
|
---|
245 |
|
---|
246 | if (stop)
|
---|
247 | break;
|
---|
248 | }
|
---|
249 | else
|
---|
250 | {
|
---|
251 | lastgoal = g;
|
---|
252 | g = g->next;
|
---|
253 | }
|
---|
254 | }
|
---|
255 |
|
---|
256 | /* If we reached the end of the dependency graph toggle the considered
|
---|
257 | flag for the next pass. */
|
---|
258 | if (g == 0)
|
---|
259 | considered = !considered;
|
---|
260 | }
|
---|
261 |
|
---|
262 | if (rebuilding_makefiles)
|
---|
263 | {
|
---|
264 | touch_flag = t;
|
---|
265 | question_flag = q;
|
---|
266 | just_print_flag = n;
|
---|
267 | job_slots = j;
|
---|
268 | }
|
---|
269 |
|
---|
270 | return status;
|
---|
271 | }
|
---|
272 | |
---|
273 |
|
---|
274 | /* If FILE is not up to date, execute the commands for it.
|
---|
275 | Return 0 if successful, 1 if unsuccessful;
|
---|
276 | but with some flag settings, just call `exit' if unsuccessful.
|
---|
277 |
|
---|
278 | DEPTH is the depth in recursions of this function.
|
---|
279 | We increment it during the consideration of our dependencies,
|
---|
280 | then decrement it again after finding out whether this file
|
---|
281 | is out of date.
|
---|
282 |
|
---|
283 | If there are multiple double-colon entries for FILE,
|
---|
284 | each is considered in turn. */
|
---|
285 |
|
---|
286 | static int
|
---|
287 | update_file (struct file *file, unsigned int depth)
|
---|
288 | {
|
---|
289 | register int status = 0;
|
---|
290 | register struct file *f;
|
---|
291 |
|
---|
292 | f = file->double_colon ? file->double_colon : file;
|
---|
293 |
|
---|
294 | /* Prune the dependency graph: if we've already been here on _this_
|
---|
295 | pass through the dependency graph, we don't have to go any further.
|
---|
296 | We won't reap_children until we start the next pass, so no state
|
---|
297 | change is possible below here until then. */
|
---|
298 | if (f->considered == considered)
|
---|
299 | {
|
---|
300 | DBF (DB_VERBOSE, _("Pruning file `%s'.\n"));
|
---|
301 | return f->command_state == cs_finished ? f->update_status : 0;
|
---|
302 | }
|
---|
303 |
|
---|
304 | /* This loop runs until we start commands for a double colon rule, or until
|
---|
305 | the chain is exhausted. */
|
---|
306 | for (; f != 0; f = f->prev)
|
---|
307 | {
|
---|
308 | f->considered = considered;
|
---|
309 |
|
---|
310 | status |= update_file_1 (f, depth);
|
---|
311 | check_renamed (f);
|
---|
312 |
|
---|
313 | /* Clean up any alloca() used during the update. */
|
---|
314 | alloca (0);
|
---|
315 |
|
---|
316 | /* If we got an error, don't bother with double_colon etc. */
|
---|
317 | if (status != 0 && !keep_going_flag)
|
---|
318 | return status;
|
---|
319 |
|
---|
320 | if (f->command_state == cs_running
|
---|
321 | || f->command_state == cs_deps_running)
|
---|
322 | {
|
---|
323 | /* Don't run the other :: rules for this
|
---|
324 | file until this rule is finished. */
|
---|
325 | status = 0;
|
---|
326 | break;
|
---|
327 | }
|
---|
328 | }
|
---|
329 |
|
---|
330 | /* Process the remaining rules in the double colon chain so they're marked
|
---|
331 | considered. Start their prerequisites, too. */
|
---|
332 | if (file->double_colon)
|
---|
333 | for (; f != 0 ; f = f->prev)
|
---|
334 | {
|
---|
335 | struct dep *d;
|
---|
336 |
|
---|
337 | f->considered = considered;
|
---|
338 |
|
---|
339 | for (d = f->deps; d != 0; d = d->next)
|
---|
340 | status |= update_file (d->file, depth + 1);
|
---|
341 | }
|
---|
342 |
|
---|
343 | return status;
|
---|
344 | }
|
---|
345 | |
---|
346 |
|
---|
347 | /* Show a message stating the target failed to build. */
|
---|
348 |
|
---|
349 | static void
|
---|
350 | complain (const struct file *file)
|
---|
351 | {
|
---|
352 | const char *msg_noparent
|
---|
353 | = _("%sNo rule to make target `%s'%s");
|
---|
354 | const char *msg_parent
|
---|
355 | = _("%sNo rule to make target `%s', needed by `%s'%s");
|
---|
356 |
|
---|
357 | if (!keep_going_flag)
|
---|
358 | {
|
---|
359 | if (file->parent == 0)
|
---|
360 | fatal (NILF, msg_noparent, "", file->name, "");
|
---|
361 |
|
---|
362 | fatal (NILF, msg_parent, "", file->name, file->parent->name, "");
|
---|
363 | }
|
---|
364 |
|
---|
365 | if (file->parent == 0)
|
---|
366 | error (NILF, msg_noparent, "*** ", file->name, ".");
|
---|
367 | else
|
---|
368 | error (NILF, msg_parent, "*** ", file->name, file->parent->name, ".");
|
---|
369 | }
|
---|
370 |
|
---|
371 | /* Consider a single `struct file' and update it as appropriate. */
|
---|
372 |
|
---|
373 | static int
|
---|
374 | update_file_1 (struct file *file, unsigned int depth)
|
---|
375 | {
|
---|
376 | register FILE_TIMESTAMP this_mtime;
|
---|
377 | int noexist, must_make, deps_changed;
|
---|
378 | int dep_status = 0;
|
---|
379 | register struct dep *d, *lastd;
|
---|
380 | int running = 0;
|
---|
381 |
|
---|
382 | DBF (DB_VERBOSE, _("Considering target file `%s'.\n"));
|
---|
383 |
|
---|
384 | if (file->updated)
|
---|
385 | {
|
---|
386 | if (file->update_status > 0)
|
---|
387 | {
|
---|
388 | DBF (DB_VERBOSE,
|
---|
389 | _("Recently tried and failed to update file `%s'.\n"));
|
---|
390 |
|
---|
391 | /* If the file we tried to make is marked dontcare then no message
|
---|
392 | was printed about it when it failed during the makefile rebuild.
|
---|
393 | If we're trying to build it again in the normal rebuild, print a
|
---|
394 | message now. */
|
---|
395 | if (file->dontcare && !rebuilding_makefiles)
|
---|
396 | {
|
---|
397 | file->dontcare = 0;
|
---|
398 | complain (file);
|
---|
399 | }
|
---|
400 |
|
---|
401 | return file->update_status;
|
---|
402 | }
|
---|
403 |
|
---|
404 | DBF (DB_VERBOSE, _("File `%s' was considered already.\n"));
|
---|
405 | return 0;
|
---|
406 | }
|
---|
407 |
|
---|
408 | switch (file->command_state)
|
---|
409 | {
|
---|
410 | case cs_not_started:
|
---|
411 | case cs_deps_running:
|
---|
412 | break;
|
---|
413 | case cs_running:
|
---|
414 | DBF (DB_VERBOSE, _("Still updating file `%s'.\n"));
|
---|
415 | return 0;
|
---|
416 | case cs_finished:
|
---|
417 | DBF (DB_VERBOSE, _("Finished updating file `%s'.\n"));
|
---|
418 | return file->update_status;
|
---|
419 | default:
|
---|
420 | abort ();
|
---|
421 | }
|
---|
422 |
|
---|
423 | ++depth;
|
---|
424 |
|
---|
425 | /* Notice recursive update of the same file. */
|
---|
426 | start_updating (file);
|
---|
427 |
|
---|
428 | /* Looking at the file's modtime beforehand allows the possibility
|
---|
429 | that its name may be changed by a VPATH search, and thus it may
|
---|
430 | not need an implicit rule. If this were not done, the file
|
---|
431 | might get implicit commands that apply to its initial name, only
|
---|
432 | to have that name replaced with another found by VPATH search. */
|
---|
433 |
|
---|
434 | this_mtime = file_mtime (file);
|
---|
435 | check_renamed (file);
|
---|
436 | noexist = this_mtime == NONEXISTENT_MTIME;
|
---|
437 | if (noexist)
|
---|
438 | DBF (DB_BASIC, _("File `%s' does not exist.\n"));
|
---|
439 | else if (ORDINARY_MTIME_MIN <= this_mtime && this_mtime <= ORDINARY_MTIME_MAX
|
---|
440 | && file->low_resolution_time)
|
---|
441 | {
|
---|
442 | /* Avoid spurious rebuilds due to low resolution time stamps. */
|
---|
443 | int ns = FILE_TIMESTAMP_NS (this_mtime);
|
---|
444 | if (ns != 0)
|
---|
445 | error (NILF, _("*** Warning: .LOW_RESOLUTION_TIME file `%s' has a high resolution time stamp"),
|
---|
446 | file->name);
|
---|
447 | this_mtime += FILE_TIMESTAMPS_PER_S - 1 - ns;
|
---|
448 | }
|
---|
449 |
|
---|
450 | must_make = noexist;
|
---|
451 |
|
---|
452 | /* If file was specified as a target with no commands,
|
---|
453 | come up with some default commands. */
|
---|
454 |
|
---|
455 | if (!file->phony && file->cmds == 0 && !file->tried_implicit)
|
---|
456 | {
|
---|
457 | if (try_implicit_rule (file, depth))
|
---|
458 | DBF (DB_IMPLICIT, _("Found an implicit rule for `%s'.\n"));
|
---|
459 | else
|
---|
460 | DBF (DB_IMPLICIT, _("No implicit rule found for `%s'.\n"));
|
---|
461 | file->tried_implicit = 1;
|
---|
462 | }
|
---|
463 | if (file->cmds == 0 && !file->is_target
|
---|
464 | && default_file != 0 && default_file->cmds != 0)
|
---|
465 | {
|
---|
466 | DBF (DB_IMPLICIT, _("Using default recipe for `%s'.\n"));
|
---|
467 | file->cmds = default_file->cmds;
|
---|
468 | }
|
---|
469 |
|
---|
470 | /* Update all non-intermediate files we depend on, if necessary,
|
---|
471 | and see whether any of them is more recent than this file. */
|
---|
472 |
|
---|
473 | lastd = 0;
|
---|
474 | d = file->deps;
|
---|
475 | while (d != 0)
|
---|
476 | {
|
---|
477 | FILE_TIMESTAMP mtime;
|
---|
478 | int maybe_make;
|
---|
479 | int dontcare = 0;
|
---|
480 |
|
---|
481 | check_renamed (d->file);
|
---|
482 |
|
---|
483 | mtime = file_mtime (d->file);
|
---|
484 | check_renamed (d->file);
|
---|
485 |
|
---|
486 | if (is_updating (d->file))
|
---|
487 | {
|
---|
488 | error (NILF, _("Circular %s <- %s dependency dropped."),
|
---|
489 | file->name, d->file->name);
|
---|
490 | /* We cannot free D here because our the caller will still have
|
---|
491 | a reference to it when we were called recursively via
|
---|
492 | check_dep below. */
|
---|
493 | if (lastd == 0)
|
---|
494 | file->deps = d->next;
|
---|
495 | else
|
---|
496 | lastd->next = d->next;
|
---|
497 | d = d->next;
|
---|
498 | continue;
|
---|
499 | }
|
---|
500 |
|
---|
501 | d->file->parent = file;
|
---|
502 | maybe_make = must_make;
|
---|
503 |
|
---|
504 | /* Inherit dontcare flag from our parent. */
|
---|
505 | if (rebuilding_makefiles)
|
---|
506 | {
|
---|
507 | dontcare = d->file->dontcare;
|
---|
508 | d->file->dontcare = file->dontcare;
|
---|
509 | }
|
---|
510 |
|
---|
511 |
|
---|
512 | dep_status |= check_dep (d->file, depth, this_mtime, &maybe_make);
|
---|
513 |
|
---|
514 | /* Restore original dontcare flag. */
|
---|
515 | if (rebuilding_makefiles)
|
---|
516 | d->file->dontcare = dontcare;
|
---|
517 |
|
---|
518 | if (! d->ignore_mtime)
|
---|
519 | must_make = maybe_make;
|
---|
520 |
|
---|
521 | check_renamed (d->file);
|
---|
522 |
|
---|
523 | {
|
---|
524 | register struct file *f = d->file;
|
---|
525 | if (f->double_colon)
|
---|
526 | f = f->double_colon;
|
---|
527 | do
|
---|
528 | {
|
---|
529 | running |= (f->command_state == cs_running
|
---|
530 | || f->command_state == cs_deps_running);
|
---|
531 | f = f->prev;
|
---|
532 | }
|
---|
533 | while (f != 0);
|
---|
534 | }
|
---|
535 |
|
---|
536 | if (dep_status != 0 && !keep_going_flag)
|
---|
537 | break;
|
---|
538 |
|
---|
539 | if (!running)
|
---|
540 | /* The prereq is considered changed if the timestamp has changed while
|
---|
541 | it was built, OR it doesn't exist. */
|
---|
542 | d->changed = ((file_mtime (d->file) != mtime)
|
---|
543 | || (mtime == NONEXISTENT_MTIME));
|
---|
544 |
|
---|
545 | lastd = d;
|
---|
546 | d = d->next;
|
---|
547 | }
|
---|
548 |
|
---|
549 | /* Now we know whether this target needs updating.
|
---|
550 | If it does, update all the intermediate files we depend on. */
|
---|
551 |
|
---|
552 | if (must_make || always_make_flag)
|
---|
553 | {
|
---|
554 | for (d = file->deps; d != 0; d = d->next)
|
---|
555 | if (d->file->intermediate)
|
---|
556 | {
|
---|
557 | int dontcare = 0;
|
---|
558 |
|
---|
559 | FILE_TIMESTAMP mtime = file_mtime (d->file);
|
---|
560 | check_renamed (d->file);
|
---|
561 | d->file->parent = file;
|
---|
562 |
|
---|
563 | /* Inherit dontcare flag from our parent. */
|
---|
564 | if (rebuilding_makefiles)
|
---|
565 | {
|
---|
566 | dontcare = d->file->dontcare;
|
---|
567 | d->file->dontcare = file->dontcare;
|
---|
568 | }
|
---|
569 |
|
---|
570 |
|
---|
571 | dep_status |= update_file (d->file, depth);
|
---|
572 |
|
---|
573 | /* Restore original dontcare flag. */
|
---|
574 | if (rebuilding_makefiles)
|
---|
575 | d->file->dontcare = dontcare;
|
---|
576 |
|
---|
577 | check_renamed (d->file);
|
---|
578 |
|
---|
579 | {
|
---|
580 | register struct file *f = d->file;
|
---|
581 | if (f->double_colon)
|
---|
582 | f = f->double_colon;
|
---|
583 | do
|
---|
584 | {
|
---|
585 | running |= (f->command_state == cs_running
|
---|
586 | || f->command_state == cs_deps_running);
|
---|
587 | f = f->prev;
|
---|
588 | }
|
---|
589 | while (f != 0);
|
---|
590 | }
|
---|
591 |
|
---|
592 | if (dep_status != 0 && !keep_going_flag)
|
---|
593 | break;
|
---|
594 |
|
---|
595 | if (!running)
|
---|
596 | d->changed = ((file->phony && file->cmds != 0)
|
---|
597 | || file_mtime (d->file) != mtime);
|
---|
598 | }
|
---|
599 | }
|
---|
600 |
|
---|
601 | finish_updating (file);
|
---|
602 |
|
---|
603 | DBF (DB_VERBOSE, _("Finished prerequisites of target file `%s'.\n"));
|
---|
604 |
|
---|
605 | if (running)
|
---|
606 | {
|
---|
607 | set_command_state (file, cs_deps_running);
|
---|
608 | --depth;
|
---|
609 | DBF (DB_VERBOSE, _("The prerequisites of `%s' are being made.\n"));
|
---|
610 | return 0;
|
---|
611 | }
|
---|
612 |
|
---|
613 | /* If any dependency failed, give up now. */
|
---|
614 |
|
---|
615 | if (dep_status != 0)
|
---|
616 | {
|
---|
617 | file->update_status = dep_status;
|
---|
618 | notice_finished_file (file);
|
---|
619 |
|
---|
620 | --depth;
|
---|
621 |
|
---|
622 | DBF (DB_VERBOSE, _("Giving up on target file `%s'.\n"));
|
---|
623 |
|
---|
624 | if (depth == 0 && keep_going_flag
|
---|
625 | && !just_print_flag && !question_flag)
|
---|
626 | error (NILF,
|
---|
627 | _("Target `%s' not remade because of errors."), file->name);
|
---|
628 |
|
---|
629 | return dep_status;
|
---|
630 | }
|
---|
631 |
|
---|
632 | if (file->command_state == cs_deps_running)
|
---|
633 | /* The commands for some deps were running on the last iteration, but
|
---|
634 | they have finished now. Reset the command_state to not_started to
|
---|
635 | simplify later bookkeeping. It is important that we do this only
|
---|
636 | when the prior state was cs_deps_running, because that prior state
|
---|
637 | was definitely propagated to FILE's also_make's by set_command_state
|
---|
638 | (called above), but in another state an also_make may have
|
---|
639 | independently changed to finished state, and we would confuse that
|
---|
640 | file's bookkeeping (updated, but not_started is bogus state). */
|
---|
641 | set_command_state (file, cs_not_started);
|
---|
642 |
|
---|
643 | /* Now record which prerequisites are more
|
---|
644 | recent than this file, so we can define $?. */
|
---|
645 |
|
---|
646 | deps_changed = 0;
|
---|
647 | for (d = file->deps; d != 0; d = d->next)
|
---|
648 | {
|
---|
649 | FILE_TIMESTAMP d_mtime = file_mtime (d->file);
|
---|
650 | check_renamed (d->file);
|
---|
651 |
|
---|
652 | if (! d->ignore_mtime)
|
---|
653 | {
|
---|
654 | #if 1
|
---|
655 | /* %%% In version 4, remove this code completely to
|
---|
656 | implement not remaking deps if their deps are newer
|
---|
657 | than their parents. */
|
---|
658 | if (d_mtime == NONEXISTENT_MTIME && !d->file->intermediate)
|
---|
659 | /* We must remake if this dep does not
|
---|
660 | exist and is not intermediate. */
|
---|
661 | must_make = 1;
|
---|
662 | #endif
|
---|
663 |
|
---|
664 | /* Set DEPS_CHANGED if this dep actually changed. */
|
---|
665 | deps_changed |= d->changed;
|
---|
666 | }
|
---|
667 |
|
---|
668 | /* Set D->changed if either this dep actually changed,
|
---|
669 | or its dependent, FILE, is older or does not exist. */
|
---|
670 | d->changed |= noexist || d_mtime > this_mtime;
|
---|
671 |
|
---|
672 | if (!noexist && ISDB (DB_BASIC|DB_VERBOSE))
|
---|
673 | {
|
---|
674 | const char *fmt = 0;
|
---|
675 |
|
---|
676 | if (d->ignore_mtime)
|
---|
677 | {
|
---|
678 | if (ISDB (DB_VERBOSE))
|
---|
679 | fmt = _("Prerequisite `%s' is order-only for target `%s'.\n");
|
---|
680 | }
|
---|
681 | else if (d_mtime == NONEXISTENT_MTIME)
|
---|
682 | {
|
---|
683 | if (ISDB (DB_BASIC))
|
---|
684 | fmt = _("Prerequisite `%s' of target `%s' does not exist.\n");
|
---|
685 | }
|
---|
686 | else if (d->changed)
|
---|
687 | {
|
---|
688 | if (ISDB (DB_BASIC))
|
---|
689 | fmt = _("Prerequisite `%s' is newer than target `%s'.\n");
|
---|
690 | }
|
---|
691 | else if (ISDB (DB_VERBOSE))
|
---|
692 | fmt = _("Prerequisite `%s' is older than target `%s'.\n");
|
---|
693 |
|
---|
694 | if (fmt)
|
---|
695 | {
|
---|
696 | print_spaces (depth);
|
---|
697 | printf (fmt, dep_name (d), file->name);
|
---|
698 | fflush (stdout);
|
---|
699 | }
|
---|
700 | }
|
---|
701 | }
|
---|
702 |
|
---|
703 | /* Here depth returns to the value it had when we were called. */
|
---|
704 | depth--;
|
---|
705 |
|
---|
706 | if (file->double_colon && file->deps == 0)
|
---|
707 | {
|
---|
708 | must_make = 1;
|
---|
709 | DBF (DB_BASIC,
|
---|
710 | _("Target `%s' is double-colon and has no prerequisites.\n"));
|
---|
711 | }
|
---|
712 | else if (!noexist && file->is_target && !deps_changed && file->cmds == 0
|
---|
713 | && !always_make_flag)
|
---|
714 | {
|
---|
715 | must_make = 0;
|
---|
716 | DBF (DB_VERBOSE,
|
---|
717 | _("No recipe for `%s' and no prerequisites actually changed.\n"));
|
---|
718 | }
|
---|
719 | else if (!must_make && file->cmds != 0 && always_make_flag)
|
---|
720 | {
|
---|
721 | must_make = 1;
|
---|
722 | DBF (DB_VERBOSE, _("Making `%s' due to always-make flag.\n"));
|
---|
723 | }
|
---|
724 |
|
---|
725 | if (!must_make)
|
---|
726 | {
|
---|
727 | if (ISDB (DB_VERBOSE))
|
---|
728 | {
|
---|
729 | print_spaces (depth);
|
---|
730 | printf (_("No need to remake target `%s'"), file->name);
|
---|
731 | if (!streq (file->name, file->hname))
|
---|
732 | printf (_("; using VPATH name `%s'"), file->hname);
|
---|
733 | puts (".");
|
---|
734 | fflush (stdout);
|
---|
735 | }
|
---|
736 |
|
---|
737 | notice_finished_file (file);
|
---|
738 |
|
---|
739 | /* Since we don't need to remake the file, convert it to use the
|
---|
740 | VPATH filename if we found one. hfile will be either the
|
---|
741 | local name if no VPATH or the VPATH name if one was found. */
|
---|
742 |
|
---|
743 | while (file)
|
---|
744 | {
|
---|
745 | file->name = file->hname;
|
---|
746 | file = file->prev;
|
---|
747 | }
|
---|
748 |
|
---|
749 | return 0;
|
---|
750 | }
|
---|
751 |
|
---|
752 | DBF (DB_BASIC, _("Must remake target `%s'.\n"));
|
---|
753 |
|
---|
754 | /* It needs to be remade. If it's VPATH and not reset via GPATH, toss the
|
---|
755 | VPATH. */
|
---|
756 | if (!streq(file->name, file->hname))
|
---|
757 | {
|
---|
758 | DB (DB_BASIC, (_(" Ignoring VPATH name `%s'.\n"), file->hname));
|
---|
759 | file->ignore_vpath = 1;
|
---|
760 | }
|
---|
761 |
|
---|
762 | /* Now, take appropriate actions to remake the file. */
|
---|
763 | remake_file (file);
|
---|
764 |
|
---|
765 | if (file->command_state != cs_finished)
|
---|
766 | {
|
---|
767 | DBF (DB_VERBOSE, _("Recipe of `%s' is being run.\n"));
|
---|
768 | return 0;
|
---|
769 | }
|
---|
770 |
|
---|
771 | switch (file->update_status)
|
---|
772 | {
|
---|
773 | case 2:
|
---|
774 | DBF (DB_BASIC, _("Failed to remake target file `%s'.\n"));
|
---|
775 | break;
|
---|
776 | case 0:
|
---|
777 | DBF (DB_BASIC, _("Successfully remade target file `%s'.\n"));
|
---|
778 | break;
|
---|
779 | case 1:
|
---|
780 | DBF (DB_BASIC, _("Target file `%s' needs remade under -q.\n"));
|
---|
781 | break;
|
---|
782 | default:
|
---|
783 | assert (file->update_status >= 0 && file->update_status <= 2);
|
---|
784 | break;
|
---|
785 | }
|
---|
786 |
|
---|
787 | file->updated = 1;
|
---|
788 | return file->update_status;
|
---|
789 | }
|
---|
790 | |
---|
791 |
|
---|
792 | /* Set FILE's `updated' flag and re-check its mtime and the mtime's of all
|
---|
793 | files listed in its `also_make' member. Under -t, this function also
|
---|
794 | touches FILE.
|
---|
795 |
|
---|
796 | On return, FILE->update_status will no longer be -1 if it was. */
|
---|
797 |
|
---|
798 | void
|
---|
799 | notice_finished_file (struct file *file)
|
---|
800 | {
|
---|
801 | struct dep *d;
|
---|
802 | int ran = file->command_state == cs_running;
|
---|
803 | int touched = 0;
|
---|
804 |
|
---|
805 | file->command_state = cs_finished;
|
---|
806 | file->updated = 1;
|
---|
807 |
|
---|
808 | if (touch_flag
|
---|
809 | /* The update status will be:
|
---|
810 | -1 if this target was not remade;
|
---|
811 | 0 if 0 or more commands (+ or ${MAKE}) were run and won;
|
---|
812 | 1 if some commands were run and lost.
|
---|
813 | We touch the target if it has commands which either were not run
|
---|
814 | or won when they ran (i.e. status is 0). */
|
---|
815 | && file->update_status == 0)
|
---|
816 | {
|
---|
817 | if (file->cmds != 0 && file->cmds->any_recurse)
|
---|
818 | {
|
---|
819 | /* If all the command lines were recursive,
|
---|
820 | we don't want to do the touching. */
|
---|
821 | unsigned int i;
|
---|
822 | for (i = 0; i < file->cmds->ncommand_lines; ++i)
|
---|
823 | if (!(file->cmds->lines_flags[i] & COMMANDS_RECURSE))
|
---|
824 | goto have_nonrecursing;
|
---|
825 | }
|
---|
826 | else
|
---|
827 | {
|
---|
828 | have_nonrecursing:
|
---|
829 | if (file->phony)
|
---|
830 | file->update_status = 0;
|
---|
831 | /* According to POSIX, -t doesn't affect targets with no cmds. */
|
---|
832 | else if (file->cmds != 0)
|
---|
833 | {
|
---|
834 | /* Should set file's modification date and do nothing else. */
|
---|
835 | file->update_status = touch_file (file);
|
---|
836 |
|
---|
837 | /* Pretend we ran a real touch command, to suppress the
|
---|
838 | "`foo' is up to date" message. */
|
---|
839 | commands_started++;
|
---|
840 |
|
---|
841 | /* Request for the timestamp to be updated (and distributed
|
---|
842 | to the double-colon entries). Simply setting ran=1 would
|
---|
843 | almost have done the trick, but messes up with the also_make
|
---|
844 | updating logic below. */
|
---|
845 | touched = 1;
|
---|
846 | }
|
---|
847 | }
|
---|
848 | }
|
---|
849 |
|
---|
850 | if (file->mtime_before_update == UNKNOWN_MTIME)
|
---|
851 | file->mtime_before_update = file->last_mtime;
|
---|
852 |
|
---|
853 | if ((ran && !file->phony) || touched)
|
---|
854 | {
|
---|
855 | int i = 0;
|
---|
856 |
|
---|
857 | /* If -n, -t, or -q and all the commands are recursive, we ran them so
|
---|
858 | really check the target's mtime again. Otherwise, assume the target
|
---|
859 | would have been updated. */
|
---|
860 |
|
---|
861 | if (question_flag || just_print_flag || touch_flag)
|
---|
862 | {
|
---|
863 | for (i = file->cmds->ncommand_lines; i > 0; --i)
|
---|
864 | if (! (file->cmds->lines_flags[i-1] & COMMANDS_RECURSE))
|
---|
865 | break;
|
---|
866 | }
|
---|
867 |
|
---|
868 | /* If there were no commands at all, it's always new. */
|
---|
869 |
|
---|
870 | else if (file->is_target && file->cmds == 0)
|
---|
871 | i = 1;
|
---|
872 |
|
---|
873 | file->last_mtime = i == 0 ? UNKNOWN_MTIME : NEW_MTIME;
|
---|
874 | }
|
---|
875 |
|
---|
876 | if (file->double_colon)
|
---|
877 | {
|
---|
878 | /* If this is a double colon rule and it is the last one to be
|
---|
879 | updated, propagate the change of modification time to all the
|
---|
880 | double-colon entries for this file.
|
---|
881 |
|
---|
882 | We do it on the last update because it is important to handle
|
---|
883 | individual entries as separate rules with separate timestamps
|
---|
884 | while they are treated as targets and then as one rule with the
|
---|
885 | unified timestamp when they are considered as a prerequisite
|
---|
886 | of some target. */
|
---|
887 |
|
---|
888 | struct file *f;
|
---|
889 | FILE_TIMESTAMP max_mtime = file->last_mtime;
|
---|
890 |
|
---|
891 | /* Check that all rules were updated and at the same time find
|
---|
892 | the max timestamp. We assume UNKNOWN_MTIME is newer then
|
---|
893 | any other value. */
|
---|
894 | for (f = file->double_colon; f != 0 && f->updated; f = f->prev)
|
---|
895 | if (max_mtime != UNKNOWN_MTIME
|
---|
896 | && (f->last_mtime == UNKNOWN_MTIME || f->last_mtime > max_mtime))
|
---|
897 | max_mtime = f->last_mtime;
|
---|
898 |
|
---|
899 | if (f == 0)
|
---|
900 | for (f = file->double_colon; f != 0; f = f->prev)
|
---|
901 | f->last_mtime = max_mtime;
|
---|
902 | }
|
---|
903 |
|
---|
904 | if (ran && file->update_status != -1)
|
---|
905 | /* We actually tried to update FILE, which has
|
---|
906 | updated its also_make's as well (if it worked).
|
---|
907 | If it didn't work, it wouldn't work again for them.
|
---|
908 | So mark them as updated with the same status. */
|
---|
909 | for (d = file->also_make; d != 0; d = d->next)
|
---|
910 | {
|
---|
911 | d->file->command_state = cs_finished;
|
---|
912 | d->file->updated = 1;
|
---|
913 | d->file->update_status = file->update_status;
|
---|
914 |
|
---|
915 | if (ran && !d->file->phony)
|
---|
916 | /* Fetch the new modification time.
|
---|
917 | We do this instead of just invalidating the cached time
|
---|
918 | so that a vpath_search can happen. Otherwise, it would
|
---|
919 | never be done because the target is already updated. */
|
---|
920 | f_mtime (d->file, 0);
|
---|
921 | }
|
---|
922 | else if (file->update_status == -1)
|
---|
923 | /* Nothing was done for FILE, but it needed nothing done.
|
---|
924 | So mark it now as "succeeded". */
|
---|
925 | file->update_status = 0;
|
---|
926 | }
|
---|
927 | |
---|
928 |
|
---|
929 | /* Check whether another file (whose mtime is THIS_MTIME) needs updating on
|
---|
930 | account of a dependency which is file FILE. If it does, store 1 in
|
---|
931 | *MUST_MAKE_PTR. In the process, update any non-intermediate files that
|
---|
932 | FILE depends on (including FILE itself). Return nonzero if any updating
|
---|
933 | failed. */
|
---|
934 |
|
---|
935 | static int
|
---|
936 | check_dep (struct file *file, unsigned int depth,
|
---|
937 | FILE_TIMESTAMP this_mtime, int *must_make_ptr)
|
---|
938 | {
|
---|
939 | struct dep *d;
|
---|
940 | int dep_status = 0;
|
---|
941 |
|
---|
942 | ++depth;
|
---|
943 | start_updating (file);
|
---|
944 |
|
---|
945 | if (file->phony || !file->intermediate)
|
---|
946 | {
|
---|
947 | /* If this is a non-intermediate file, update it and record whether it
|
---|
948 | is newer than THIS_MTIME. */
|
---|
949 | FILE_TIMESTAMP mtime;
|
---|
950 | dep_status = update_file (file, depth);
|
---|
951 | check_renamed (file);
|
---|
952 | mtime = file_mtime (file);
|
---|
953 | check_renamed (file);
|
---|
954 | if (mtime == NONEXISTENT_MTIME || mtime > this_mtime)
|
---|
955 | *must_make_ptr = 1;
|
---|
956 | }
|
---|
957 | else
|
---|
958 | {
|
---|
959 | /* FILE is an intermediate file. */
|
---|
960 | FILE_TIMESTAMP mtime;
|
---|
961 |
|
---|
962 | if (!file->phony && file->cmds == 0 && !file->tried_implicit)
|
---|
963 | {
|
---|
964 | if (try_implicit_rule (file, depth))
|
---|
965 | DBF (DB_IMPLICIT, _("Found an implicit rule for `%s'.\n"));
|
---|
966 | else
|
---|
967 | DBF (DB_IMPLICIT, _("No implicit rule found for `%s'.\n"));
|
---|
968 | file->tried_implicit = 1;
|
---|
969 | }
|
---|
970 | if (file->cmds == 0 && !file->is_target
|
---|
971 | && default_file != 0 && default_file->cmds != 0)
|
---|
972 | {
|
---|
973 | DBF (DB_IMPLICIT, _("Using default commands for `%s'.\n"));
|
---|
974 | file->cmds = default_file->cmds;
|
---|
975 | }
|
---|
976 |
|
---|
977 | check_renamed (file);
|
---|
978 | mtime = file_mtime (file);
|
---|
979 | check_renamed (file);
|
---|
980 | if (mtime != NONEXISTENT_MTIME && mtime > this_mtime)
|
---|
981 | /* If the intermediate file actually exists and is newer, then we
|
---|
982 | should remake from it. */
|
---|
983 | *must_make_ptr = 1;
|
---|
984 | else
|
---|
985 | {
|
---|
986 | /* Otherwise, update all non-intermediate files we depend on, if
|
---|
987 | necessary, and see whether any of them is more recent than the
|
---|
988 | file on whose behalf we are checking. */
|
---|
989 | struct dep *lastd;
|
---|
990 | int deps_running = 0;
|
---|
991 |
|
---|
992 | /* Reset this target's state so that we check it fresh. It could be
|
---|
993 | that it's already been checked as part of an order-only
|
---|
994 | prerequisite and so wasn't rebuilt then, but should be now. */
|
---|
995 | set_command_state (file, cs_not_started);
|
---|
996 |
|
---|
997 | lastd = 0;
|
---|
998 | d = file->deps;
|
---|
999 | while (d != 0)
|
---|
1000 | {
|
---|
1001 | int maybe_make;
|
---|
1002 |
|
---|
1003 | if (is_updating (d->file))
|
---|
1004 | {
|
---|
1005 | error (NILF, _("Circular %s <- %s dependency dropped."),
|
---|
1006 | file->name, d->file->name);
|
---|
1007 | if (lastd == 0)
|
---|
1008 | {
|
---|
1009 | file->deps = d->next;
|
---|
1010 | free_dep (d);
|
---|
1011 | d = file->deps;
|
---|
1012 | }
|
---|
1013 | else
|
---|
1014 | {
|
---|
1015 | lastd->next = d->next;
|
---|
1016 | free_dep (d);
|
---|
1017 | d = lastd->next;
|
---|
1018 | }
|
---|
1019 | continue;
|
---|
1020 | }
|
---|
1021 |
|
---|
1022 | d->file->parent = file;
|
---|
1023 | maybe_make = *must_make_ptr;
|
---|
1024 | dep_status |= check_dep (d->file, depth, this_mtime,
|
---|
1025 | &maybe_make);
|
---|
1026 | if (! d->ignore_mtime)
|
---|
1027 | *must_make_ptr = maybe_make;
|
---|
1028 | check_renamed (d->file);
|
---|
1029 | if (dep_status != 0 && !keep_going_flag)
|
---|
1030 | break;
|
---|
1031 |
|
---|
1032 | if (d->file->command_state == cs_running
|
---|
1033 | || d->file->command_state == cs_deps_running)
|
---|
1034 | deps_running = 1;
|
---|
1035 |
|
---|
1036 | lastd = d;
|
---|
1037 | d = d->next;
|
---|
1038 | }
|
---|
1039 |
|
---|
1040 | if (deps_running)
|
---|
1041 | /* Record that some of FILE's deps are still being made.
|
---|
1042 | This tells the upper levels to wait on processing it until the
|
---|
1043 | commands are finished. */
|
---|
1044 | set_command_state (file, cs_deps_running);
|
---|
1045 | }
|
---|
1046 | }
|
---|
1047 |
|
---|
1048 | finish_updating (file);
|
---|
1049 | return dep_status;
|
---|
1050 | }
|
---|
1051 | |
---|
1052 |
|
---|
1053 | /* Touch FILE. Return zero if successful, one if not. */
|
---|
1054 |
|
---|
1055 | #define TOUCH_ERROR(call) return (perror_with_name (call, file->name), 1)
|
---|
1056 |
|
---|
1057 | static int
|
---|
1058 | touch_file (struct file *file)
|
---|
1059 | {
|
---|
1060 | if (!silent_flag)
|
---|
1061 | message (0, "touch %s", file->name);
|
---|
1062 |
|
---|
1063 | #ifndef NO_ARCHIVES
|
---|
1064 | if (ar_name (file->name))
|
---|
1065 | return ar_touch (file->name);
|
---|
1066 | else
|
---|
1067 | #endif
|
---|
1068 | {
|
---|
1069 | int fd = open (file->name, O_RDWR | O_CREAT, 0666);
|
---|
1070 |
|
---|
1071 | if (fd < 0)
|
---|
1072 | TOUCH_ERROR ("touch: open: ");
|
---|
1073 | else
|
---|
1074 | {
|
---|
1075 | struct stat statbuf;
|
---|
1076 | char buf = 'x';
|
---|
1077 | int e;
|
---|
1078 |
|
---|
1079 | EINTRLOOP (e, fstat (fd, &statbuf));
|
---|
1080 | if (e < 0)
|
---|
1081 | TOUCH_ERROR ("touch: fstat: ");
|
---|
1082 | /* Rewrite character 0 same as it already is. */
|
---|
1083 | if (read (fd, &buf, 1) < 0)
|
---|
1084 | TOUCH_ERROR ("touch: read: ");
|
---|
1085 | if (lseek (fd, 0L, 0) < 0L)
|
---|
1086 | TOUCH_ERROR ("touch: lseek: ");
|
---|
1087 | if (write (fd, &buf, 1) < 0)
|
---|
1088 | TOUCH_ERROR ("touch: write: ");
|
---|
1089 | /* If file length was 0, we just
|
---|
1090 | changed it, so change it back. */
|
---|
1091 | if (statbuf.st_size == 0)
|
---|
1092 | {
|
---|
1093 | (void) close (fd);
|
---|
1094 | fd = open (file->name, O_RDWR | O_TRUNC, 0666);
|
---|
1095 | if (fd < 0)
|
---|
1096 | TOUCH_ERROR ("touch: open: ");
|
---|
1097 | }
|
---|
1098 | (void) close (fd);
|
---|
1099 | }
|
---|
1100 | }
|
---|
1101 |
|
---|
1102 | return 0;
|
---|
1103 | }
|
---|
1104 | |
---|
1105 |
|
---|
1106 | /* Having checked and updated the dependencies of FILE,
|
---|
1107 | do whatever is appropriate to remake FILE itself.
|
---|
1108 | Return the status from executing FILE's commands. */
|
---|
1109 |
|
---|
1110 | static void
|
---|
1111 | remake_file (struct file *file)
|
---|
1112 | {
|
---|
1113 | if (file->cmds == 0)
|
---|
1114 | {
|
---|
1115 | if (file->phony)
|
---|
1116 | /* Phony target. Pretend it succeeded. */
|
---|
1117 | file->update_status = 0;
|
---|
1118 | else if (file->is_target)
|
---|
1119 | /* This is a nonexistent target file we cannot make.
|
---|
1120 | Pretend it was successfully remade. */
|
---|
1121 | file->update_status = 0;
|
---|
1122 | else
|
---|
1123 | {
|
---|
1124 | /* This is a dependency file we cannot remake. Fail. */
|
---|
1125 | if (!rebuilding_makefiles || !file->dontcare)
|
---|
1126 | complain (file);
|
---|
1127 | file->update_status = 2;
|
---|
1128 | }
|
---|
1129 | }
|
---|
1130 | else
|
---|
1131 | {
|
---|
1132 | chop_commands (file->cmds);
|
---|
1133 |
|
---|
1134 | /* The normal case: start some commands. */
|
---|
1135 | if (!touch_flag || file->cmds->any_recurse)
|
---|
1136 | {
|
---|
1137 | execute_file_commands (file);
|
---|
1138 | return;
|
---|
1139 | }
|
---|
1140 |
|
---|
1141 | /* This tells notice_finished_file it is ok to touch the file. */
|
---|
1142 | file->update_status = 0;
|
---|
1143 | }
|
---|
1144 |
|
---|
1145 | /* This does the touching under -t. */
|
---|
1146 | notice_finished_file (file);
|
---|
1147 | }
|
---|
1148 | |
---|
1149 |
|
---|
1150 | /* Return the mtime of a file, given a `struct file'.
|
---|
1151 | Caches the time in the struct file to avoid excess stat calls.
|
---|
1152 |
|
---|
1153 | If the file is not found, and SEARCH is nonzero, VPATH searching and
|
---|
1154 | replacement is done. If that fails, a library (-lLIBNAME) is tried and
|
---|
1155 | the library's actual name (/lib/libLIBNAME.a, etc.) is substituted into
|
---|
1156 | FILE. */
|
---|
1157 |
|
---|
1158 | FILE_TIMESTAMP
|
---|
1159 | f_mtime (struct file *file, int search)
|
---|
1160 | {
|
---|
1161 | FILE_TIMESTAMP mtime;
|
---|
1162 |
|
---|
1163 | /* File's mtime is not known; must get it from the system. */
|
---|
1164 |
|
---|
1165 | #ifndef NO_ARCHIVES
|
---|
1166 | if (ar_name (file->name))
|
---|
1167 | {
|
---|
1168 | /* This file is an archive-member reference. */
|
---|
1169 |
|
---|
1170 | char *arname, *memname;
|
---|
1171 | struct file *arfile;
|
---|
1172 | time_t member_date;
|
---|
1173 |
|
---|
1174 | /* Find the archive's name. */
|
---|
1175 | ar_parse_name (file->name, &arname, &memname);
|
---|
1176 |
|
---|
1177 | /* Find the modification time of the archive itself.
|
---|
1178 | Also allow for its name to be changed via VPATH search. */
|
---|
1179 | arfile = lookup_file (arname);
|
---|
1180 | if (arfile == 0)
|
---|
1181 | arfile = enter_file (strcache_add (arname));
|
---|
1182 | mtime = f_mtime (arfile, search);
|
---|
1183 | check_renamed (arfile);
|
---|
1184 | if (search && strcmp (arfile->hname, arname))
|
---|
1185 | {
|
---|
1186 | /* The archive's name has changed.
|
---|
1187 | Change the archive-member reference accordingly. */
|
---|
1188 |
|
---|
1189 | char *name;
|
---|
1190 | unsigned int arlen, memlen;
|
---|
1191 |
|
---|
1192 | arlen = strlen (arfile->hname);
|
---|
1193 | memlen = strlen (memname);
|
---|
1194 |
|
---|
1195 | name = xmalloc (arlen + 1 + memlen + 2);
|
---|
1196 | memcpy (name, arfile->hname, arlen);
|
---|
1197 | name[arlen] = '(';
|
---|
1198 | memcpy (name + arlen + 1, memname, memlen);
|
---|
1199 | name[arlen + 1 + memlen] = ')';
|
---|
1200 | name[arlen + 1 + memlen + 1] = '\0';
|
---|
1201 |
|
---|
1202 | /* If the archive was found with GPATH, make the change permanent;
|
---|
1203 | otherwise defer it until later. */
|
---|
1204 | if (arfile->name == arfile->hname)
|
---|
1205 | rename_file (file, name);
|
---|
1206 | else
|
---|
1207 | rehash_file (file, name);
|
---|
1208 | check_renamed (file);
|
---|
1209 | }
|
---|
1210 |
|
---|
1211 | free (arname);
|
---|
1212 |
|
---|
1213 | file->low_resolution_time = 1;
|
---|
1214 |
|
---|
1215 | if (mtime == NONEXISTENT_MTIME)
|
---|
1216 | /* The archive doesn't exist, so its members don't exist either. */
|
---|
1217 | return NONEXISTENT_MTIME;
|
---|
1218 |
|
---|
1219 | member_date = ar_member_date (file->hname);
|
---|
1220 | mtime = (member_date == (time_t) -1
|
---|
1221 | ? NONEXISTENT_MTIME
|
---|
1222 | : file_timestamp_cons (file->hname, member_date, 0));
|
---|
1223 | }
|
---|
1224 | else
|
---|
1225 | #endif
|
---|
1226 | {
|
---|
1227 | mtime = name_mtime (file->name);
|
---|
1228 |
|
---|
1229 | if (mtime == NONEXISTENT_MTIME && search && !file->ignore_vpath)
|
---|
1230 | {
|
---|
1231 | /* If name_mtime failed, search VPATH. */
|
---|
1232 | const char *name = vpath_search (file->name, &mtime);
|
---|
1233 | if (name
|
---|
1234 | /* Last resort, is it a library (-lxxx)? */
|
---|
1235 | || (file->name[0] == '-' && file->name[1] == 'l'
|
---|
1236 | && (name = library_search (file->name, &mtime)) != 0))
|
---|
1237 | {
|
---|
1238 | if (mtime != UNKNOWN_MTIME)
|
---|
1239 | /* vpath_search and library_search store UNKNOWN_MTIME
|
---|
1240 | if they didn't need to do a stat call for their work. */
|
---|
1241 | file->last_mtime = mtime;
|
---|
1242 |
|
---|
1243 | /* If we found it in VPATH, see if it's in GPATH too; if so,
|
---|
1244 | change the name right now; if not, defer until after the
|
---|
1245 | dependencies are updated. */
|
---|
1246 | if (gpath_search (name, strlen(name) - strlen(file->name) - 1))
|
---|
1247 | {
|
---|
1248 | rename_file (file, name);
|
---|
1249 | check_renamed (file);
|
---|
1250 | return file_mtime (file);
|
---|
1251 | }
|
---|
1252 |
|
---|
1253 | rehash_file (file, name);
|
---|
1254 | check_renamed (file);
|
---|
1255 | /* If the result of a vpath search is -o or -W, preserve it.
|
---|
1256 | Otherwise, find the mtime of the resulting file. */
|
---|
1257 | if (mtime != OLD_MTIME && mtime != NEW_MTIME)
|
---|
1258 | mtime = name_mtime (name);
|
---|
1259 | }
|
---|
1260 | }
|
---|
1261 | }
|
---|
1262 |
|
---|
1263 | /* Files can have bogus timestamps that nothing newly made will be
|
---|
1264 | "newer" than. Updating their dependents could just result in loops.
|
---|
1265 | So notify the user of the anomaly with a warning.
|
---|
1266 |
|
---|
1267 | We only need to do this once, for now. */
|
---|
1268 |
|
---|
1269 | if (!clock_skew_detected
|
---|
1270 | && mtime != NONEXISTENT_MTIME && mtime != NEW_MTIME
|
---|
1271 | && !file->updated)
|
---|
1272 | {
|
---|
1273 | static FILE_TIMESTAMP adjusted_now;
|
---|
1274 |
|
---|
1275 | FILE_TIMESTAMP adjusted_mtime = mtime;
|
---|
1276 |
|
---|
1277 | #if defined(WINDOWS32) || defined(__MSDOS__)
|
---|
1278 | /* Experimentation has shown that FAT filesystems can set file times
|
---|
1279 | up to 3 seconds into the future! Play it safe. */
|
---|
1280 |
|
---|
1281 | #define FAT_ADJ_OFFSET (FILE_TIMESTAMP) 3
|
---|
1282 |
|
---|
1283 | FILE_TIMESTAMP adjustment = FAT_ADJ_OFFSET << FILE_TIMESTAMP_LO_BITS;
|
---|
1284 | if (ORDINARY_MTIME_MIN + adjustment <= adjusted_mtime)
|
---|
1285 | adjusted_mtime -= adjustment;
|
---|
1286 | #elif defined(__EMX__)
|
---|
1287 | /* FAT filesystems round time to the nearest even second!
|
---|
1288 | Allow for any file (NTFS or FAT) to perhaps suffer from this
|
---|
1289 | brain damage. */
|
---|
1290 | FILE_TIMESTAMP adjustment = (((FILE_TIMESTAMP_S (adjusted_mtime) & 1) == 0
|
---|
1291 | && FILE_TIMESTAMP_NS (adjusted_mtime) == 0)
|
---|
1292 | ? (FILE_TIMESTAMP) 1 << FILE_TIMESTAMP_LO_BITS
|
---|
1293 | : 0);
|
---|
1294 | #endif
|
---|
1295 |
|
---|
1296 | /* If the file's time appears to be in the future, update our
|
---|
1297 | concept of the present and try once more. */
|
---|
1298 | if (adjusted_now < adjusted_mtime)
|
---|
1299 | {
|
---|
1300 | int resolution;
|
---|
1301 | FILE_TIMESTAMP now = file_timestamp_now (&resolution);
|
---|
1302 | adjusted_now = now + (resolution - 1);
|
---|
1303 | if (adjusted_now < adjusted_mtime)
|
---|
1304 | {
|
---|
1305 | #ifdef NO_FLOAT
|
---|
1306 | error (NILF, _("Warning: File `%s' has modification time in the future"),
|
---|
1307 | file->name);
|
---|
1308 | #else
|
---|
1309 | double from_now =
|
---|
1310 | (FILE_TIMESTAMP_S (mtime) - FILE_TIMESTAMP_S (now)
|
---|
1311 | + ((FILE_TIMESTAMP_NS (mtime) - FILE_TIMESTAMP_NS (now))
|
---|
1312 | / 1e9));
|
---|
1313 | char from_now_string[100];
|
---|
1314 |
|
---|
1315 | if (from_now >= 99 && from_now <= ULONG_MAX)
|
---|
1316 | sprintf (from_now_string, "%lu", (unsigned long) from_now);
|
---|
1317 | else
|
---|
1318 | sprintf (from_now_string, "%.2g", from_now);
|
---|
1319 | error (NILF, _("Warning: File `%s' has modification time %s s in the future"),
|
---|
1320 | file->name, from_now_string);
|
---|
1321 | #endif
|
---|
1322 | clock_skew_detected = 1;
|
---|
1323 | }
|
---|
1324 | }
|
---|
1325 | }
|
---|
1326 |
|
---|
1327 | /* Store the mtime into all the entries for this file. */
|
---|
1328 | if (file->double_colon)
|
---|
1329 | file = file->double_colon;
|
---|
1330 |
|
---|
1331 | do
|
---|
1332 | {
|
---|
1333 | /* If this file is not implicit but it is intermediate then it was
|
---|
1334 | made so by the .INTERMEDIATE target. If this file has never
|
---|
1335 | been built by us but was found now, it existed before make
|
---|
1336 | started. So, turn off the intermediate bit so make doesn't
|
---|
1337 | delete it, since it didn't create it. */
|
---|
1338 | if (mtime != NONEXISTENT_MTIME && file->command_state == cs_not_started
|
---|
1339 | && file->command_state == cs_not_started
|
---|
1340 | && !file->tried_implicit && file->intermediate)
|
---|
1341 | file->intermediate = 0;
|
---|
1342 |
|
---|
1343 | file->last_mtime = mtime;
|
---|
1344 | file = file->prev;
|
---|
1345 | }
|
---|
1346 | while (file != 0);
|
---|
1347 |
|
---|
1348 | return mtime;
|
---|
1349 | }
|
---|
1350 |
|
---|
1351 |
|
---|
1352 | /* Return the mtime of the file or archive-member reference NAME. */
|
---|
1353 |
|
---|
1354 | /* First, we check with stat(). If the file does not exist, then we return
|
---|
1355 | NONEXISTENT_MTIME. If it does, and the symlink check flag is set, then
|
---|
1356 | examine each indirection of the symlink and find the newest mtime.
|
---|
1357 | This causes one duplicate stat() when -L is being used, but the code is
|
---|
1358 | much cleaner. */
|
---|
1359 |
|
---|
1360 | static FILE_TIMESTAMP
|
---|
1361 | name_mtime (const char *name)
|
---|
1362 | {
|
---|
1363 | FILE_TIMESTAMP mtime;
|
---|
1364 | struct stat st;
|
---|
1365 | int e;
|
---|
1366 |
|
---|
1367 | EINTRLOOP (e, stat (name, &st));
|
---|
1368 | if (e == 0)
|
---|
1369 | mtime = FILE_TIMESTAMP_STAT_MODTIME (name, st);
|
---|
1370 | else if (errno == ENOENT || errno == ENOTDIR)
|
---|
1371 | mtime = NONEXISTENT_MTIME;
|
---|
1372 | else
|
---|
1373 | {
|
---|
1374 | perror_with_name ("stat: ", name);
|
---|
1375 | return NONEXISTENT_MTIME;
|
---|
1376 | }
|
---|
1377 |
|
---|
1378 | /* If we get here we either found it, or it doesn't exist.
|
---|
1379 | If it doesn't exist see if we can use a symlink mtime instead. */
|
---|
1380 |
|
---|
1381 | #ifdef MAKE_SYMLINKS
|
---|
1382 | #ifndef S_ISLNK
|
---|
1383 | # define S_ISLNK(_m) (((_m)&S_IFMT)==S_IFLNK)
|
---|
1384 | #endif
|
---|
1385 | if (check_symlink_flag)
|
---|
1386 | {
|
---|
1387 | PATH_VAR (lpath);
|
---|
1388 |
|
---|
1389 | /* Check each symbolic link segment (if any). Find the latest mtime
|
---|
1390 | amongst all of them (and the target file of course).
|
---|
1391 | Note that we have already successfully dereferenced all the links
|
---|
1392 | above. So, if we run into any error trying to lstat(), or
|
---|
1393 | readlink(), or whatever, something bizarre-o happened. Just give up
|
---|
1394 | and use whatever mtime we've already computed at that point. */
|
---|
1395 | strcpy (lpath, name);
|
---|
1396 | while (1)
|
---|
1397 | {
|
---|
1398 | FILE_TIMESTAMP ltime;
|
---|
1399 | PATH_VAR (lbuf);
|
---|
1400 | long llen;
|
---|
1401 | char *p;
|
---|
1402 |
|
---|
1403 | EINTRLOOP (e, lstat (lpath, &st));
|
---|
1404 | if (e)
|
---|
1405 | {
|
---|
1406 | /* Just take what we have so far. */
|
---|
1407 | if (errno != ENOENT && errno != ENOTDIR)
|
---|
1408 | perror_with_name ("lstat: ", lpath);
|
---|
1409 | break;
|
---|
1410 | }
|
---|
1411 |
|
---|
1412 | /* If this is not a symlink, we're done (we started with the real
|
---|
1413 | file's mtime so we don't need to test it again). */
|
---|
1414 | if (!S_ISLNK (st.st_mode))
|
---|
1415 | break;
|
---|
1416 |
|
---|
1417 | /* If this mtime is newer than what we had, keep the new one. */
|
---|
1418 | ltime = FILE_TIMESTAMP_STAT_MODTIME (lpath, st);
|
---|
1419 | if (ltime > mtime)
|
---|
1420 | mtime = ltime;
|
---|
1421 |
|
---|
1422 | /* Set up to check the file pointed to by this link. */
|
---|
1423 | EINTRLOOP (llen, readlink (lpath, lbuf, GET_PATH_MAX));
|
---|
1424 | if (llen < 0)
|
---|
1425 | {
|
---|
1426 | /* Eh? Just take what we have. */
|
---|
1427 | perror_with_name ("readlink: ", lpath);
|
---|
1428 | break;
|
---|
1429 | }
|
---|
1430 | lbuf[llen] = '\0';
|
---|
1431 |
|
---|
1432 | /* If the target is fully-qualified or the source is just a
|
---|
1433 | filename, then the new path is the target. Otherwise it's the
|
---|
1434 | source directory plus the target. */
|
---|
1435 | if (lbuf[0] == '/' || (p = strrchr (lpath, '/')) == NULL)
|
---|
1436 | strcpy (lpath, lbuf);
|
---|
1437 | else if ((p - lpath) + llen + 2 > GET_PATH_MAX)
|
---|
1438 | /* Eh? Path too long! Again, just go with what we have. */
|
---|
1439 | break;
|
---|
1440 | else
|
---|
1441 | /* Create the next step in the symlink chain. */
|
---|
1442 | strcpy (p+1, lbuf);
|
---|
1443 | }
|
---|
1444 | }
|
---|
1445 | #endif
|
---|
1446 |
|
---|
1447 | return mtime;
|
---|
1448 | }
|
---|
1449 |
|
---|
1450 |
|
---|
1451 | /* Search for a library file specified as -lLIBNAME, searching for a
|
---|
1452 | suitable library file in the system library directories and the VPATH
|
---|
1453 | directories. */
|
---|
1454 |
|
---|
1455 | static const char *
|
---|
1456 | library_search (const char *lib, FILE_TIMESTAMP *mtime_ptr)
|
---|
1457 | {
|
---|
1458 | static char *dirs[] =
|
---|
1459 | {
|
---|
1460 | #ifndef _AMIGA
|
---|
1461 | "/lib",
|
---|
1462 | "/usr/lib",
|
---|
1463 | #endif
|
---|
1464 | #if defined(WINDOWS32) && !defined(LIBDIR)
|
---|
1465 | /*
|
---|
1466 | * This is completely up to the user at product install time. Just define
|
---|
1467 | * a placeholder.
|
---|
1468 | */
|
---|
1469 | #define LIBDIR "."
|
---|
1470 | #endif
|
---|
1471 | LIBDIR, /* Defined by configuration. */
|
---|
1472 | 0
|
---|
1473 | };
|
---|
1474 |
|
---|
1475 | static char *libpatterns = NULL;
|
---|
1476 |
|
---|
1477 | const char *libname = lib+2; /* Name without the '-l'. */
|
---|
1478 | FILE_TIMESTAMP mtime;
|
---|
1479 |
|
---|
1480 | /* Loop variables for the libpatterns value. */
|
---|
1481 | char *p;
|
---|
1482 | const char *p2;
|
---|
1483 | unsigned int len;
|
---|
1484 |
|
---|
1485 | char **dp;
|
---|
1486 |
|
---|
1487 | /* If we don't have libpatterns, get it. */
|
---|
1488 | if (!libpatterns)
|
---|
1489 | {
|
---|
1490 | int save = warn_undefined_variables_flag;
|
---|
1491 | warn_undefined_variables_flag = 0;
|
---|
1492 |
|
---|
1493 | libpatterns = xstrdup (variable_expand ("$(strip $(.LIBPATTERNS))"));
|
---|
1494 |
|
---|
1495 | warn_undefined_variables_flag = save;
|
---|
1496 | }
|
---|
1497 |
|
---|
1498 | /* Loop through all the patterns in .LIBPATTERNS, and search on each one. */
|
---|
1499 | p2 = libpatterns;
|
---|
1500 | while ((p = find_next_token (&p2, &len)) != 0)
|
---|
1501 | {
|
---|
1502 | static char *buf = NULL;
|
---|
1503 | static unsigned int buflen = 0;
|
---|
1504 | static int libdir_maxlen = -1;
|
---|
1505 | char *libbuf = variable_expand ("");
|
---|
1506 |
|
---|
1507 | /* Expand the pattern using LIBNAME as a replacement. */
|
---|
1508 | {
|
---|
1509 | char c = p[len];
|
---|
1510 | char *p3, *p4;
|
---|
1511 |
|
---|
1512 | p[len] = '\0';
|
---|
1513 | p3 = find_percent (p);
|
---|
1514 | if (!p3)
|
---|
1515 | {
|
---|
1516 | /* Give a warning if there is no pattern, then remove the
|
---|
1517 | pattern so it's ignored next time. */
|
---|
1518 | error (NILF, _(".LIBPATTERNS element `%s' is not a pattern"), p);
|
---|
1519 | for (; len; --len, ++p)
|
---|
1520 | *p = ' ';
|
---|
1521 | *p = c;
|
---|
1522 | continue;
|
---|
1523 | }
|
---|
1524 | p4 = variable_buffer_output (libbuf, p, p3-p);
|
---|
1525 | p4 = variable_buffer_output (p4, libname, strlen (libname));
|
---|
1526 | p4 = variable_buffer_output (p4, p3+1, len - (p3-p));
|
---|
1527 | p[len] = c;
|
---|
1528 | }
|
---|
1529 |
|
---|
1530 | /* Look first for `libNAME.a' in the current directory. */
|
---|
1531 | mtime = name_mtime (libbuf);
|
---|
1532 | if (mtime != NONEXISTENT_MTIME)
|
---|
1533 | {
|
---|
1534 | if (mtime_ptr != 0)
|
---|
1535 | *mtime_ptr = mtime;
|
---|
1536 | return strcache_add (libbuf);
|
---|
1537 | }
|
---|
1538 |
|
---|
1539 | /* Now try VPATH search on that. */
|
---|
1540 |
|
---|
1541 | {
|
---|
1542 | const char *file = vpath_search (libbuf, mtime_ptr);
|
---|
1543 | if (file)
|
---|
1544 | return file;
|
---|
1545 | }
|
---|
1546 |
|
---|
1547 | /* Now try the standard set of directories. */
|
---|
1548 |
|
---|
1549 | if (!buflen)
|
---|
1550 | {
|
---|
1551 | for (dp = dirs; *dp != 0; ++dp)
|
---|
1552 | {
|
---|
1553 | int l = strlen (*dp);
|
---|
1554 | if (l > libdir_maxlen)
|
---|
1555 | libdir_maxlen = l;
|
---|
1556 | }
|
---|
1557 | buflen = strlen (libbuf);
|
---|
1558 | buf = xmalloc(libdir_maxlen + buflen + 2);
|
---|
1559 | }
|
---|
1560 | else if (buflen < strlen (libbuf))
|
---|
1561 | {
|
---|
1562 | buflen = strlen (libbuf);
|
---|
1563 | buf = xrealloc (buf, libdir_maxlen + buflen + 2);
|
---|
1564 | }
|
---|
1565 |
|
---|
1566 | for (dp = dirs; *dp != 0; ++dp)
|
---|
1567 | {
|
---|
1568 | sprintf (buf, "%s/%s", *dp, libbuf);
|
---|
1569 | mtime = name_mtime (buf);
|
---|
1570 | if (mtime != NONEXISTENT_MTIME)
|
---|
1571 | {
|
---|
1572 | if (mtime_ptr != 0)
|
---|
1573 | *mtime_ptr = mtime;
|
---|
1574 | return strcache_add (buf);
|
---|
1575 | }
|
---|
1576 | }
|
---|
1577 | }
|
---|
1578 |
|
---|
1579 | return 0;
|
---|
1580 | }
|
---|