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

1 2 3 4 5

  /external/autotest/client/cros/
factory_setup_modules.py 11 # If SYSROOT is present, also look in
12 # $SYSROOT/usr/local/factory/py_pkg (necessary during the build step).
13 sysroot = os.environ.get('SYSROOT') variable
14 extra_path = ([os.path.join(sysroot, 'usr/local/factory/py_pkg')]
15 if sysroot else [])
  /frameworks/compile/mclinker/lib/Core/
LinkerScript.cpp 22 const mcld::sys::fs::Path& LinkerScript::sysroot() const { function in class:mcld::LinkerScript
23 return m_SearchDirs.sysroot();
31 return !sysroot().empty();
  /development/scripts/
gdbclient.py 99 def ensure_linker(device, sysroot, is64bit):
100 local_path = os.path.join(sysroot, "system", "bin", "linker")
109 def handle_switches(args, sysroot):
114 sysroot: Local sysroot path.
138 binary_file, local = gdbrunner.find_file(device, run_cmd[0], sysroot,
143 binary_file, local = gdbrunner.find_binary(device, pid, sysroot,
150 " symbols may not be available.".format(sysroot))
154 def generate_gdb_script(sysroot, binary_file, is64bit, port, connect_timeout=5):
158 symbols_dir = os.path.join(sysroot, "system", "lib64" if is64bit else "lib"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
unixccompiler.py 92 sysroot = None
95 sysroot = cc_args[idx+1]
98 sysroot = compiler_so[idx+1]
100 if sysroot and not os.path.isdir(sysroot):
102 sysroot)
315 sysroot = '/'
317 sysroot = m.group(1)
330 shared = os.path.join(sysroot, dir[1:], shared_f)
331 dylib = os.path.join(sysroot, dir[1:], dylib_f)
    [all...]
  /development/python-packages/gdbrunner/
__init__.py 194 def find_file(device, executable_path, sysroot, user=None):
204 sysroot: absolute path to the built symbol sysroot.
221 yield (sysroot + executable_path, True)
226 yield (sysroot + target, True)
250 def find_binary(device, pid, sysroot, user=None):
252 return find_file(device, "/proc/{}/exe".format(pid), sysroot, user)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_osx_support.py 345 sysroot = None
348 sysroot = cc_args[idx+1]
351 sysroot = compiler_so[idx+1]
353 if sysroot and not os.path.isdir(sysroot):
356 sysroot)
  /prebuilts/gdb/linux-x86/lib/python2.7/
_osx_support.py 345 sysroot = None
348 sysroot = cc_args[idx+1]
351 sysroot = compiler_so[idx+1]
353 if sysroot and not os.path.isdir(sysroot):
356 sysroot)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_osx_support.py 345 sysroot = None
348 sysroot = cc_args[idx+1]
351 sysroot = compiler_so[idx+1]
353 if sysroot and not os.path.isdir(sysroot):
356 sysroot)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_osx_support.py 345 sysroot = None
348 sysroot = cc_args[idx+1]
351 sysroot = compiler_so[idx+1]
353 if sysroot and not os.path.isdir(sysroot):
356 sysroot)
  /build/soong/cc/
ndk_headers.go 58 // Will install $SYSROOT/usr/include/foo/bar/baz.h. If `from` were instead
59 // "include/foo", it would have installed $SYSROOT/usr/include/bar/baz.h.
62 // Install path within the sysroot. This is relative to usr/include.
86 // Output path is the sysroot base + "usr/include" + to directory + directory component
90 // sysroot base = "ndk/sysroot"
94 // output path = "ndk/sysroot/usr/include/bar/woodly/doodly.h"
109 // full/platform/path/to/sysroot/usr/include/bar/woodly
112 // full/platform/path/to/sysroot/usr/include/bar/woodly/doodly.h
155 // Will install $SYSROOT/usr/include/foo/bar/baz.h. If `from` were instea
    [all...]
