Searched refs:sysroot (Results 1 – 25 of 105) sorted by relevance
12345
/external/chromium_org/build/config/ |
D | sysroot.gni | 5 # This header file defines the "sysroot" variable which is the absolute path 6 # of the sysroot. If no sysroot applies, the variable will be an empty string. 12 sysroot = rebase_path("$android_ndk_root/$x86_android_sysroot_subdir") 14 sysroot = rebase_path("$android_ndk_root/$arm_android_sysroot_subdir") 16 sysroot = rebase_path("$android_ndk_root/$mips_android_sysroot_subdir") 18 sysroot = "" 21 sysroot = "" 24 # For official builds, use the sysroot checked into the internal source repo 27 sysroot = 28 rebase_path("//chrome/installer/linux/debian_wheezy_amd64-sysroot") [all …]
|
/external/chromium_org/build/config/linux/ |
D | pkg-config.py | 42 sysroot = options.sysroot 43 if not sysroot: 44 sysroot = "" 48 if sysroot and not arch: 57 config_path = sysroot + '/usr/' + libpath + '/pkgconfig' 58 config_path += ':' + sysroot + '/usr/share/pkgconfig' 92 def RewritePath(path, strip_prefix, sysroot): argument 94 if os.path.isabs(path) and not path.startswith(sysroot): 98 return os.path.join(sysroot, path) 118 if options.sysroot: [all …]
|
D | BUILD.gn | 7 import("//build/config/sysroot.gni") 12 if (sysroot != "") { 13 cflags = [ "--sysroot=" + sysroot ] 14 ldflags = [ "--sysroot=" + sysroot ] 16 # Need to get some linker flags out of the sysroot. 19 sysroot ],
|
D | pkg_config.gni | 5 import("//build/config/sysroot.gni") 32 # the sysroot mechanism to find the right .pc files. 40 if (sysroot != "") { 41 # Pass the sysroot if we're using one (it requires the CPU arch also). 42 args = ["-s", sysroot, "-a", cpu_arch] + invoker.packages
|
/external/chromium_org/build/config/android/ |
D | BUILD.gn | 6 import("//build/config/sysroot.gni") 9 if (sysroot != "") { 10 cflags = [ "--sysroot=" + sysroot ] 11 ldflags = [ "--sysroot=" + sysroot ] 13 # Need to get some linker flags out of the sysroot. 16 [ rebase_path("//build/linux/sysroot_ld_path.sh"), sysroot ],
|
/external/chromium_org/build/linux/ |
D | install-arm-sysroot.py | 70 sysroot = os.path.join(src_root, 'arm-sysroot') 73 stamp = os.path.join(sysroot, ".stamp") 77 print "ARM root image already up-to-date: %s" % sysroot 80 print "Installing ARM root image: %s" % sysroot 81 if os.path.isdir(sysroot): 82 shutil.rmtree(sysroot) 83 os.mkdir(sysroot) 84 tarball = os.path.join(sysroot, TARBALL) 96 subprocess.check_call(['tar', 'xf', tarball, '-C', sysroot])
|
D | rewrite_dirs.py | 24 sysroot = opts.sysroot 26 if os.path.isabs(path) and not path.startswith(sysroot): 30 return os.path.join(sysroot, path)
|
D | pkg-config-wrapper | 59 echo "$result"| $rewrite --sysroot "$root" --strip-prefix "$prefix"
|
D | sysroot_ld_path.sh | 79 echo Usage $0 /abspath/to/sysroot
|
/external/chromium_org/chrome/installer/linux/sysroot_scripts/ |
D | install-debian.wheezy.sysroot.py | 102 sysroot = os.path.join(linux_dir, SYSROOT_DIR_AMD64) 106 sysroot = os.path.join(linux_dir, SYSROOT_DIR_I386) 111 stamp = os.path.join(sysroot, '.stamp') 116 (options.arch, sysroot) 119 print 'Installing Debian Wheezy %s root image: %s' % (options.arch, sysroot) 120 if os.path.isdir(sysroot): 121 shutil.rmtree(sysroot) 122 os.mkdir(sysroot) 123 tarball = os.path.join(sysroot, tarball_filename) 130 subprocess.check_call(['tar', 'xf', tarball, '-C', sysroot])
|
D | sysroot-creator-wheezy.sh | 178 . ${SCRIPT_DIR}/sysroot-creator.sh
|
D | sysroot-creator-trusty.sh | 184 . ${SCRIPT_DIR}/sysroot-creator.sh
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/ |
D | android.txt | 13 2. Set cross-compiling environment variables for NDK toolchain and sysroot. 32 2. Build your own NDK sysroot to contain latest bionic changes and set the 33 NDK sysroot environment variable. 36 ./build/tools/build-ndk-sysroot.sh --abi=arm 39 ./build/tools/build-ndk-sysroot.sh --abi=x86 50 You need to run make with the NDK toolchain and sysroot defined above: 52 make ARCH=arm CROSS_COMPILE=${NDK_TOOLCHAIN} CFLAGS="--sysroot=${NDK_SYSROOT}" 54 make ARCH=x86 CROSS_COMPILE=${NDK_TOOLCHAIN} CFLAGS="--sysroot=${NDK_SYSROOT}"
|
/external/chromium_org/build/config/ios/ |
D | BUILD.gn | 5 import("//build/config/sysroot.gni") 9 common_flags = [ "-isysroot", sysroot ]
|
/external/deqp/framework/delibs/cmake/ |
D | toolchain-raspi.cmake | 9 …YSROOT_PATH "${CC_PATH}/arm-bcm2708hardfp-linux-gnueabi/sysroot" CACHE STRING "Raspbian sysroot …
|
D | toolchain-android-r6.cmake | 30 # Cross-compiler, search paths and sysroot 87 set(COMMON_C_FLAGS "--sysroot=${ANDROID_SYSROOT} -fpic -Os -DANDROID -D__ANDROID__ -D__STDC_INT64_…
|
/external/chromium_org/build/config/mac/ |
D | BUILD.gn | 5 import("//build/config/sysroot.gni") 9 "-isysroot", sysroot,
|
/external/llvm/cmake/platforms/ |
D | Android.cmake | 25 …ANDROID_COMMON_FLAGS "-target arm-linux-androideabi --sysroot=${LLVM_ANDROID_TOOLCHAIN_DIR}/sysroo…
|
/external/compiler-rt/make/platform/ |
D | clang_linux.mk | 116 --sysroot=$(LLVM_ANDROID_TOOLCHAIN_DIR)/sysroot \ 127 CFLAGS.builtins-i386 += --sysroot=$(ProjSrcRoot)/SDKs/linux 128 CFLAGS.builtins-x86_64 += --sysroot=$(ProjSrcRoot)/SDKs/linux
|
/external/valgrind/main/ |
D | README.android | 97 CPPFLAGS="--sysroot=$NDKROOT/platforms/android-3/arch-arm -DANDROID_HARDWARE_$HWKIND" \ 98 CFLAGS="--sysroot=$NDKROOT/platforms/android-3/arch-arm" \ 106 CPPFLAGS="--sysroot=$NDKROOT/platforms/android-9/arch-x86 -DANDROID_HARDWARE_$HWKIND" \ 107 CFLAGS="--sysroot=$NDKROOT/platforms/android-9/arch-x86 -fno-pic" \ 113 CPPFLAGS="--sysroot=$NDKROOT/platforms/android-18/arch-mips -DANDROID_HARDWARE_$HWKIND" \ 114 CFLAGS="--sysroot=$NDKROOT/platforms/android-18/arch-mips" \
|
/external/chromium_org/third_party/libexif/ |
D | libexif.gyp | 100 ['sysroot!=""', { 102 …'pkg-config': '../../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)" "<(system_libdir…
|
/external/clang/include/clang/Config/ |
D | config.h.cmake | 17 /* Default <path> to all compiler invocations for --sysroot=<path>. */
|
D | config.h.in | 20 /* Default <path> to all compiler invocations for --sysroot=<path>. */
|
/external/chromium_org/ |
D | DEPS | 567 # Downloads an ARM sysroot image to src/arm-sysroot. This image updates 571 'name': 'sysroot', 573 'action': ['python', 'src/build/linux/install-arm-sysroot.py', 577 # Downloads the Debian Wheezy sysroot to chrome/installer/linux if needed. 578 # This sysroot updates at about the same rate that the chrome build deps 581 'name': 'sysroot', 585 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py', 591 'name': 'sysroot', 595 'src/chrome/installer/linux/sysroot_scripts/install-debian.wheezy.sysroot.py',
|
/external/chromium_org/net/third_party/nss/ |
D | ssl.gyp | 9 ['sysroot!=""', { 11 …'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)" "<(system_lib…
|
12345