1 /* Set up combined include path chain for the preprocessor.
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
4 Free Software Foundation, Inc.
6 Broken out of cppinit.c and cppfiles.c and rewritten Mar 2003.
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
24 #include "coretypes.h"
31 #include "c-incpath.h"
32 #include "cppdefault.h"
34 /* Windows does not natively support inodes, and neither does MSDOS.
35 Cygwin's emulation can generate non-unique inodes, so don't use it.
36 VMS has non-numeric inodes. */
38 # define INO_T_EQ(A, B) (!memcmp (&(A), &(B), sizeof (A)))
39 # define INO_T_COPY(DEST, SRC) memcpy(&(DEST), &(SRC), sizeof (SRC))
41 # if (defined _WIN32 && !defined (_UWIN)) || defined __MSDOS__
42 # define INO_T_EQ(A, B) 0
44 # define INO_T_EQ(A, B) ((A) == (B))
46 # define INO_T_COPY(DEST, SRC) (DEST) = (SRC)
49 static const char dir_separator_str
[] = { DIR_SEPARATOR
, 0 };
51 static void add_env_var_paths (const char *, int);
52 static void add_standard_paths (const char *, const char *, const char *, int);
53 static void free_path (struct cpp_dir
*, int);
54 static void merge_include_chains (const char *, cpp_reader
*, int);
55 static void add_sysroot_to_chain (const char *, int);
56 static struct cpp_dir
*remove_duplicates (cpp_reader
*, struct cpp_dir
*,
58 struct cpp_dir
*, int);
60 /* Include chains heads and tails. */
61 static struct cpp_dir
*heads
[4];
62 static struct cpp_dir
*tails
[4];
63 static bool quote_ignores_source_dir
;
64 enum { REASON_QUIET
= 0, REASON_NOENT
, REASON_DUP
, REASON_DUP_SYS
};
66 /* Free an element of the include chain, possibly giving a reason. */
68 free_path (struct cpp_dir
*path
, int reason
)
74 fprintf (stderr
, _("ignoring duplicate directory \"%s\"\n"), path
->name
);
75 if (reason
== REASON_DUP_SYS
)
77 _(" as it is a non-system directory that duplicates a system directory\n"));
81 fprintf (stderr
, _("ignoring nonexistent directory \"%s\"\n"),
94 /* Read ENV_VAR for a PATH_SEPARATOR-separated list of file names; and
95 append all the names to the search path CHAIN. */
97 add_env_var_paths (const char *env_var
, int chain
)
101 GET_ENVIRONMENT (q
, env_var
);
106 for (p
= q
; *q
; p
= q
+ 1)
109 while (*q
!= 0 && *q
!= PATH_SEPARATOR
)
113 path
= xstrdup (".");
116 path
= XNEWVEC (char, q
- p
+ 1);
117 memcpy (path
, p
, q
- p
);
121 add_path (path
, chain
, chain
== SYSTEM
, false);
125 /* Append the standard include chain defined in cppdefault.c. */
127 add_standard_paths (const char *sysroot
, const char *iprefix
,
128 const char *imultilib
, int cxx_stdinc
)
130 const struct default_include
*p
;
131 int relocated
= cpp_relocated();
134 if (iprefix
&& (len
= cpp_GCC_INCLUDE_DIR_len
) != 0)
136 /* Look for directories that start with the standard prefix.
137 "Translate" them, i.e. replace /usr/local/lib/gcc... with
138 IPREFIX and search them first. */
139 for (p
= cpp_include_defaults
; p
->fname
; p
++)
141 if (!p
->cplusplus
|| cxx_stdinc
)
143 /* Should we be translating sysrooted dirs too? Assume
144 that iprefix and sysroot are mutually exclusive, for
146 if (sysroot
&& p
->add_sysroot
)
148 if (!strncmp (p
->fname
, cpp_GCC_INCLUDE_DIR
, len
))
150 char *str
= concat (iprefix
, p
->fname
+ len
, NULL
);
151 if (p
->multilib
&& imultilib
)
152 str
= concat (str
, dir_separator_str
, imultilib
, NULL
);
153 add_path (str
, SYSTEM
, p
->cxx_aware
, false);
159 for (p
= cpp_include_defaults
; p
->fname
; p
++)
161 if (!p
->cplusplus
|| cxx_stdinc
)
165 /* Should this directory start with the sysroot? */
166 if (sysroot
&& p
->add_sysroot
)
167 str
= concat (sysroot
, p
->fname
, NULL
);
168 else if (!p
->add_sysroot
&& relocated
169 && strncmp (p
->fname
, cpp_PREFIX
, cpp_PREFIX_len
) == 0)
171 static const char *relocated_prefix
;
172 /* If this path starts with the configure-time prefix,
173 but the compiler has been relocated, replace it
174 with the run-time prefix. The run-time exec prefix
175 is GCC_EXEC_PREFIX. Compute the path from there back
176 to the toplevel prefix. */
177 if (!relocated_prefix
)
180 /* Make relative prefix expects the first argument
181 to be a program, not a directory. */
182 dummy
= concat (gcc_exec_prefix
, "dummy", NULL
);
184 = make_relative_prefix (dummy
,
188 str
= concat (relocated_prefix
,
189 p
->fname
+ cpp_PREFIX_len
,
191 str
= update_path (str
, p
->component
);
194 str
= update_path (p
->fname
, p
->component
);
196 if (p
->multilib
&& imultilib
)
197 str
= concat (str
, dir_separator_str
, imultilib
, NULL
);
199 add_path (str
, SYSTEM
, p
->cxx_aware
, false);
204 /* For each duplicate path in chain HEAD, keep just the first one.
205 Remove each path in chain HEAD that also exists in chain SYSTEM.
206 Set the NEXT pointer of the last path in the resulting chain to
207 JOIN, unless it duplicates JOIN in which case the last path is
208 removed. Return the head of the resulting chain. Any of HEAD,
209 JOIN and SYSTEM can be NULL. */
211 static struct cpp_dir
*
212 remove_duplicates (cpp_reader
*pfile
, struct cpp_dir
*head
,
213 struct cpp_dir
*system
, struct cpp_dir
*join
,
216 struct cpp_dir
**pcur
, *tmp
, *cur
;
219 for (pcur
= &head
; *pcur
; )
221 int reason
= REASON_QUIET
;
225 if (stat (cur
->name
, &st
))
227 /* Dirs that don't exist are silently ignored, unless verbose. */
229 cpp_errno (pfile
, CPP_DL_ERROR
, cur
->name
);
232 /* If -Wmissing-include-dirs is given, warn. */
233 cpp_options
*opts
= cpp_get_options (pfile
);
234 if (opts
->warn_missing_include_dirs
&& cur
->user_supplied_p
)
235 cpp_errno (pfile
, CPP_DL_WARNING
, cur
->name
);
236 reason
= REASON_NOENT
;
239 else if (!S_ISDIR (st
.st_mode
))
240 cpp_error_with_line (pfile
, CPP_DL_ERROR
, 0, 0,
241 "%s: not a directory", cur
->name
);
244 INO_T_COPY (cur
->ino
, st
.st_ino
);
245 cur
->dev
= st
.st_dev
;
247 /* Remove this one if it is in the system chain. */
248 reason
= REASON_DUP_SYS
;
249 for (tmp
= system
; tmp
; tmp
= tmp
->next
)
250 if (INO_T_EQ (tmp
->ino
, cur
->ino
) && tmp
->dev
== cur
->dev
251 && cur
->construct
== tmp
->construct
)
256 /* Duplicate of something earlier in the same chain? */
258 for (tmp
= head
; tmp
!= cur
; tmp
= tmp
->next
)
259 if (INO_T_EQ (cur
->ino
, tmp
->ino
) && cur
->dev
== tmp
->dev
260 && cur
->construct
== tmp
->construct
)
264 /* Last in the chain and duplicate of JOIN? */
265 && !(cur
->next
== NULL
&& join
266 && INO_T_EQ (cur
->ino
, join
->ino
)
267 && cur
->dev
== join
->dev
268 && cur
->construct
== join
->construct
))
270 /* Unique, so keep this directory. */
277 /* Remove this entry from the chain. */
279 free_path (cur
, verbose
? reason
: REASON_QUIET
);
286 /* Add SYSROOT to any user-supplied paths in CHAIN starting with
290 add_sysroot_to_chain (const char *sysroot
, int chain
)
294 for (p
= heads
[chain
]; p
!= NULL
; p
= p
->next
)
295 if (p
->name
[0] == '=' && p
->user_supplied_p
)
296 p
->name
= concat (sysroot
, p
->name
+ 1, NULL
);
299 /* Merge the four include chains together in the order quote, bracket,
300 system, after. Remove duplicate dirs (as determined by
303 We can't just merge the lists and then uniquify them because then
304 we may lose directories from the <> search path that should be
305 there; consider -iquote foo -iquote bar -Ifoo -Iquux. It is
306 however safe to treat -iquote bar -iquote foo -Ifoo -Iquux as if
307 written -iquote bar -Ifoo -Iquux. */
310 merge_include_chains (const char *sysroot
, cpp_reader
*pfile
, int verbose
)
312 /* Add the sysroot to user-supplied paths starting with "=". */
315 add_sysroot_to_chain (sysroot
, QUOTE
);
316 add_sysroot_to_chain (sysroot
, BRACKET
);
317 add_sysroot_to_chain (sysroot
, SYSTEM
);
318 add_sysroot_to_chain (sysroot
, AFTER
);
321 /* Join the SYSTEM and AFTER chains. Remove duplicates in the
322 resulting SYSTEM chain. */
324 tails
[SYSTEM
]->next
= heads
[AFTER
];
326 heads
[SYSTEM
] = heads
[AFTER
];
327 heads
[SYSTEM
] = remove_duplicates (pfile
, heads
[SYSTEM
], 0, 0, verbose
);
329 /* Remove duplicates from BRACKET that are in itself or SYSTEM, and
330 join it to SYSTEM. */
331 heads
[BRACKET
] = remove_duplicates (pfile
, heads
[BRACKET
], heads
[SYSTEM
],
332 heads
[SYSTEM
], verbose
);
334 /* Remove duplicates from QUOTE that are in itself or SYSTEM, and
335 join it to BRACKET. */
336 heads
[QUOTE
] = remove_duplicates (pfile
, heads
[QUOTE
], heads
[SYSTEM
],
337 heads
[BRACKET
], verbose
);
339 /* If verbose, print the list of dirs to search. */
344 fprintf (stderr
, _("#include \"...\" search starts here:\n"));
345 for (p
= heads
[QUOTE
];; p
= p
->next
)
347 if (p
== heads
[BRACKET
])
348 fprintf (stderr
, _("#include <...> search starts here:\n"));
351 fprintf (stderr
, " %s\n", p
->name
);
353 fprintf (stderr
, _("End of search list.\n"));
357 /* Use given -I paths for #include "..." but not #include <...>, and
358 don't search the directory of the present file for #include "...".
359 (Note that -I. -I- is not the same as the default setup; -I. uses
360 the compiler's working dir.) */
362 split_quote_chain (void)
364 heads
[QUOTE
] = heads
[BRACKET
];
365 tails
[QUOTE
] = tails
[BRACKET
];
366 heads
[BRACKET
] = NULL
;
367 tails
[BRACKET
] = NULL
;
368 /* This is NOT redundant. */
369 quote_ignores_source_dir
= true;
372 /* Add P to the chain specified by CHAIN. */
375 add_cpp_dir_path (cpp_dir
*p
, int chain
)
378 tails
[chain
]->next
= p
;
384 /* Add PATH to the include chain CHAIN. PATH must be malloc-ed and
387 add_path (char *path
, int chain
, int cxx_aware
, bool user_supplied_p
)
391 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
392 /* Convert all backslashes to slashes. The native CRT stat()
393 function does not recognize a directory that ends in a backslash
394 (unless it is a drive root dir, such "c:\"). Forward slashes,
395 trailing or otherwise, cause no problems for stat(). */
397 for (c
= path
; *c
; c
++)
398 if (*c
== '\\') *c
= '/';
404 if (chain
== SYSTEM
|| chain
== AFTER
)
405 p
->sysp
= 1 + !cxx_aware
;
409 p
->user_supplied_p
= user_supplied_p
;
411 add_cpp_dir_path (p
, chain
);
414 /* Exported function to handle include chain merging, duplicate
415 removal, and registration with cpplib. */
417 register_include_chains (cpp_reader
*pfile
, const char *sysroot
,
418 const char *iprefix
, const char *imultilib
,
419 int stdinc
, int cxx_stdinc
, int verbose
)
421 static const char *const lang_env_vars
[] =
422 { "C_INCLUDE_PATH", "CPLUS_INCLUDE_PATH",
423 "OBJC_INCLUDE_PATH", "OBJCPLUS_INCLUDE_PATH" };
424 cpp_options
*cpp_opts
= cpp_get_options (pfile
);
425 size_t idx
= (cpp_opts
->objc
? 2: 0);
427 if (cpp_opts
->cplusplus
)
432 /* CPATH and language-dependent environment variables may add to the
434 add_env_var_paths ("CPATH", BRACKET
);
435 add_env_var_paths (lang_env_vars
[idx
], SYSTEM
);
437 target_c_incpath
.extra_pre_includes (sysroot
, iprefix
, stdinc
);
439 /* Finally chain on the standard directories. */
441 add_standard_paths (sysroot
, iprefix
, imultilib
, cxx_stdinc
);
443 target_c_incpath
.extra_includes (sysroot
, iprefix
, stdinc
);
445 merge_include_chains (sysroot
, pfile
, verbose
);
447 cpp_set_include_chains (pfile
, heads
[QUOTE
], heads
[BRACKET
],
448 quote_ignores_source_dir
);
450 #if !(defined TARGET_EXTRA_INCLUDES) || !(defined TARGET_EXTRA_PRE_INCLUDES)
451 static void hook_void_charptr_charptr_int (const char *sysroot ATTRIBUTE_UNUSED
,
452 const char *iprefix ATTRIBUTE_UNUSED
,
453 int stdinc ATTRIBUTE_UNUSED
)
458 #ifndef TARGET_EXTRA_INCLUDES
459 #define TARGET_EXTRA_INCLUDES hook_void_charptr_charptr_int
461 #ifndef TARGET_EXTRA_PRE_INCLUDES
462 #define TARGET_EXTRA_PRE_INCLUDES hook_void_charptr_charptr_int
465 struct target_c_incpath_s target_c_incpath
= { TARGET_EXTRA_PRE_INCLUDES
, TARGET_EXTRA_INCLUDES
};