cmakelists.go 189 if c.sysroot != "" {
190 f.WriteString(fmt.Sprintf("include_directories(SYSTEM \"%s\")\n", buildCMakePath(path.Join(c.sysroot, "usr", "include"))))
244 sysroot string
249 sysroot: "",
266 if strings.HasPrefix(parameter, "--sysroot") {
317 compilerParameters.sysroot = params[i+1]
367 if c2.sysroot != "" {
368 c1.sysroot = c2.sysroot
ndk_sysroot.go 29 // indicates where in the sysroot they should reside relative to usr/include.
74 // Returns the main install directory for the NDK sysroot. Usable with --sysroot.
76 return getNdkInstallBase(ctx).Join(ctx, "sysroot")
  /frameworks/compile/mclinker/include/mcld/MC/
SearchDirs.h 56 const sys::fs::Path& sysroot() const { return m_SysRoot; } function in class:mcld::SearchDirs
  /prebuilts/misc/linux-x86/analyzer/bin/
ccc-syntax 66 # everything in command line, host tools have their own sysroot and --sysroot
95 -I prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include
102 -I prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include
cxx-syntax 63 # everything in command line, host tools have their own sysroot and --sysroot
95 -I prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include
105 -I prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
unixccompiler.py 269 sysroot = '/'
271 sysroot = m.group(1)
284 shared = os.path.join(sysroot, dir[1:], shared_f)
285 dylib = os.path.join(sysroot, dir[1:], dylib_f)
286 static = os.path.join(sysroot, dir[1:], static_f)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
unixccompiler.py 269 sysroot = '/'
271 sysroot = m.group(1)
284 shared = os.path.join(sysroot, dir[1:], shared_f)
285 dylib = os.path.join(sysroot, dir[1:], dylib_f)
286 static = os.path.join(sysroot, dir[1:], static_f)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
unixccompiler.py 259 sysroot = '/'
261 sysroot = m.group(1)
274 shared = os.path.join(sysroot, dir[1:], shared_f)
275 dylib = os.path.join(sysroot, dir[1:], dylib_f)
276 static = os.path.join(sysroot, dir[1:], static_f)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
unixccompiler.py 259 sysroot = '/'
261 sysroot = m.group(1)
274 shared = os.path.join(sysroot, dir[1:], shared_f)
275 dylib = os.path.join(sysroot, dir[1:], dylib_f)
276 static = os.path.join(sysroot, dir[1:], static_f)
  /toolchain/binutils/binutils-2.25/gold/
options.cc 718 // If the default sysroot is relocatable, try relocating it based on
737 // Return the default sysroot. This is set by the --with-sysroot
745 const char* sysroot = TARGET_SYSTEM_ROOT; local
746 if (*sysroot == '\0')
758 return sysroot;
948 // Add the sysroot, if any, to the search paths.
953 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
956 if (this->sysroot() == NULL || this->sysroot()[0] == '\0'
    [all...]
  /build/soong/cc/config/
x86_linux_host.go 81 "--sysroot ${LinuxGccRoot}/sysroot",
87 "--sysroot ${LinuxGccRoot}/sysroot",
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 76 /// sysroot
77 const sys::fs::Path& sysroot() const;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
sysroot-prefix.exp 20 # Check that scripts using the "=" sysroot-prefix work, for both
21 # toolchains with and without --sysroot support.
26 # paths, with different prefixes on the path and with --sysroot
29 # Find out if the linker supports sysroot; if it was configured
30 # "--with-sysroot X" where X is a non-empty string.
32 verbose -log "Has (non-empty) sysroot support: $with_sysroot; \"$ld_sysroot\""
34 # We also need to know if the sysroot is "/" (a common use) as some of
35 # the tests prepend sysroot to the current directory and on most
44 # build configured for: 1: non-sysroot, 2: sysroot != "/", 4: sysroot == "/"
    [all...]
  /build/kati/
ninja_test.go 118 in: `mkdir -p out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/ && echo "host C++: llvm-rs-cc <= frameworks/compile/slang/llvm-rs-cc.cpp" && prebuilts/clang/linux-x86/host/3.6/bin/clang++ -I external/llvm -I external/llvm/include -I external/llvm/host/include -I external/clang/include -I external/clang/lib/CodeGen -I frameworks/compile/libbcc/include -I out/host/linux-x86/gen/EXECUTABLES/llvm-rs-cc_intermediates/include -I external/libcxx/include -I frameworks/compile/slang -I out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates -I out/host/linux-x86/gen/EXECUTABLES/llvm-rs-cc_intermediates -I libnativehelper/include/nativehelper $(cat out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/import_includes) -isystem system/core/include -isystem hardware/libhardware/include -isystem hardware/libhardware_legacy/include -isystem hardware/ril/include -isystem libnativehelper/include -isystem frameworks/native/include -isystem frameworks/native/opengl/include -isystem frameworks/av/include -isystem frameworks/base/include -isystem tools/include -isystem out/host/linux-x86/obj/include -c -fno-exceptions -Wno-multichar -m64 -Wa,--noexecstack -fPIC -no-canonical-prefixes -include build/core/combo/include/arch/linux-x86/AndroidConfig.h -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 -D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith -O2 -g -fno-strict-aliasing -DNDEBUG -UDEBUG -D__compiler_offsetof=__builtin_offsetof -Werror=int-conversion -Wno-unused-command-line-argument --gcc-toolchain=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/ --gcc-toolchain=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/ --sysroot=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//sysroot -target x86_64-linux-gnu -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith -Wsign-promo -std=gnu++11 -DNDEBUG -UDEBUG -Wno-inconsistent-missing-override --gcc-toolchain=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/ --sysroot=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//sysroot -isystem prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//x86_64-linux/include/c++/4.8 -isystem prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//x86_64-linux/include/c++/4.8/x86_64-linux -isystem prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//x86_64-linux/include/c++/4.8/backward -target x86_64-linux-gnu -pedantic -Wcast-qual -Wno-long-long -Wno-sign-promo -Wall -Wno-unused-parameter -Wno-return-type -Werror -std=c++11 -O0 -DTARGET_BUILD_VARIANT=eng -DRS_VERSION=23 -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -O2 -fomit-frame-pointer -Wall -W -Wno-unused-parameter -Wwrite-strings -Dsprintf=sprintf -pedantic -Wcast-qual -Wno-long-long -Wno-sign-promo -Wall -Wno-unused-parameter -Wno-return-type -Werror -std=c++11 -O0 -DTARGET_BUILD_VARIANT=eng -DRS_VERSION=23 -fno-exceptions -fpie -D_USING_LIBCXX -Wno-sign-promo -fno-rtti -Woverloaded-virtual -Wno-sign-promo -std=c++11 -nostdinc++ -MD -MF out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.d -o out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.o frameworks/compile/slang/llvm-rs-cc.cpp && cp out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.d out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.P; sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$//' -e '/^$/ d' -e 's/$/ :/' < out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.d >> out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.P; rm -f out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.d`,
119 cmd: `mkdir -p out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/ && echo "host C++: llvm-rs-cc <= frameworks/compile/slang/llvm-rs-cc.cpp" && prebuilts/clang/linux-x86/host/3.6/bin/clang++ -I external/llvm -I external/llvm/include -I external/llvm/host/include -I external/clang/include -I external/clang/lib/CodeGen -I frameworks/compile/libbcc/include -I out/host/linux-x86/gen/EXECUTABLES/llvm-rs-cc_intermediates/include -I external/libcxx/include -I frameworks/compile/slang -I out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates -I out/host/linux-x86/gen/EXECUTABLES/llvm-rs-cc_intermediates -I libnativehelper/include/nativehelper $(cat out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/import_includes) -isystem system/core/include -isystem hardware/libhardware/include -isystem hardware/libhardware_legacy/include -isystem hardware/ril/include -isystem libnativehelper/include -isystem frameworks/native/include -isystem frameworks/native/opengl/include -isystem frameworks/av/include -isystem frameworks/base/include -isystem tools/include -isystem out/host/linux-x86/obj/include -c -fno-exceptions -Wno-multichar -m64 -Wa,--noexecstack -fPIC -no-canonical-prefixes -include build/core/combo/include/arch/linux-x86/AndroidConfig.h -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 -D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith -O2 -g -fno-strict-aliasing -DNDEBUG -UDEBUG -D__compiler_offsetof=__builtin_offsetof -Werror=int-conversion -Wno-unused-command-line-argument --gcc-toolchain=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/ --gcc-toolchain=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/ --sysroot=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//sysroot -target x86_64-linux-gnu -DANDROID -fmessage-length=0 -W -Wall -Wno-unused -Winit-self -Wpointer-arith -Wsign-promo -std=gnu++11 -DNDEBUG -UDEBUG -Wno-inconsistent-missing-override --gcc-toolchain=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/ --sysroot=prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//sysroot -isystem prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//x86_64-linux/include/c++/4.8 -isystem prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//x86_64-linux/include/c++/4.8/x86_64-linux -isystem prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8//x86_64-linux/include/c++/4.8/backward -target x86_64-linux-gnu -pedantic -Wcast-qual -Wno-long-long -Wno-sign-promo -Wall -Wno-unused-parameter -Wno-return-type -Werror -std=c++11 -O0 -DTARGET_BUILD_VARIANT=eng -DRS_VERSION=23 -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -O2 -fomit-frame-pointer -Wall -W -Wno-unused-parameter -Wwrite-strings -Dsprintf=sprintf -pedantic -Wcast-qual -Wno-long-long -Wno-sign-promo -Wall -Wno-unused-parameter -Wno-return-type -Werror -std=c++11 -O0 -DTARGET_BUILD_VARIANT=eng -DRS_VERSION=23 -fno-exceptions -fpie -D_USING_LIBCXX -Wno-sign-promo -fno-rtti -Woverloaded-virtual -Wno-sign-promo -std=c++11 -nostdinc++ -MD -MF out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.d -o out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.o frameworks/compile/slang/llvm-rs-cc.cpp && cp out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.d out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.P; sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$//' -e '/^$/ d' -e 's/$/ :/' < out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.d >> out/host/linux-x86/obj/EXECUTABLES/llvm-rs-cc_intermediates/llvm-rs-cc.P`,
  /external/autotest/docs/
test-that.md 10 test_that always runs from the sysroot location.
13 sysroot.

Completed in 840 milliseconds

1 2 3 4 5