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

12

/external/chromium_org/build/config/linux/
H A Dpkg-config.py22 # You can specify a sysroot using "-s <sysroot>" where sysroot is the absolute
23 # system path to the sysroot used for compiling. This script will attempt to
24 # generate correct paths for the sysroot.
26 # When using a sysroot, you must also specify the architecture via
39 This takes into account any sysroot and architecture specification from the
42 sysroot = options.sysroot
43 if not sysroot
136 sysroot = options.sysroot variable
138 sysroot = '' variable
[all...]
/external/chromium_org/build/linux/
H A Dinstall-arm-sysroot.py11 The sysroot image could be constructed from scratch based on the current
17 Steps to rebuild the arm sysroot image:
23 BuildJail $SRC/out/arm-sysroot.tar.gz
24 - gsutil cp -a public-read $SRC/out/arm-sysroot.tar.gz \
25 nativeclient-archive2/toolchain/$NACL_REV/sysroot-arm-trusted.tgz
29 # chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py
40 URL_PATH = 'chrome-linux-sysroot/toolchain'
70 sysroot = os.path.join(src_root, 'arm-sysroot')
73 stamp = os.path.join(sysroot, "
[all...]
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)
60 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
27 echo "usage: $0 /path/to/sysroot target_arch libdir [pkg-config-arguments] package" >&2
51 # relative to the sysroot. For example,
59 echo "$result"| $rewrite --sysroot "$root" --strip-prefix "$prefix"
H A Dsysroot_ld_path.sh9 # sysroot_ld_path.sh /abspath/to/sysroot
79 echo Usage $0 /abspath/to/sysroot
/external/chromium_org/chrome/installer/linux/sysroot_scripts/
H A Dinstall-debian.wheezy.sysroot.py6 # Script to install a Debian Wheezy sysroot for making official Google Chrome
8 # The sysroot is needed to make Chrome work for Debian Wheezy.
13 # The sysroot image could be constructed from scratch based on the current
30 URL_PATH = 'chrome-linux-sysroot/toolchain'
36 SYSROOT_DIR_AMD64 = 'debian_wheezy_amd64-sysroot'
37 SYSROOT_DIR_I386 = 'debian_wheezy_i386-sysroot'
63 # Only install the sysroot for an Official Chrome Linux build.
97 # The sysroot directory should match the one specified in build/common.gypi.
102 sysroot = os.path.join(linux_dir, SYSROOT_DIR_AMD64)
106 sysroot
[all...]
H A Dsysroot-creator-wheezy.sh178 . ${SCRIPT_DIR}/sysroot-creator.sh
H A Dsysroot-creator-trusty.sh184 . ${SCRIPT_DIR}/sysroot-creator.sh
H A Dsysroot-creator.sh6 # scripts (e.g. sysroot-creator-trusty.sh). Its up to the parent scripts
13 #@ This script builds a Debian sysroot images for building Google Chrome.
16 #@ sysroot-creator-<flavour>.sh <mode> <args>*
52 # This is where the staging sysroot is.
158 BUILD_DIR=${CHROME_DIR}/out/sysroot-build/${DIST}
/external/compiler-rt/make/platform/
H A Dclang_linux.mk116 --sysroot=$(LLVM_ANDROID_TOOLCHAIN_DIR)/sysroot \
124 # Use our stub SDK as the sysroot to support more portable building. For now we
127 CFLAGS.builtins-i386 += --sysroot=$(ProjSrcRoot)/SDKs/linux
128 CFLAGS.builtins-x86_64 += --sysroot=$(ProjSrcRoot)/SDKs/linux
H A Dclang_darwin.mk150 # Use our stub SDK as the sysroot to support more portable building.
207 # configure+make uses Clang, so we're using isysroot instead of --sysroot
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp51 InitHeaderSearch(HeaderSearch &HS, bool verbose, StringRef sysroot) argument
52 : Headers(HS), Verbose(verbose), IncludeSysroot(sysroot),
53 HasSysroot(!(sysroot.empty() || sysroot == "/")) {
57 /// the sysroot if used.
61 /// without performing any sysroot remapping.
122 // Add the path with sysroot prepended, if desired and this is a system header
317 // <sysroot>/i686-w64-mingw32/include
322 // <sysroot>/x86_64-w64-mingw32/include
328 // <sysroot>/includ
[all...]
/external/llvm/utils/crosstool/ARM/
H A Dbuild-install-linux.sh184 --with-sysroot=${SYSROOT}
/external/lldb/scripts/Python/interface/
H A DSBDebugger.i243 SetCurrentPlatformSDKRoot (const char *sysroot);
/external/lldb/include/lldb/API/
H A DSBDebugger.h165 SetCurrentPlatformSDKRoot (const char *sysroot);
/external/lldb/source/API/
H A DSBDebugger.cpp1119 SBDebugger::SetCurrentPlatformSDKRoot (const char *sysroot) argument
1127 platform_sp->SetSDKRootDirectory (ConstString (sysroot));
/external/clang/lib/Driver/
H A DDriver.cpp729 StringRef sysroot = C.getSysRoot(); local
736 llvm::outs() << sysroot << path + 1;
H A DTools.cpp414 // If we have a --sysroot, and don't have an explicit -isysroot flag, add an
416 StringRef sysroot = C.getSysRoot(); local
417 if (sysroot != "") {
420 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
5524 // Give --sysroot= preference, over the Apple specific behavior to also use
5526 StringRef sysroot = C.getSysRoot(); local
5527 if (sysroot != "") {
5529 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
6424 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
6668 CmdArgs.push_back(Args.MakeArgString("--sysroot
[all...]
/external/chromium_org/third_party/opus/src/
H A Dltmain.sh1339 # Replace a leading = in PATH with a sysroot. Store the result into
1353 # If PATH begins with the sysroot, replace it with = and
1363 # Including no sysroot.
2682 # Remove sysroot references
5572 # Will only happen for absolute or sysroot arguments
5575 # Preserve sysroot, but never include relative directories
5650 -model|-arch|-isysroot|--sysroot)
5852 # --sysroot=* for sysroot support
5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot
[all...]
/external/libcap-ng/libcap-ng-0.7/
H A Dltmain.sh1339 # Replace a leading = in PATH with a sysroot. Store the result into
1353 # If PATH begins with the sysroot, replace it with = and
1363 # Including no sysroot.
2682 # Remove sysroot references
5572 # Will only happen for absolute or sysroot arguments
5575 # Preserve sysroot, but never include relative directories
5650 -model|-arch|-isysroot|--sysroot)
5852 # --sysroot=* for sysroot support
5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot
[all...]
/external/libedit/
H A Dltmain.sh1339 # Replace a leading = in PATH with a sysroot. Store the result into
1353 # If PATH begins with the sysroot, replace it with = and
1363 # Including no sysroot.
2682 # Remove sysroot references
5572 # Will only happen for absolute or sysroot arguments
5575 # Preserve sysroot, but never include relative directories
5650 -model|-arch|-isysroot|--sysroot)
5852 # --sysroot=* for sysroot support
5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot
[all...]
/external/libexif/
H A Dltmain.sh1341 # Replace a leading = in PATH with a sysroot. Store the result into
1355 # If PATH begins with the sysroot, replace it with = and
1365 # Including no sysroot.
2684 # Remove sysroot references
5563 # Will only happen for absolute or sysroot arguments
5566 # Preserve sysroot, but never include relative directories
5641 -model|-arch|-isysroot|--sysroot)
5842 # --sysroot=* for sysroot support
5845 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot
[all...]
/external/libopus/
H A Dltmain.sh1339 # Replace a leading = in PATH with a sysroot. Store the result into
1353 # If PATH begins with the sysroot, replace it with = and
1363 # Including no sysroot.
2682 # Remove sysroot references
5572 # Will only happen for absolute or sysroot arguments
5575 # Preserve sysroot, but never include relative directories
5650 -model|-arch|-isysroot|--sysroot)
5852 # --sysroot=* for sysroot support
5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot
[all...]
/external/libpng/
H A Dltmain.sh1339 # Replace a leading = in PATH with a sysroot. Store the result into
1353 # If PATH begins with the sysroot, replace it with = and
1363 # Including no sysroot.
2682 # Remove sysroot references
5572 # Will only happen for absolute or sysroot arguments
5575 # Preserve sysroot, but never include relative directories
5650 -model|-arch|-isysroot|--sysroot)
5852 # --sysroot=* for sysroot support
5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot
[all...]
/external/openfst/
H A Dltmain.sh1339 # Replace a leading = in PATH with a sysroot. Store the result into
1353 # If PATH begins with the sysroot, replace it with = and
1363 # Including no sysroot.
2682 # Remove sysroot references
5572 # Will only happen for absolute or sysroot arguments
5575 # Preserve sysroot, but never include relative directories
5650 -model|-arch|-isysroot|--sysroot)
5852 # --sysroot=* for sysroot support
5855 -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot
[all...]

Completed in 4315 milliseconds

12