| /src/crypto/openssl/Configurations/ |
| H A D | 15-android.conf | 55 my ($sysroot, $api, $arch); 60 if ($sysroot = $ENV{CROSS_SYSROOT}) { 61 $sysroot =~ m|/android-([0-9]+)/arch-(\w+)/?$|; 64 $sysroot = "$ndk/sysroot"; 83 $sysroot = "@platforms[$#platforms]/arch-$arch"; 84 $sysroot =~ m|/android-([0-9]+)/arch-$arch|; 100 die "no sysroot=$sysroot" if (length $sysroot && !-d $sysroot); 113 if (length $sysroot) { 149 if (length $sysroot) { 150 if (!-d "$sysroot/usr/include") { [all …]
|
| /src/contrib/googletest/docs/ |
| H A D | pkgconfig.md | 72 your sysroot is `/home/MYUSER/sysroot`. Configure and install GTest using 78 Install into the sysroot using `DESTDIR`: 81 make -j install DESTDIR=/home/MYUSER/sysroot 110 Notice that the sysroot is not included in `libdir` and `includedir`! If you try 112 `PKG_CONFIG_LIBDIR=/home/MYUSER/sysroot/usr/lib64/pkgconfig` against this `.pc` 124 inject the actual sysroot into `-I` and `-L` variables. Let us now tell 125 pkg-config about the actual sysroot 129 export PKG_CONFIG_SYSROOT_DIR=/home/MYUSER/sysroot 137 -DGTEST_HAS_PTHREAD=1 -lpthread -I/home/MYUSER/sysroot/usr/include 139 -L/home/MYUSER/sysroot/usr/lib64 -lgtest -lpthread [all …]
|
| /src/sys/contrib/openzfs/contrib/dracut/90zfs/ |
| H A D | zfs-generator.sh.in | 20 mkdir -p "$GENERATOR_DIR"/sysroot.mount.d "$GENERATOR_DIR"/dracut-pre-mount.service.d 32 } > "$GENERATOR_DIR"/sysroot.mount.d/zfs-enhancement.conf 33 ln -fs ../sysroot.mount "$GENERATOR_DIR"/initrd-root-fs.target.requires/sysroot.mount
|
| H A D | zfs-nonroot-necessities.service.in | 3 After=sysroot.mount 14 echo "Mounting $1 on /sysroot$2"; \ 15 mount -o zfsutil -t zfs "$1" "/sysroot$2"; \
|
| H A D | mount-zfs.sh.in | 8 GENERATOR_FILE=/run/systemd/generator/sysroot.mount 9 GENERATOR_EXTENSION=/run/systemd/generator/sysroot.mount.d/zfs-enhancement.conf
|
| H A D | zfs-rollback-bootfs.service.in | 5 Before=dracut-mount.service sysroot.mount
|
| /src/share/mk/ |
| H A D | local.init.mk | 17 CFLAGS_LAST+= --sysroot=${SYSROOT} 18 CXXFLAGS_LAST+= --sysroot=${SYSROOT} 19 LDADD+= --sysroot=${SYSROOT}
|
| /src/contrib/sqlite3/autosetup/ |
| H A D | pkg-config.tcl | 52 if {[opt-str sysroot o]} { 72 set sysroot [get-define SYSROOT] 82 set env(PKG_CONFIG_SYSROOT_DIR) $sysroot
|
| /src/sys/contrib/libsodium/dist-build/ |
| H A D | android-build.sh | 59 --with-sysroot="${TOOLCHAIN_DIR}/sysroot" || exit 1 75 --with-sysroot="${TOOLCHAIN_DIR}/sysroot" || exit 1
|
| /src/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/ |
| H A D | PlatformQemuUser.cpp | 203 if (const std::string &sysroot = GetSDKRootDirectory(); !sysroot.empty()) in DebugProcess() local 204 emulator_env["QEMU_LD_PREFIX"] = sysroot; in DebugProcess()
|
| /src/tools/build/options/ |
| H A D | WITH_SYSROOT | 1 Enable use of sysroot during build.
|
| /src/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | SourceModule.h | 22 ConstString sysroot; member
|
| /src/contrib/llvm-project/clang/lib/Lex/ |
| H A D | InitHeaderSearch.cpp | 58 InitHeaderSearch(HeaderSearch &HS, bool verbose, StringRef sysroot) in InitHeaderSearch() argument 59 : Headers(HS), Verbose(verbose), IncludeSysroot(std::string(sysroot)), in InitHeaderSearch() 60 HasSysroot(!(sysroot.empty() || sysroot == "/")) {} in InitHeaderSearch()
|
| /src/contrib/unbound/ |
| H A D | README-Travis.md | 69 …et, the OpenSSL triplet, the toolchain path, the tool variables, and the sysroot. The discussion b… 120 …s like `CC`, `CXX`, `AS` and `AR`; sets `CFLAGS` and `CXXFLAGS`; sets a `sysroot` so Android heade… 144 …ONFIG_PATH` is exported. `PKG_CONFIG_PATH` is the userland equivalent to sysroot, and allows Autot… 185 …et, the OpenSSL triplet, the toolchain path, the tool variables, and the sysroot. The discussion b… 221 …s like `CC`, `CXX`, `AS` and `AR`; sets `CFLAGS` and `CXXFLAGS`; sets a `sysroot` so iOS headers a… 246 `PKG_CONFIG_PATH` is an important variable. It is the userland equivalent to sysroot, and allows Au…
|
| /src/contrib/ldns/ |
| H A D | README-Travis.md | 65 …et, the OpenSSL triplet, the toolchain path, the tool variables, and the sysroot. The discussion b… 116 …s like `CC`, `CXX`, `AS` and `AR`; sets `CFLAGS` and `CXXFLAGS`; sets a `sysroot` so Android heade… 142 `PKG_CONFIG_PATH` is an important variable. It is the userland equivalent to sysroot, and allows Au… 183 …et, the OpenSSL triplet, the toolchain path, the tool variables, and the sysroot. The discussion b… 219 …s like `CC`, `CXX`, `AS` and `AR`; sets `CFLAGS` and `CXXFLAGS`; sets a `sysroot` so iOS headers a… 244 `PKG_CONFIG_PATH` is an important variable. It is the userland equivalent to sysroot, and allows Au…
|
| /src/contrib/llvm-project/lldb/source/API/ |
| H A D | SBPlatform.cpp | 492 void SBPlatform::SetSDKRoot(const char *sysroot) { in SetSDKRoot() argument 493 LLDB_INSTRUMENT_VA(this, sysroot); in SetSDKRoot() 495 platform_sp->SetSDKRootDirectory(llvm::StringRef(sysroot).str()); in SetSDKRoot()
|
| H A D | SBDebugger.cpp | 1531 bool SBDebugger::SetCurrentPlatformSDKRoot(const char *sysroot) { in SetCurrentPlatformSDKRoot() argument 1532 LLDB_INSTRUMENT_VA(this, sysroot); in SetCurrentPlatformSDKRoot() 1535 platform.SetSDKRoot(sysroot); in SetCurrentPlatformSDKRoot()
|
| /src/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBPlatform.h | 144 void SetSDKRoot(const char *sysroot);
|
| H A D | SBDebugger.h | 295 bool SetCurrentPlatformSDKRoot(const char *sysroot);
|
| /src/contrib/bmake/mk/ |
| H A D | rust.mk | 118 RUST_CARGO_CLIPPY_ENV += RUSTC_SYSROOT=${${RUSTC} --print sysroot:L:sh}
|
| /src/contrib/llvm-project/lld/ELF/ |
| H A D | ScriptParser.cpp | 53 if (config->sysroot == "") in ScriptParser() 57 if (!sys::fs::equivalent(config->sysroot, path)) in ScriptParser() 321 StringRef path = (config->sysroot + s).toStringRef(pathData); in addFile() 325 setError("cannot find " + s + " inside " + config->sysroot); in addFile() 334 if (config->sysroot.empty()) in addFile() 337 ctx.driver.addFile(saver().save(config->sysroot + "/" + s.substr(1)), in addFile()
|
| H A D | DriverUtils.cpp | 217 path::append(s, config->sysroot, path1.substr(1), path2); in findFile()
|
| /src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangModulesDeclVendor.cpp | 305 auto sysroot_begin = llvm::sys::path::begin(module.sysroot.GetStringRef()); in AddModule() 306 auto sysroot_end = llvm::sys::path::end(module.sysroot.GetStringRef()); in AddModule()
|
| /src/crypto/libecc/ |
| H A D | common.mk | 20 SYS_ROOT := --sysroot=$(SYS_ROOT_PATH)
|
| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticDriverKinds.td | 477 def warn_missing_sysroot : Warning<"no such sysroot directory: '%0'">, 478 InGroup<DiagGroup<"missing-sysroot">>; 479 def warn_incompatible_sysroot : Warning<"using sysroot for '%0' but targeting '%1'">, 480 InGroup<DiagGroup<"incompatible-sysroot">>; 672 def err_missing_sysroot : Error<"no such sysroot directory: '%0'">;
|