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

1 2 3 4 5 6

  /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 93 def ensure_linker(device, sysroot, is64bit):
94 local_path = os.path.join(sysroot, "system", "bin", "linker")
103 def handle_switches(args, sysroot):
108 sysroot: Local sysroot path.
140 binary_file, local = gdbrunner.find_file(device, run_cmd[0], sysroot,
145 binary_file, local = gdbrunner.find_binary(device, pid, sysroot,
152 " symbols may not be available.".format(sysroot))
157 def generate_gdb_script(sysroot, binary_file, is64bit, port, connect_timeout=5):
161 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...]
  /external/python/cpython2/Lib/
_osx_support.py 351 sysroot = None
354 sysroot = cc_args[idx+1]
357 sysroot = compiler_so[idx+1]
359 if sysroot and not os.path.isdir(sysroot):
362 sysroot)
  /external/python/cpython2/Lib/distutils/
unixccompiler.py 277 sysroot = '/'
279 sysroot = m.group(1)
293 shared = os.path.join(sysroot, dir[1:], shared_f)
294 dylib = os.path.join(sysroot, dir[1:], dylib_f)
295 static = os.path.join(sysroot, dir[1:], static_f)
296 xcode_stub = os.path.join(sysroot, dir[1:], xcode_stub_f)
  /external/python/cpython3/Lib/
_osx_support.py 351 sysroot = None
354 sysroot = cc_args[idx+1]
357 sysroot = compiler_so[idx+1]
359 if sysroot and not os.path.isdir(sysroot):
362 sysroot)
  /external/python/cpython3/Lib/distutils/
unixccompiler.py 287 sysroot = '/'
289 sysroot = m.group(1)
303 shared = os.path.join(sysroot, dir[1:], shared_f)
304 dylib = os.path.join(sysroot, dir[1:], dylib_f)
305 static = os.path.join(sysroot, dir[1:], static_f)
306 xcode_stub = os.path.join(sysroot, dir[1:], xcode_stub_f)
  /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)
  /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
  /development/python-packages/gdbrunner/
__init__.py 194 def find_file(device, executable_path, sysroot, run_as_cmd=None):
204 sysroot: absolute path to the built symbol sysroot.
221 yield (sysroot + executable_path, True)
226 yield (sysroot + target, True)
280 def find_binary(device, pid, sysroot, run_as_cmd=None):
282 return find_file(device, "/proc/{}/exe".format(pid), sysroot, run_as_cmd)
  /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.27/gold/
options.cc 739 // If the default sysroot is relocatable, try relocating it based on
758 // Return the default sysroot. This is set by the --with-sysroot
766 const char* sysroot = TARGET_SYSTEM_ROOT; local
767 if (*sysroot == '\0')
779 return sysroot;
970 // Add the sysroot, if any, to the search paths.
975 if (this->sysroot() == NULL || this->sysroot()[0] == '\0')
978 if (this->sysroot() == NULL || this->sysroot()[0] == '\0'
    [all...]
  /build/soong/cc/
cmakelists.go 201 if c.sysroot != "" {
202 f.WriteString(fmt.Sprintf("include_directories(SYSTEM \"%s\")\n", buildCMakePath(path.Join(c.sysroot, "usr", "include"))))
260 sysroot string
265 sysroot: "",
282 if strings.HasPrefix(parameter, "--sysroot") {
333 compilerParameters.sysroot = params[i+1]
383 if c2.sysroot != "" {
384 c1.sysroot = c2.sysroot
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
166 // Will install $SYSROOT/usr/include/foo/bar/baz.h. If `from` were instea
    [all...]
  /build/soong/cc/config/
x86_linux_host.go 72 "--sysroot ${LinuxGccRoot}/sysroot",
78 "--sysroot ${LinuxGccRoot}/sysroot",
  /external/tensorflow/tensorflow/contrib/makefile/
compile_android_protobuf.sh 142 export SYSROOT=\
144 export CC="${cc_prefix} ${bin_prefix}-gcc --sysroot ${SYSROOT}"
145 export CXX="${cc_prefix} ${bin_prefix}-g++ --sysroot ${SYSROOT}"
158 --with-sysroot="${SYSROOT}" \
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 76 /// sysroot
77 const sys::fs::Path& sysroot() const;

Completed in 343 milliseconds

1 2 3 4 5 6