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 (cpp_reader
*, int);
55 static struct cpp_dir
*remove_duplicates (cpp_reader
*, struct cpp_dir
*,
57 struct cpp_dir
*, int);
59 /* Include chains heads and tails. */
60 static struct cpp_dir
*heads
[4];
61 static struct cpp_dir
*tails
[4];
62 static bool quote_ignores_source_dir
;
63 enum { REASON_QUIET
= 0, REASON_NOENT
, REASON_DUP
, REASON_DUP_SYS
};
65 /* Free an element of the include chain, possibly giving a reason. */
67 free_path (struct cpp_dir
*path
, int reason
)
73 fprintf (stderr
, _("ignoring duplicate directory \"%s\"\n"), path
->name
);
74 if (reason
== REASON_DUP_SYS
)
76 _(" as it is a non-system directory that duplicates a system directory\n"));
80 fprintf (stderr
, _("ignoring nonexistent directory \"%s\"\n"),
93 /* Read ENV_VAR for a PATH_SEPARATOR-separated list of file names; and
94 append all the names to the search path CHAIN. */
96 add_env_var_paths (const char *env_var
, int chain
)
100 GET_ENVIRONMENT (q
, env_var
);
105 for (p
= q
; *q
; p
= q
+ 1)
108 while (*q
!= 0 && *q
!= PATH_SEPARATOR
)
112 path
= xstrdup (".");
115 path
= XNEWVEC (char, q
- p
+ 1);
116 memcpy (path
, p
, q
- p
);
120 add_path (path
, chain
, chain
== SYSTEM
, false);
124 /* Append the standard include chain defined in cppdefault.c. */
126 add_standard_paths (const char *sysroot
, const char *iprefix
,
127 const char *imultilib
, int cxx_stdinc
)
129 const struct default_include
*p
;
130 int relocated
= cpp_relocated();
133 if (iprefix
&& (len
= cpp_GCC_INCLUDE_DIR_len
) != 0)
135 /* Look for directories that start with the standard prefix.
136 "Translate" them, i.e. replace /usr/local/lib/gcc... with
137 IPREFIX and search them first. */
138 for (p
= cpp_include_defaults
; p
->fname
; p
++)
140 if (!p
->cplusplus
|| cxx_stdinc
)
142 /* Should we be translating sysrooted dirs too? Assume
143 that iprefix and sysroot are mutually exclusive, for
145 if (sysroot
&& p
->add_sysroot
)
147 if (!strncmp (p
->fname
, cpp_GCC_INCLUDE_DIR
, len
))
149 char *str
= concat (iprefix
, p
->fname
+ len
, NULL
);
150 if (p
->multilib
&& imultilib
)
151 str
= concat (str
, dir_separator_str
, imultilib
, NULL
);
152 add_path (str
, SYSTEM
, p
->cxx_aware
, false);
158 for (p
= cpp_include_defaults
; p
->fname
; p
++)
160 if (!p
->cplusplus
|| cxx_stdinc
)
164 /* Should this directory start with the sysroot? */
165 if (sysroot
&& p
->add_sysroot
)
166 str
= concat (sysroot
, p
->fname
, NULL
);
167 else if (!p
->add_sysroot
&& relocated
)
169 /* If the compiler is relocated, and this is a configured
170 prefix relative path, then we use gcc_exec_prefix instead
171 of the configured prefix. */
172 gcc_assert (strncmp (p
->fname
, cpp_PREFIX
,
173 cpp_PREFIX_len
) == 0);
174 str
= concat (gcc_exec_prefix
, p
->fname
175 + cpp_PREFIX_len
, NULL
);
176 str
= update_path (str
, p
->component
);
179 str
= update_path (p
->fname
, p
->component
);
181 if (p
->multilib
&& imultilib
)
182 str
= concat (str
, dir_separator_str
, imultilib
, NULL
);
184 add_path (str
, SYSTEM
, p
->cxx_aware
, false);
189 /* For each duplicate path in chain HEAD, keep just the first one.
190 Remove each path in chain HEAD that also exists in chain SYSTEM.
191 Set the NEXT pointer of the last path in the resulting chain to
192 JOIN, unless it duplicates JOIN in which case the last path is
193 removed. Return the head of the resulting chain. Any of HEAD,
194 JOIN and SYSTEM can be NULL. */
196 static struct cpp_dir
*
197 remove_duplicates (cpp_reader
*pfile
, struct cpp_dir
*head
,
198 struct cpp_dir
*system
, struct cpp_dir
*join
,
201 struct cpp_dir
**pcur
, *tmp
, *cur
;
204 for (pcur
= &head
; *pcur
; )
206 int reason
= REASON_QUIET
;
210 if (stat (cur
->name
, &st
))
212 /* Dirs that don't exist are silently ignored, unless verbose. */
214 cpp_errno (pfile
, CPP_DL_ERROR
, cur
->name
);
217 /* If -Wmissing-include-dirs is given, warn. */
218 cpp_options
*opts
= cpp_get_options (pfile
);
219 if (opts
->warn_missing_include_dirs
&& cur
->user_supplied_p
)
220 cpp_errno (pfile
, CPP_DL_WARNING
, cur
->name
);
221 reason
= REASON_NOENT
;
224 else if (!S_ISDIR (st
.st_mode
))
225 cpp_error_with_line (pfile
, CPP_DL_ERROR
, 0, 0,
226 "%s: not a directory", cur
->name
);
229 INO_T_COPY (cur
->ino
, st
.st_ino
);
230 cur
->dev
= st
.st_dev
;
232 /* Remove this one if it is in the system chain. */
233 reason
= REASON_DUP_SYS
;
234 for (tmp
= system
; tmp
; tmp
= tmp
->next
)
235 if (INO_T_EQ (tmp
->ino
, cur
->ino
) && tmp
->dev
== cur
->dev
236 && cur
->construct
== tmp
->construct
)
241 /* Duplicate of something earlier in the same chain? */
243 for (tmp
= head
; tmp
!= cur
; tmp
= tmp
->next
)
244 if (INO_T_EQ (cur
->ino
, tmp
->ino
) && cur
->dev
== tmp
->dev
245 && cur
->construct
== tmp
->construct
)
249 /* Last in the chain and duplicate of JOIN? */
250 && !(cur
->next
== NULL
&& join
251 && INO_T_EQ (cur
->ino
, join
->ino
)
252 && cur
->dev
== join
->dev
253 && cur
->construct
== join
->construct
))
255 /* Unique, so keep this directory. */
262 /* Remove this entry from the chain. */
264 free_path (cur
, verbose
? reason
: REASON_QUIET
);
271 /* Merge the four include chains together in the order quote, bracket,
272 system, after. Remove duplicate dirs (as determined by
275 We can't just merge the lists and then uniquify them because then
276 we may lose directories from the <> search path that should be
277 there; consider -iquote foo -iquote bar -Ifoo -Iquux. It is
278 however safe to treat -iquote bar -iquote foo -Ifoo -Iquux as if
279 written -iquote bar -Ifoo -Iquux. */
282 merge_include_chains (cpp_reader
*pfile
, int verbose
)
284 /* Join the SYSTEM and AFTER chains. Remove duplicates in the
285 resulting SYSTEM chain. */
287 tails
[SYSTEM
]->next
= heads
[AFTER
];
289 heads
[SYSTEM
] = heads
[AFTER
];
290 heads
[SYSTEM
] = remove_duplicates (pfile
, heads
[SYSTEM
], 0, 0, verbose
);
292 /* Remove duplicates from BRACKET that are in itself or SYSTEM, and
293 join it to SYSTEM. */
294 heads
[BRACKET
] = remove_duplicates (pfile
, heads
[BRACKET
], heads
[SYSTEM
],
295 heads
[SYSTEM
], verbose
);
297 /* Remove duplicates from QUOTE that are in itself or SYSTEM, and
298 join it to BRACKET. */
299 heads
[QUOTE
] = remove_duplicates (pfile
, heads
[QUOTE
], heads
[SYSTEM
],
300 heads
[BRACKET
], verbose
);
302 /* If verbose, print the list of dirs to search. */
307 fprintf (stderr
, _("#include \"...\" search starts here:\n"));
308 for (p
= heads
[QUOTE
];; p
= p
->next
)
310 if (p
== heads
[BRACKET
])
311 fprintf (stderr
, _("#include <...> search starts here:\n"));
314 fprintf (stderr
, " %s\n", p
->name
);
316 fprintf (stderr
, _("End of search list.\n"));
320 /* Use given -I paths for #include "..." but not #include <...>, and
321 don't search the directory of the present file for #include "...".
322 (Note that -I. -I- is not the same as the default setup; -I. uses
323 the compiler's working dir.) */
325 split_quote_chain (void)
327 heads
[QUOTE
] = heads
[BRACKET
];
328 tails
[QUOTE
] = tails
[BRACKET
];
329 heads
[BRACKET
] = NULL
;
330 tails
[BRACKET
] = NULL
;
331 /* This is NOT redundant. */
332 quote_ignores_source_dir
= true;
335 /* Add P to the chain specified by CHAIN. */
338 add_cpp_dir_path (cpp_dir
*p
, int chain
)
341 tails
[chain
]->next
= p
;
347 /* Add PATH to the include chain CHAIN. PATH must be malloc-ed and
350 add_path (char *path
, int chain
, int cxx_aware
, bool user_supplied_p
)
354 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
355 /* Convert all backslashes to slashes. The native CRT stat()
356 function does not recognize a directory that ends in a backslash
357 (unless it is a drive root dir, such "c:\"). Forward slashes,
358 trailing or otherwise, cause no problems for stat(). */
360 for (c
= path
; *c
; c
++)
361 if (*c
== '\\') *c
= '/';
367 if (chain
== SYSTEM
|| chain
== AFTER
)
368 p
->sysp
= 1 + !cxx_aware
;
372 p
->user_supplied_p
= user_supplied_p
;
374 add_cpp_dir_path (p
, chain
);
377 /* Exported function to handle include chain merging, duplicate
378 removal, and registration with cpplib. */
380 register_include_chains (cpp_reader
*pfile
, const char *sysroot
,
381 const char *iprefix
, const char *imultilib
,
382 int stdinc
, int cxx_stdinc
, int verbose
)
384 static const char *const lang_env_vars
[] =
385 { "C_INCLUDE_PATH", "CPLUS_INCLUDE_PATH",
386 "OBJC_INCLUDE_PATH", "OBJCPLUS_INCLUDE_PATH" };
387 cpp_options
*cpp_opts
= cpp_get_options (pfile
);
388 size_t idx
= (cpp_opts
->objc
? 2: 0);
390 if (cpp_opts
->cplusplus
)
395 /* CPATH and language-dependent environment variables may add to the
397 add_env_var_paths ("CPATH", BRACKET
);
398 add_env_var_paths (lang_env_vars
[idx
], SYSTEM
);
400 target_c_incpath
.extra_pre_includes (sysroot
, iprefix
, stdinc
);
402 /* Finally chain on the standard directories. */
404 add_standard_paths (sysroot
, iprefix
, imultilib
, cxx_stdinc
);
406 target_c_incpath
.extra_includes (sysroot
, iprefix
, stdinc
);
408 merge_include_chains (pfile
, verbose
);
410 cpp_set_include_chains (pfile
, heads
[QUOTE
], heads
[BRACKET
],
411 quote_ignores_source_dir
);
413 #if !(defined TARGET_EXTRA_INCLUDES) || !(defined TARGET_EXTRA_PRE_INCLUDES)
414 static void hook_void_charptr_charptr_int (const char *sysroot ATTRIBUTE_UNUSED
,
415 const char *iprefix ATTRIBUTE_UNUSED
,
416 int stdinc ATTRIBUTE_UNUSED
)
421 #ifndef TARGET_EXTRA_INCLUDES
422 #define TARGET_EXTRA_INCLUDES hook_void_charptr_charptr_int
424 #ifndef TARGET_EXTRA_PRE_INCLUDES
425 #define TARGET_EXTRA_PRE_INCLUDES hook_void_charptr_charptr_int
428 struct target_c_incpath_s target_c_incpath
= { TARGET_EXTRA_PRE_INCLUDES
, TARGET_EXTRA_INCLUDES
};