HomeSort by relevance Sort by last modified time
    Searched refs:sysroot (Results 1 - 18 of 18) sorted by null

  /external/chromium/build/linux/
rewrite_dirs.py 6 """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')
pkg-config-wrapper 7 # 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"
  /prebuilt/darwin-x86/toolchain/i686-android-linux-4.4.3/
build-toolchain.sh 165 fail_panic "Could not generate build sysroot"
167 echo "Copying system files into: $TOOLCHAIN_INSTALL_DIR/sysroot"
168 cp -r $TOOLCHAIN_INSTALL_DIR/platforms/$PLATFORM/arch-$ARCH $TOOLCHAIN_INSTALL_DIR/sysroot
169 fail_panic "Could not copy files to: $TOOLCHAIN_INSTALL_DIR/sysroot"
171 rm -rf $TOOLCHAIN_INSTALL_DIR/sysroot/usr/lib
179 --sysroot=$TOOLCHAIN_INSTALL_DIR/sysroot \
195 (cd $SRCDIR && tar cf - --exclude=sysroot *) | tar xf - -C $PREBUILT_INSTALL_DIR
  /prebuilt/linux-x86/toolchain/i686-android-linux-4.4.3/
build-toolchain.sh 165 fail_panic "Could not generate build sysroot"
167 echo "Copying system files into: $TOOLCHAIN_INSTALL_DIR/sysroot"
168 cp -r $TOOLCHAIN_INSTALL_DIR/platforms/$PLATFORM/arch-$ARCH $TOOLCHAIN_INSTALL_DIR/sysroot
169 fail_panic "Could not copy files to: $TOOLCHAIN_INSTALL_DIR/sysroot"
171 rm -rf $TOOLCHAIN_INSTALL_DIR/sysroot/usr/lib
179 --sysroot=$TOOLCHAIN_INSTALL_DIR/sysroot \
195 (cd $SRCDIR && tar cf - --exclude=sysroot *) | tar xf - -C $PREBUILT_INSTALL_DIR
  /ndk/build/tools/
builder-funcs.sh 413 local ARCH ABI PLATFORM BUILDDIR DSTDIR SYSROOT CFLAGS
423 SYSROOT=$NDK_DIR/platforms/android-$PLATFORM/arch-$ARCH
426 SYSROOT=$NDK_DIR/$(get_default_platform_sysroot_for_arch $ARCH)
428 CRTBEGIN_EXE_O=$SYSROOT/usr/lib/crtbegin_dynamic.o
429 CRTEND_EXE_O=$SYSROOT/usr/lib/crtend_android.o
431 CRTBEGIN_SO_O=$SYSROOT/usr/lib/crtbegin_so.o
432 CRTEND_SO_O=$SYSROOT/usr/lib/crtend_so.o
444 builder_cflags "--sysroot=$SYSROOT"
445 builder_cxxflags "--sysroot=$SYSROOT
    [all...]
build-gdbserver.sh 37 NOTE: The --platform option is ignored if --sysroot is used."
49 SYSROOT=
50 if [ -d $TOOLCHAIN_PATH/sysroot ] ; then
51 SYSROOT=$TOOLCHAIN_PATH/sysroot
53 register_var_option "--sysroot=<path>" SYSROOT "Specify sysroot directory directly"
132 fix_sysroot "$SYSROOT"
133 log "Using sysroot: $SYSROOT
    [all...]
prebuilt-common.sh 482 # If SYSROOT is empty, check that $1/$2 contains a sysroot
485 # $1: sysroot path
489 if [ -z "$SYSROOT" ] ; then
490 log "Probing directory for sysroot: $1/$2"
492 SYSROOT=$1/$2
497 # Determine sysroot
503 eval SYSROOT="$1"
504 log "Using specified sysroot: $1"
507 SYSROOT
    [all...]
build-gcc.sh 43 register_var_option "--sysroot=<path>" OPTION_SYSROOT "Specify sysroot directory directly"
157 # Copy the sysroot to the installation prefix. This prevents the generated
159 TOOLCHAIN_SYSROOT=$TOOLCHAIN_PATH/sysroot
160 dump "Sysroot : Copying: $SYSROOT --> $TOOLCHAIN_SYSROOT"
161 mkdir -p $TOOLCHAIN_SYSROOT && (cd $SYSROOT && tar ch *) | (cd $TOOLCHAIN_SYSROOT && tar x)
163 echo "Error while copying sysroot files. See $TMPLOG"
206 --with-sysroot=$TOOLCHAIN_SYSROOT \
build-ndk-sysroot.sh 17 # build-ndk-sysroot.sh
19 # collect files from an Android tree to assemble a sysroot suitable for
22 # after that, you may use build/tools/package-ndk-sysroot.sh to package
25 # NOTE: this is different from the Android toolchain original build-sysroot.sh
76 echo "Collect files from an Android build tree and assembles a sysroot"
84 echo " --platform=<name> generate sysroot for platform <name> (default is $PLATFORM)"
85 echo " --abi=<name> generate sysroot for abi <name> (default is $ABI)"
87 echo " --package generate sysroot package tarball"
134 SYSROOT=$NDK_ROOT/build/platforms/$PLATFORM/arch-$ABI
137 # clean up everything in existing sysroot
    [all...]
package-release.sh 386 echo "Removing sysroot for $TC"
387 rm -rf $DSTDIR/toolchains/$TC/prebuilt/$SYSTEM/sysroot
  /ndk/build/core/
add-platform.mk 32 $(call ndk_log, ABI $(_abi) sysroot is: $(NDK_PLATFORM_$(_platform)_$(_abi)_SYSROOT))\
setup-toolchain.mk 52 # setup sysroot-related variables. The SYSROOT point to a directory
57 SYSROOT := $(NDK_PLATFORMS_ROOT)/$(TARGET_PLATFORM)/arch-$(TARGET_ARCH)
59 TARGET_CRTBEGIN_STATIC_O := $(SYSROOT)/usr/lib/crtbegin_static.o
60 TARGET_CRTBEGIN_DYNAMIC_O := $(SYSROOT)/usr/lib/crtbegin_dynamic.o
61 TARGET_CRTEND_O := $(SYSROOT)/usr/lib/crtend_android.o
64 # only define them if they are in the sysroot
66 TARGET_CRTBEGIN_SO_O := $(strip $(wildcard $(SYSROOT)/usr/lib/crtbegin_so.o))
67 TARGET_CRTEND_SO_O := $(strip $(wildcard $(SYSROOT)/usr/lib/crtend_so.o))
127 $(NDK_APP_GDBSETUP): PRIVATE_SRC_DIRS := $(SYSROOT)/usr/includ
    [all...]
  /ndk/toolchains/x86-4.4.3/
setup.mk 34 $(SYSROOT)/usr/include
80 --sysroot=$(call host-path,$(PRIVATE_SYSROOT)) \
96 --sysroot=$(call host-path,$(PRIVATE_SYSROOT)) \
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 75 # Location of original sysroot. This is where we're going to extract all
77 ORG_SYSROOT_DIR=$WORK_DIR/sysroot
98 # Location of the final sysroot. This must be a sub-directory of INSTALL_DIR
101 sysroot_dir () { echo "$(install_dir)/sysroot"; }
115 # extract into the original sysroot
243 --only-sysroot) ONLY_SYSROOT=yes
284 servers in order to prepare a compatible 32-bit "sysroot".
298 echo " --only-sysroot Only dowload and build sysroot packages"
1078 task_define build_sysroot "Build sysroot"
    [all...]
  /external/llvm/utils/crosstool/ARM/
build-install-linux.sh 34 readonly SYSROOT="${CODE_SOURCERY_ROOT}/${CROSS_TARGET}/libc"
117 if [[ ! -d "${SYSROOT}" ]]; then
119 echo "${SYSROOT} not found."
184 --with-sysroot=${SYSROOT}
  /ndk/toolchains/arm-linux-androideabi-4.4.3/
setup.mk 37 $(SYSROOT)/usr/include
124 --sysroot=$(call host-path,$(PRIVATE_SYSROOT)) \
140 --sysroot=$(call host-path,$(PRIVATE_SYSROOT)) \
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 55 InitHeaderSearch(HeaderSearch &HS, bool verbose, StringRef sysroot)
56 : Headers(HS), Verbose(verbose), IncludeSysroot(sysroot),
57 IsNotEmptyOrRoot(!(sysroot.empty() || sysroot == "/")) {
545 P.appendComponent("../../../i686-w64-mingw32/include"); // <sysroot>/i686-w64-mingw32/include
548 P.appendComponent("../../../x86_64-w64-mingw32/include"); // <sysroot>/x86_64-w64-mingw32/include
552 P.appendComponent("../../../include"); // <sysroot>/include
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 319 SysRoot = A->getValue(*Args);
613 std::string sysroot; local
615 sysroot = A->getValue(C.getArgs());
622 llvm::outs() << sysroot << path + 1;
    [all...]

Completed in 176 milliseconds