};
+void record_files (const char *filename, unsigned long line_no, struct nameseq *filenames, char *cmds, size_t cmds_idx, char *depstr);
void *parse_nameseq (char *line, size_t size);
-void record_files (struct nameseq *filenames, char *cmds, size_t cmds_idx, char *depstr);
#endif /* _READ_H */
struct dep *deps;
struct commands *cmds;
+
+ const char *filename;
+ unsigned long line_no;
};
char *first, *second;
struct commands *cmds;
+ const char *filename;
+ unsigned long line_no;
+
struct suffix_rule *next;
};
extern struct suffix_rule *suffix_rules;
struct rule *rule_find (const char *name);
-void rule_add (char *name, struct dep *deps, struct commands *cmds);
-void rule_add_suffix (char *name, struct commands *cmds);
+void rule_add (const char *filename, unsigned long line_no, char *name, struct dep *deps, struct commands *cmds);
+void rule_add_suffix (const char *filename, unsigned long line_no, char *name, struct commands *cmds);
void rules_init (void);
#endif /* _RULE_H */
#define record_waiting_files() \
do { \
if (filenames) { \
- record_files (filenames, cmds, cmds_idx, depstr); \
+ record_files (lbuf->filename, line_no, filenames, cmds, cmds_idx, depstr); \
filenames = 0; \
} \
cmds_idx = 0; \
}
if (!cur_if_stack) {
-
- fprintf (stderr, "%s: %s: %lu: *** extraneous 'else'. Stop.\n", program_name, lbuf->filename, line_no);
- exit (EXIT_FAILURE);
-
+ fprintf (stderr, "%s: %s: %lu: extraneous 'else'\n", program_name, lbuf->filename, line_no);
}
if (strncmp (p, "ifeq", 4) == 0 || strncmp (p, "ifneq", 5) == 0 || strncmp (p, "ifdef", 5) == 0 || strncmp (p, "ifndef", 6) == 0) {
}
if (!cur_if_stack) {
-
- fprintf (stderr, "%s: %s: %lu: *** extraneous 'endif'. Stop.\n", program_name, lbuf->filename, line_no);
- exit (EXIT_FAILURE);
-
+ fprintf (stderr, "%s: %s: %lu: extraneous 'endif'\n", program_name, lbuf->filename, line_no);
} else {
struct if_stack *prev = cur_if_stack->prev;
}
if (*p) {
- fprintf (stderr, "%s: %s: %lu: *** extraneous text after 'endif' directive\n", program_name, lbuf->filename, line_no);
+ fprintf (stderr, "%s: %s: %lu: extraneous text after 'endif' directive\n", program_name, lbuf->filename, line_no);
}
continue;
}
-void record_files (struct nameseq *filenames, char *cmds, size_t cmds_idx, char *depstr) {
+void record_files (const char *filename, unsigned long line_no, struct nameseq *filenames, char *cmds, size_t cmds_idx, char *depstr) {
struct commands *cmds_p;
for (ns = filenames, old_ns = 0; ns; old_ns = ns, ns = ns->next, free (old_ns->name), free (old_ns)) {
if (ns->name[0] == '.' && !strchr (ns->name, '\\') && !strchr (ns->name, '/')) {
- rule_add_suffix (ns->name, cmds_p);
+ rule_add_suffix (filename, line_no - 1, ns->name, cmds_p);
} else {
- rule_add (ns->name, deps, cmds_p);
+ rule_add (filename, line_no - 1, ns->name, deps, cmds_p);
}
}
}
-void rule_add (char *name, struct dep *deps, struct commands *cmds) {
+void rule_add (const char *filename, unsigned long line_no, char *name, struct dep *deps, struct commands *cmds) {
struct hashtab_name *key;
struct rule *r;
r->deps = deps;
r->cmds = cmds;
+ r->filename = xstrdup (filename);
+ r->line_no = line_no;
+
hashtab_put (&hashtab_rules, key, r);
}
-void rule_add_suffix (char *name, struct commands *cmds) {
+void rule_add_suffix (const char *filename, unsigned long line_no, char *name, struct commands *cmds) {
struct suffix_rule *s = xmalloc (sizeof (*s));
char *p;
s->cmds = cmds;
s->next = suffix_rules;
+ s->filename = xstrdup (filename);
+ s->line_no = line_no;
+
suffix_rules = s;
}
struct linebuf lbuf;
FILE *fp;
- if (!*input) {
-
- fprintf (stderr, "%s: %s: %lu: empty call\n", program_name, filename, line_no);
- return 0;
-
- }
+ (void) filename;
+ (void) line_no;
if (!(fp = popen (input, "rb"))) {
return 0;
static int doing_inference_rule_commands = 0;
-static int rule_run_command (const char *name, char *p, char *q) {
+static int rule_run_command (const char *filename, unsigned long line_no, const char *name, char *p, char *q) {
int is_quiet = state->quiet, is_ignoring_errors = 0;
char *new_cmds, *s;
if (!is_ignoring_errors && error) {
- fprintf (stderr, "[%s] Error %d\n", name, error);
+ fprintf (stderr, "%s: *** [%s:%lu: %s] Error %d\n", program_name, filename, line_no, name, error);
return 1;
}
}
-static int run_commands (struct commands *cmds, char *name) {
+static int run_commands (const char *filename, unsigned long line_no, struct commands *cmds, char *name) {
char *p = parse_command (cmds->text), *q;
int error;
if (!q) { break; };
- if ((error = rule_run_command (name, p, q)) < 0) {
+ if ((error = rule_run_command (filename, line_no, name, p, q)) < 0) {
return error;
}
variable_change ("*", star_name, VAR_ORIGIN_AUTOMATIC);
variable_change ("^", xstrdup (str.data), VAR_ORIGIN_AUTOMATIC);
- return run_commands (r->cmds, name);
+ return run_commands (r->filename, r->line_no, r->cmds, name);
}
variable_change ("<", lesser_name, VAR_ORIGIN_AUTOMATIC);
variable_change ("*", star_name, VAR_ORIGIN_AUTOMATIC);
- return run_commands (s->cmds, name);
+ return run_commands (s->filename, s->line_no, s->cmds, name);
}
variable_change ("<", lesser_name, VAR_ORIGIN_AUTOMATIC);
variable_change ("*", star_name, VAR_ORIGIN_AUTOMATIC);
- return run_commands (s->cmds, name);
+ return run_commands (s->filename, s->line_no, s->cmds, name);
}