| /freebsd-src/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"; 82 $sysroot = "@platforms[$#platforms]/arch-$arch"; 83 $sysroot =~ m|/android-([0-9]+)/arch-$arch|; 99 die "no sysroot=$sysroot" if (length $sysroot && !-d $sysroot); 112 if (length $sysroot) { 148 if (length $sysroot) { 149 if (!-d "$sysroot/usr/include") { [all …]
|
| /freebsd-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 …]
|
| /freebsd-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
|
| /freebsd-src/share/mk/ |
| H A D | local.init.mk | 17 CFLAGS_LAST+= --sysroot=${SYSROOT} 18 CXXFLAGS_LAST+= --sysroot=${SYSROOT} 19 LDADD+= --sysroot=${SYSROOT}
|
| /freebsd-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
|
| /freebsd-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()
|
| /freebsd-src/tools/build/options/ |
| H A D | WITH_SYSROOT | 1 Enable use of sysroot during build.
|
| /freebsd-src/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | SourceModule.h | 22 ConstString sysroot; member
|
| /freebsd-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()
|
| /freebsd-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…
|
| /freebsd-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…
|
| /freebsd-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()
|
| /freebsd-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);
|
| /freebsd-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() 138 // True if a script being read is in the --sysroot directory. 321 StringRef path = (config->sysroot + s).toStringRef(pathData); in addFile() 325 setError("cannot find " + s + " inside " + config->sysroot); in addFile() 333 // Case 2: relative to the 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 | 212 // starts with "=", the character is replaced with a --sysroot value. in findFile() 217 path::append(s, config->sysroot, path1.substr(1), path2); in findFile()
|
| H A D | Config.h | 185 llvm::StringRef sysroot; 182 llvm::StringRef sysroot; global() member
|
| /freebsd-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() 311 // No need to inject search paths to modules in the sysroot. in AddModule()
|
| /freebsd-src/contrib/llvm-project/lldb/source/Core/ |
| H A D | Module.cpp | 1558 llvm::StringRef sysroot) { in RemapSourceFile() 1573 if (!m_source_mappings.Replace(sysroot, sdk_path, true)) in RegisterXcodeSDK() 1575 m_source_mappings.Append(sysroot, sdk_path, false); in RegisterXcodeSDK() 1561 RegisterXcodeSDK(llvm::StringRef sdk_name,llvm::StringRef sysroot) RegisterXcodeSDK() argument
|
| /freebsd-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'">;
|
| /freebsd-src/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Module.h | 499 void RegisterXcodeSDK(llvm::StringRef sdk, llvm::StringRef sysroot);
|