HomeSort by: relevance | last modified time | path
    Searched defs:sysroot (Results 1 - 16 of 16) sorted by relevancy

  /src/external/bsd/pcc/dist/pcc/driver/
driver.h 38 const char * sysroot; member in struct:options
  /src/external/bsd/pcc/dist/pcc/cc/driver/
driver.c 65 const char *sysroot = ""; variable
143 const char *sysroots[] = { sysroot, isysroot, isysroot, isysroot,
144 sysroot, sysroot, NULL };
578 if (strncmp(argp, "--sysroot=", 10) == 0) {
579 sysroot = argp + 10;
829 isysroot = sysroot;
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-opts.cc 91 static const char *sysroot = TARGET_SYSTEM_ROOT; variable
618 sysroot = arg;
843 register_include_chains (parse_in, sysroot, iprefix, imultilib,
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-opts.cc 86 static const char *sysroot = TARGET_SYSTEM_ROOT; variable
597 sysroot = arg;
816 register_include_chains (parse_in, sysroot, iprefix, imultilib,
  /src/external/gpl3/gdb/dist/gdb/
remote-sim.c 684 const char *sysroot = gdb_sysroot.c_str (); local
685 if (is_target_filename (sysroot))
686 sysroot += strlen (TARGET_SYSROOT_PREFIX);
705 + strlen (" --sysroot=") + strlen (sysroot) +
730 /* Pass along gdb's concept of the sysroot. */
731 strcat (arg_buf, " --sysroot=");
732 strcat (arg_buf, sysroot);
solib.c 92 shared libraries if not found in either the sysroot (if set) or
97 * If a sysroot is set and path is absolute:
98 * Search for sysroot/path.
104 * If NO sysroot is set, perform the following two searches:
110 * machines since a sysroot will almost always be set.
119 const char *sysroot = gdb_sysroot.c_str (); local
128 if (is_target_filename (sysroot) && target_filesystem_is_local ())
129 sysroot += strlen (TARGET_SYSROOT_PREFIX);
132 prefix_len = orig_prefix_len = strlen (sysroot);
134 while (prefix_len > 0 && IS_DIR_SEPARATOR (sysroot[prefix_len - 1])
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
remote-sim.c 684 const char *sysroot = gdb_sysroot.c_str (); local
685 if (is_target_filename (sysroot))
686 sysroot += strlen (TARGET_SYSROOT_PREFIX);
705 + strlen (" --sysroot=") + strlen (sysroot) +
730 /* Pass along gdb's concept of the sysroot. */
731 strcat (arg_buf, " --sysroot=");
732 strcat (arg_buf, sysroot);
solib.c 92 shared libraries if not found in either the sysroot (if set) or
97 * If a sysroot is set and path is absolute:
98 * Search for sysroot/path.
104 * If NO sysroot is set, perform the following two searches:
110 * machines since a sysroot will almost always be set.
120 const char *sysroot = gdb_sysroot.c_str (); local
129 if (is_target_filename (sysroot) && target_filesystem_is_local ())
130 sysroot += strlen (TARGET_SYSROOT_PREFIX);
133 prefix_len = orig_prefix_len = strlen (sysroot);
135 while (prefix_len > 0 && IS_DIR_SEPARATOR (sysroot[prefix_len - 1])
    [all...]
  /src/external/bsd/tradcpp/dist/
main.c 350 static const char *sysroot; variable
382 sysroot = dir;
451 if (sysroot != NULL) {
452 t = dostrdup3(sysroot, "/", CONFIG_LOCALINCLUDE);
461 if (sysroot != NULL) {
462 t = dostrdup3(sysroot, "/", CONFIG_SYSTEMINCLUDE);
  /src/external/gpl3/gcc/dist/gcc/fortran/
cpp.cc 105 const char *sysroot; /* -isysroot <dir> */ member in struct:gfc_cpp_option_data
254 register_include_chains (cpp_in, gfc_cpp_option.sysroot,
293 gfc_cpp_option.sysroot = TARGET_SYSTEM_ROOT;
354 gfc_cpp_option.sysroot = arg;
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
cpp.cc 105 const char *sysroot; /* -isysroot <dir> */ member in struct:gfc_cpp_option_data
254 register_include_chains (cpp_in, gfc_cpp_option.sysroot,
293 gfc_cpp_option.sysroot = TARGET_SYSTEM_ROOT;
354 gfc_cpp_option.sysroot = arg;
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Darwin.cpp 405 // Give --sysroot= preference, over the Apple specific behavior to also use
407 StringRef sysroot = C.getSysRoot(); local
408 if (sysroot != "") {
410 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
1807 // Xcode tools to define the default sysroot, by making it the default for
1967 // Returns the effective header sysroot path to use. This comes either from
1968 // -isysroot or --sysroot.
1972 if (!getDriver().SysRoot.empty())
1973 return getDriver().SysRoot;
1981 llvm::StringRef Sysroot = GetHeaderSysroot(DriverArgs)
    [all...]
Clang.cpp 1374 // If we have a --sysroot, and don't have an explicit -isysroot flag, add an
1376 StringRef sysroot = C.getSysRoot(); local
1377 if (sysroot != "") {
1380 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
2304 if (!D.SysRoot.empty() && !Args.hasArg(options::OPT__sysroot_EQ)) {
2305 Buf = "--sysroot=";
2306 Buf += D.SysRoot;
  /src/external/bsd/pcc/dist/pcc/cc/cc/
cc.c 157 char *sysroot = "", *isysroot; variable
543 } else if (strncmp(argp, "--sysroot=", 10) == 0) {
544 sysroot = argp + 10;
545 } else if (strncmp(argp, "--sysroot", 9) == 0) {
546 sysroot = nxtopt(argp);
962 if (sysroot)
963 deflibdirs[j] = cat(sysroot, deflibdirs[j]);
972 isysroot = sysroot;
1540 const char *sysroots[] = { sysroot, isysroot, isysroot, isysroot,
1541 sysroot, sysroot, isysroot, NULL }
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Driver.cpp 137 ClangExecutable(ClangExecutable), SysRoot(DEFAULT_SYSROOT),
153 if ((!SysRoot.empty()) && llvm::sys::path::is_relative(SysRoot)) {
154 // Prepend InstalledDir if SysRoot is relative
156 llvm::sys::path::append(P, SysRoot);
157 SysRoot = std::string(P);
1164 SysRoot = A->getValue();
1837 StringRef sysroot = C.getSysRoot(); local
1844 llvm::outs() << sysroot << Path.substr(1);
1930 llvm::outs() << TC.getMultiarchTriple(*this, TC.getTriple(), SysRoot)
    [all...]
  /src/share/mk/
bsd.own.mk 464 # Don't append another copy of sysroot (coming from COMPATCPPFLAGS etc.)
466 # for each specific sysroot argument.
467 # Also don't add a sysroot at all if a rumpkernel build.
470 . if empty(CPPFLAGS:M*--sysroot=*)
471 CPPFLAGS+= --sysroot=${DESTDIR}
473 LDFLAGS+= --sysroot=${DESTDIR}
475 . if empty(CPPFLAGS:M*--sysroot=*)
476 CPPFLAGS+= --sysroot=/
478 LDFLAGS+= --sysroot=/

Completed in 63 milliseconds