| /freebsd-14.2/crypto/openssl/Configurations/ |
| H A D | 15-android.conf | 54 my ($sysroot, $api, $arch); 59 if ($sysroot = $ENV{CROSS_SYSROOT}) { 60 $sysroot =~ m|/android-([0-9]+)/arch-(\w+)/?$|; 63 $sysroot = "$ndk/sysroot"; 99 die "no sysroot=$sysroot" if (length $sysroot && !-d $sysroot); 112 if (length $sysroot) { 148 if (length $sysroot) { 149 if (!-d "$sysroot/usr/include") { 158 $sysroot =~ s|^$ndk/||; 159 $sysroot = " --sysroot=\$($ndk_var)/$sysroot"; [all …]
|
| /freebsd-14.2/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 …]
|
| /freebsd-14.2/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
|
| /freebsd-14.2/share/mk/ |
| H A D | local.init.mk | 17 CFLAGS_LAST+= --sysroot=${SYSROOT} 18 CXXFLAGS_LAST+= --sysroot=${SYSROOT} 19 LDADD+= --sysroot=${SYSROOT}
|
| /freebsd-14.2/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
|
| /freebsd-14.2/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()
|
| /freebsd-14.2/tools/build/options/ |
| H A D | WITH_SYSROOT | 1 Enable use of sysroot during build.
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | SourceModule.h | 22 ConstString sysroot; member
|
| /freebsd-14.2/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()
|
| /freebsd-14.2/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…
|
| /freebsd-14.2/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…
|
| /freebsd-14.2/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()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBPlatform.h | 144 void SetSDKRoot(const char *sysroot);
|
| H A D | SBDebugger.h | 292 bool SetCurrentPlatformSDKRoot(const char *sysroot);
|
| /freebsd-14.2/contrib/llvm-project/lld/ELF/ |
| H A D | ScriptParser.cpp | 52 if (config->sysroot == "") in ScriptParser() 56 if (!sys::fs::equivalent(config->sysroot, path)) in ScriptParser() 299 StringRef path = (config->sysroot + s).toStringRef(pathData); in addFile() 303 setError("cannot find " + s + " inside " + config->sysroot); in addFile() 312 if (config->sysroot.empty()) in addFile() 315 ctx.driver.addFile(saver().save(config->sysroot + "/" + s.substr(1)), in addFile()
|
| H A D | DriverUtils.cpp | 216 path::append(s, config->sysroot, path1.substr(1), path2); in findFile()
|
| H A D | Config.h | 182 llvm::StringRef sysroot; member
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangModulesDeclVendor.cpp | 316 auto sysroot_begin = llvm::sys::path::begin(module.sysroot.GetStringRef()); in AddModule() 317 auto sysroot_end = llvm::sys::path::end(module.sysroot.GetStringRef()); in AddModule()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | Module.cpp | 1561 llvm::StringRef sysroot) { in RegisterXcodeSDK() argument 1576 if (!m_source_mappings.Replace(sysroot, sdk_path, true)) in RegisterXcodeSDK() 1578 m_source_mappings.Append(sysroot, sdk_path, false); in RegisterXcodeSDK()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticDriverKinds.td | 456 def warn_missing_sysroot : Warning<"no such sysroot directory: '%0'">, 457 InGroup<DiagGroup<"missing-sysroot">>; 458 def warn_incompatible_sysroot : Warning<"using sysroot for '%0' but targeting '%1'">, 459 InGroup<DiagGroup<"incompatible-sysroot">>;
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Module.h | 499 void RegisterXcodeSDK(llvm::StringRef sdk, llvm::StringRef sysroot);
|