/freebsd/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/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/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/share/mk/ |
H A D | local.init.mk | 17 CFLAGS_LAST+= --sysroot=${SYSROOT} 18 CXXFLAGS_LAST+= --sysroot=${SYSROOT} 19 LDADD+= --sysroot=${SYSROOT}
|
/freebsd/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/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/ |
H A D | PlatformQemuUser.cpp | 203 if (const std::string &sysroot = GetSDKRootDirectory(); !sysroot.empty()) in DebugProcess() 204 emulator_env["QEMU_LD_PREFIX"] = sysroot; in DebugProcess() 194 if (const std::string &sysroot = GetSDKRootDirectory(); !sysroot.empty()) DebugProcess() local
|
/freebsd/tools/build/options/ |
H A D | WITH_SYSROOT | 1 Enable use of sysroot during build.
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | SourceModule.h | 22 ConstString sysroot; member
|
/freebsd/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/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/contrib/llvm-project/lldb/source/API/ |
H A D | SBPlatform.cpp | 492 void SBPlatform::SetSDKRoot(const char *sysroot) { in SetSDKRoot() 493 LLDB_INSTRUMENT_VA(this, sysroot); in SetSDKRoot() 495 platform_sp->SetSDKRootDirectory(llvm::StringRef(sysroot).str()); in Get() 489 SetSDKRoot(const char * sysroot) SetSDKRoot() argument
|
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/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/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()
|
H A D | Config.h | 185 llvm::StringRef sysroot; member
|
/freebsd/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()
|
/freebsd/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/contrib/llvm-project/lldb/source/Core/ |
H A D | Module.cpp | 1558 llvm::StringRef sysroot) { in RegisterXcodeSDK() argument 1573 if (!m_source_mappings.Replace(sysroot, sdk_path, true)) in RegisterXcodeSDK() 1575 m_source_mappings.Append(sysroot, sdk_path, false); in RegisterXcodeSDK()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Module.h | 498 /// \param sysroot will be added to the path remapping dictionary. in GetFileSpec() 499 void RegisterXcodeSDK(llvm::StringRef sdk, llvm::StringRef sysroot);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | SymbolFileDWARF.cpp | 1010 const char *sysroot = in ParseXcodeSDK() local 1018 module_sp->RegisterXcodeSDK(sdk, sysroot); in ParseXcodeSDK() 1022 local_module_sp->RegisterXcodeSDK(sdk, sysroot); in ParseXcodeSDK() 1216 if (const char *sysroot = dwarf_cu->DIE().GetAttributeValueAsString( in ParseImportedModules() local 1218 module.sysroot = ConstString(sysroot); in ParseImportedModules()
|