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

  /ndk/tests/abcc/jni/device/
main.cpp 36 const char *sysroot = env->GetStringUTFChars(j_sysroot, 0); local
37 LOGV("Sysroot: %s", sysroot);
40 std::auto_ptr<BitcodeCompiler> compiler(new DeviceBitcodeCompiler(lib_dir, sysroot));
  /frameworks/compile/mclinker/include/mcld/MC/
SearchDirs.h 56 const sys::fs::Path& sysroot() const { return m_SysRoot; } function in class:mcld::SearchDirs
  /frameworks/compile/mclinker/lib/Core/
LinkerScript.cpp 24 const mcld::sys::fs::Path& LinkerScript::sysroot() const function in class:LinkerScript
26 return m_SearchDirs.sysroot();
36 return !sysroot().empty();
  /ndk/tests/abcc/jni/host/
main.cpp 23 std::string &abi, std::string &ndk_dir, std::string &sysroot,
37 if (arg.find("--sysroot=") != std::string::npos) {
38 sysroot = arg.substr(arg.rfind('=')+1);
78 std::string sysroot; local
87 abi, ndk_dir, sysroot, input, output, platform, savetemps) != 0)
108 if (sysroot.empty() && ndk_dir.empty()) {
113 if (sysroot.empty()) {
115 sysroot = ndk_dir + "/platforms/" + platform + "/arch-" + TargetAbi(abi).getArch();
121 compiler.reset(new HostBitcodeCompiler(abi, sysroot, toolchain_bin,
125 compiler.reset(new HostBitcodeCompiler(abi, sysroot, ndk_dir, toolchain_bin
    [all...]
  /external/chromium_org/build/config/linux/
pkg-config.py 22 # 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...]
  /ndk/tests/abcc/src/compiler/abcc/
AbccService.java 151 // User specify a customized toolchain sysroot, so we don't need to copy.
156 File sysroot = getDir("toolchain_sysroot", MODE_WORLD_READABLE); local
157 mSysroot = sysroot.getAbsolutePath();
264 private native int genLibs(String working_dir, String sysroot);
  /external/clang/lib/Driver/
Driver.cpp 51 ClangExecutable(ClangExecutable), SysRoot(DEFAULT_SYSROOT),
355 SysRoot = A->getValue();
729 StringRef sysroot = C.getSysRoot(); local
736 llvm::outs() << sysroot << path + 1;
    [all...]
Tools.cpp 414 // 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));
5526 StringRef sysroot = C.getSysRoot(); local
    [all...]

Completed in 173 milliseconds