1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
/* d-incpath.cc -- Set up combined import paths for the D frontend.
Copyright (C) 2006-2024 Free Software Foundation, Inc.
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "dmd/globals.h"
#include "d-frontend.h"
#include "cppdefault.h"
/* Look for directories that start with the standard prefix.
"Translate" them, i.e: replace /usr/local/lib/gcc with
IPREFIX and search them first. Based on incpath.cc. */
static char *
prefixed_path (const char *path, const char *iprefix)
{
if (cpp_relocated () && cpp_PREFIX_len != 0)
{
if (!filename_ncmp (path, cpp_PREFIX, cpp_PREFIX_len))
{
static const char *relocated_prefix;
/* If this path starts with the configure-time prefix,
but the compiler has been relocated, replace it
with the run-time prefix. */
if (!relocated_prefix)
{
/* Make relative prefix expects the first argument
to be a program, not a directory. */
char *dummy = concat (gcc_exec_prefix, "dummy", NULL);
relocated_prefix
= make_relative_prefix (dummy,
cpp_EXEC_PREFIX,
cpp_PREFIX);
free (dummy);
}
return concat (relocated_prefix, path + cpp_PREFIX_len, NULL);
}
}
if (iprefix && cpp_GCC_INCLUDE_DIR_len != 0)
{
if (!filename_ncmp (path, cpp_GCC_INCLUDE_DIR, cpp_GCC_INCLUDE_DIR_len))
return concat (iprefix, path + cpp_GCC_INCLUDE_DIR_len, NULL);
}
return xstrdup (path);
}
/* Add PATHS to the global import lookup path. */
static void
add_globalpaths (Strings *paths)
{
if (paths)
{
for (size_t i = 0; i < paths->length; i++)
{
const char *path = (*paths)[i];
const char *target = lrealpath (path);
if (target == NULL || !FileName::exists (target))
{
if (target)
free (CONST_CAST (char *, target));
continue;
}
global.path.push (target);
}
}
}
/* Add PATHS to the global file import lookup path. */
static void
add_filepaths (Strings *paths)
{
if (paths)
{
for (size_t i = 0; i < paths->length; i++)
{
const char *path = (*paths)[i];
const char *target = lrealpath (path);
if (!FileName::exists (target))
{
free (CONST_CAST (char *, target));
continue;
}
global.filePath.push (target);
}
}
}
/* Add all search directories to compiler runtime.
if STDINC, also include standard library paths. */
void
add_import_paths (const char *iprefix, const char *imultilib, bool stdinc)
{
if (stdinc)
{
for (const default_include *p = cpp_include_defaults; p->fname; p++)
{
char *path;
/* Ignore C++ paths. */
if (p->cplusplus)
continue;
if (!p->add_sysroot)
path = prefixed_path (p->fname, iprefix);
else
path = xstrdup (p->fname);
/* Add D-specific suffix. */
path = concat (path, "/d", NULL);
/* Ignore duplicate entries. */
bool found = false;
for (size_t i = 0; i < global.params.imppath.length; i++)
{
if (strcmp (path, global.params.imppath[i]) == 0)
{
found = true;
break;
}
}
if (found)
{
free (path);
continue;
}
/* Multilib support. */
if (imultilib)
{
char *target_path = concat (path, "/", imultilib, NULL);
global.params.imppath.shift (target_path);
}
global.params.imppath.shift (path);
}
}
/* Add import search paths. */
for (size_t i = 0; i < global.params.imppath.length; i++)
{
const char *path = global.params.imppath[i];
if (path)
add_globalpaths (FileName::splitPath (path));
}
/* Add string import search paths. */
for (size_t i = 0; i < global.params.fileImppath.length; i++)
{
const char *path = global.params.fileImppath[i];
if (path)
add_filepaths (FileName::splitPath (path));
}
}
|