Searched refs:sysroot (Results 1 - 8 of 8) sorted by relevance

/external/chromium/build/linux/
H A Drewrite_dirs.py6 """Rewrites paths in -I, -L and other option to be relative to a sysroot."""
23 """Rewrites a path by stripping the prefix and prepending the sysroot."""
24 sysroot = opts.sysroot
26 if os.path.isabs(path) and not path.startswith(sysroot):
30 return os.path.join(sysroot, path)
58 parser.add_option('-s', '--sysroot', default='/', help='sysroot to prepend')
H A Dpkg-config-wrapper7 # library paths when cross-compiling using a sysroot.
8 # The assumption is that the sysroot contains the .pc files in usr/lib/pkgconfig
9 # and usr/share/pkgconfig (relative to the sysroot) and that they output paths
10 # relative to some parent path of the sysroot.
12 # LSB-compliant root filesystem mounted at the sysroot, and a board build
18 echo "usage: $0 /path/to/sysroot [pkg-config-arguments] package" >&2
29 # relative to the sysroot. For example,
37 echo "$result"| $rewrite --sysroot "$root" --strip-prefix "$prefix"
/external/compiler-rt/make/platform/
H A Dclang_linux.mk63 # Use our stub SDK as the sysroot to support more portable building. For now we
66 CFLAGS.full-i386 += --sysroot=$(ProjSrcRoot)/SDKs/linux
67 CFLAGS.full-x86_64 += --sysroot=$(ProjSrcRoot)/SDKs/linux
68 CFLAGS.profile-i386 += --sysroot=$(ProjSrcRoot)/SDKs/linux
69 CFLAGS.profile-x86_64 += --sysroot=$(ProjSrcRoot)/SDKs/linux
H A Dclang_darwin.mk101 # Use our stub SDK as the sysroot to support more portable building.
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp50 InitHeaderSearch(HeaderSearch &HS, bool verbose, StringRef sysroot) argument
51 : Headers(HS), Verbose(verbose), IncludeSysroot(sysroot),
52 IsNotEmptyOrRoot(!(sysroot.empty() || sysroot == "/")) {
304 P.appendComponent("../../../i686-w64-mingw32/include"); // <sysroot>/i686-w64-mingw32/include
307 P.appendComponent("../../../x86_64-w64-mingw32/include"); // <sysroot>/x86_64-w64-mingw32/include
311 P.appendComponent("../../../include"); // <sysroot>/include
/external/llvm/utils/crosstool/ARM/
H A Dbuild-install-linux.sh184 --with-sysroot=${SYSROOT}
/external/clang/lib/Driver/
H A DDriver.cpp663 StringRef sysroot = C.getSysRoot(); local
670 llvm::outs() << sysroot << path + 1;
H A DTools.cpp378 // If we have a --sysroot, and don't have an explicit -isysroot flag, add an
380 StringRef sysroot = C.getSysRoot(); local
381 if (sysroot != "") {
384 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
4018 // Give --sysroot= preference, over the Apple specific behavior to also use
4020 StringRef sysroot = C.getSysRoot(); local
4021 if (sysroot != "") {
4023 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
4748 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
4936 CmdArgs.push_back(Args.MakeArgString("--sysroot
[all...]

Completed in 148 milliseconds