Home
last modified time | relevance | path

Searched refs:SDK (Results 1 – 25 of 63) sorted by relevance

123

/freebsd/sys/contrib/libsodium/dist-build/
H A Dios.sh28 export SDK="${BASEDIR}/SDKs/iPhoneSimulator.sdk"
31 export CFLAGS="-O2 -arch i386 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_…
32 export LDFLAGS="-arch i386 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_MIN…
54 export CFLAGS="-O2 -arch x86_64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSIO…
55 export LDFLAGS="-arch x86_64 -isysroot ${SDK} -mios-simulator-version-min=${IOS_SIMULATOR_VERSION_M…
69 export SDK="${BASEDIR}/SDKs/iPhoneOS.sdk"
72 export CFLAGS="-fembed-bitcode -O2 -mthumb -arch armv7 -isysroot ${SDK} -mios-version-min=${IOS_VER…
73 export LDFLAGS="-fembed-bitcode -mthumb -arch armv7 -isysroot ${SDK} -mios-version-min=${IOS_VERSIO…
85 export CFLAGS="-fembed-bitcode -O2 -mthumb -arch armv7s -isysroot ${SDK} -mios-version-min=${IOS_VE…
86 export LDFLAGS="-fembed-bitcode -mthumb -arch armv7s -isysroot ${SDK} -mios-version-min=${IOS_VERSI…
[all …]
/freebsd/contrib/libfido2/windows/
H A Drelease.ps111 $SDK = '143' variable
24 "${OUTPUT}/pkg/${InstallPrefix}/${Config}/v${SDK}/${Type}"
54 Copy-Item "${SRC}\${LIBCBOR}\src\cbor.dir\${Config}\vc${SDK}.pdb" ` in Package-PDBs()
56 Copy-Item "${SRC}\${ZLIB}\zlib.dir\${Config}\vc${SDK}.pdb" ` in Package-PDBs()
58 Copy-Item "${SRC}\src\fido2_shared.dir\${Config}\vc${SDK}.pdb" ` in Package-PDBs()
88 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
90 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
92 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\dynamic"
94 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\static"
96 "${OUTPUT}\pkg\${InstallPrefix}\${Config}\v${SDK}\static"
/freebsd/contrib/libpcap/doc/
H A DREADME.windows.md14 Npcap and WinPcap SDK
18 software development kit (SDK) or WinPcap and its software development
29 Npcap and its SDK can be downloaded from its home page:
33 The SDK is a ZIP archive; create a folder on your C: drive, e.g.
134 the Npcap or WinPcap SDK is installed.
146 WinPcap SDK. Note that backslashes in the path must be specified as two
159 the Npcap or WinPcap SDK is installed.
168 the directory containing the Npcap or WinPcap SDK or use the "Browse..."
191 WinPcap SDK and {path-to-libpcap-source} is the pathname of the
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DDarwin.cpp1368 StringRef SDK = *IT; in getSDKName() local
1369 if (SDK.ends_with(".sdk")) in getSDKName()
1370 return SDK.slice(0, SDK.size() - 4); in getSDKName()
1998 StringRef SDK = Darwin::getSDKName(isysroot); in inferDeploymentTargetFromSDK() local
1999 if (!SDK.size()) in inferDeploymentTargetFromSDK()
2009 size_t StartVer = SDK.find_first_of("0123456789"); in inferDeploymentTargetFromSDK()
2010 size_t EndVer = SDK.find_last_of("0123456789"); in inferDeploymentTargetFromSDK()
2012 Version = std::string(SDK.slice(StartVer, EndVer + 1)); in inferDeploymentTargetFromSDK()
2018 [&](StringRef SDK) -> std::optional<DarwinPlatform> { in inferDeploymentTargetFromSDK() argument
2019 if (SDK.starts_with("iPhoneOS") || SDK.starts_with("iPhoneSimulator")) in inferDeploymentTargetFromSDK()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h774 getVersionMinMajor(MachO::version_min_command &C, bool SDK) { in getVersionMinMajor() argument
775 uint32_t VersionOrSDK = (SDK) ? C.sdk : C.version; in getVersionMinMajor()
780 getVersionMinMinor(MachO::version_min_command &C, bool SDK) { in getVersionMinMinor() argument
781 uint32_t VersionOrSDK = (SDK) ? C.sdk : C.version; in getVersionMinMinor()
786 getVersionMinUpdate(MachO::version_min_command &C, bool SDK) { in getVersionMinUpdate() argument
787 uint32_t VersionOrSDK = (SDK) ? C.sdk : C.version; in getVersionMinUpdate()
/freebsd/contrib/file/magic/Magdir/
H A Dsharc14 # SHARC DSP stuff (based on the FGM SHARC DSP SDK)
H A Dplaydate10 # The SDK is a source for many test files, and can be used to
H A Danimation1226 >4 byte 0 \b, SDK version invalid/unknown (%d)
1227 >4 byte 1 \b, SDK version 3.0.00 - 3.2.07 (%d)
1228 >4 byte 2 \b, SDK version 3.3.00 - 3.3.03 (%d)
1229 >4 byte 3 \b, SDK version 4.0.00 - 4.1.05 (%d)
1230 >4 byte 4 \b, SDK version 4.2.00 - 4.2.02 (%d)
1231 >4 byte 5 \b, SDK version 5.0.00 (%d)
1232 >4 byte >5 \b, SDK version unknown (%d)
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOPlatform.h65 fromTriple(const Triple &TT, uint32_t MinOS, uint32_t SDK);
69 uint32_t SDK; // X.Y.Z is encoded in nibbles xxxx.yy.zz member
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp868 W.printString("SDK", MachOObjectFile::getVersionString(BVC.sdk)); in printMachOVersionMin()
870 W.printString("SDK", StringRef("n/a")); in printMachOVersionMin()
884 SmallString<32> SDK; in printMachOVersionMin()
886 SDK = "n/a"; in printMachOVersionMin()
888 SDK = utostr(MachOObjectFile::getVersionMinMajor(VMC, true)) + "." + in printMachOVersionMin()
892 SDK += "." + utostr(MachOObjectFile::getVersionMinUpdate(VMC, true)); in printMachOVersionMin()
894 W.printString("SDK", SDK); in printMachOVersionMin()
882 SmallString<32> SDK; printMachOVersionMin() local
/freebsd/contrib/unbound/
H A DREADME-Travis.md69 … several reasons. The testing requires installation of the Android NDK and SDK, it requires a cros…
94 …OOT` and `ANDROID_SDK_ROOT`. This is an important step because the NDK and SDK use the variables i…
114SDK. This step is handled in by the script `contrib/android/install_ndk.sh`. The script uses `ANDR…
116 If you are working from a developer machine you probably already have a NDK and SDK installed.
/freebsd/contrib/ldns/
H A DREADME-Travis.md65 … several reasons. The testing requires installation of the Android NDK and SDK, it requires a cros…
90 …OOT` and `ANDROID_SDK_ROOT`. This is an important step because the NDK and SDK use the variables i…
110SDK. This step is handled in by the script `contrib/android/install_ndk.sh`. The script uses `ANDR…
112 If you are working from a developer machine you probably already have a NDK and SDK installed.
/freebsd/contrib/sqlite3/
H A DREADME.txt91 Building for the Windows 10 SDK
/freebsd/contrib/llvm-project/libcxx/modules/
H A Dstd.compat.cppm.in52 // alone doesn't work on Windows because the Windows SDK is on the include path,
H A Dstd.cppm.in174 // alone doesn't work on Windows because the Windows SDK is on the include path,
/freebsd/contrib/llvm-project/lld/COFF/
H A DOptions.td44 def diasdkdir : P<"diasdkdir", "Set the location of the DIA SDK">;
109 def winsdkdir : P<"winsdkdir", "Set the location of the Windows SDK">;
110 def winsdkversion : P<"winsdkversion", "Specify which SDK version to use">;
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/aarch64/fmv/
H A Dapple.inc9 // FB13964283 - A few of these didn't make it into the public SDK yet.
/freebsd/crypto/libecc/
H A Dcommon.mk21 $(info Using MacOS SDK $(SYS_ROOT_PATH))
/freebsd/contrib/wpa/wpa_supplicant/
H A Dnmake.mak5 # Note: Make sure that cl.exe is configured to include Platform SDK
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DREADME.txt19 wasi-sdk provides a more minimal C/C++ SDK based on clang, llvm and a libc based
/freebsd/contrib/ncurses/
H A DREADME.MinGW51 required Windows SDK level. Please note that some of the Linux distributions
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h1486 StringRef SDK, StorageType Storage, bool ShouldCreate = true) {
1495 getCanonicalMDString(Context, SDK), Storage, ShouldCreate);
1505 bool RangesBaseAddress, MDString *SysRoot, MDString *SDK,
1532 StringRef SysRoot, StringRef SDK),
1537 SysRoot, SDK))
1547 MDString *SDK),
1551 DebugInfoForProfiling, NameTableKind, RangesBaseAddress, SysRoot, SDK))
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp264 uint32_t SDK) { in fromTriple() argument
291 return MachOPlatform::HeaderOptions::BuildVersionOpts{Platform, MinOS, SDK}; in fromTriple()
1746 BV.Platform, BV.MinOS, BV.SDK, static_cast<uint32_t>(0)); in createHeaderBlock()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h306 const char *SDK, size_t SDKLen);
/freebsd/tools/build/
H A DMakefile35 .error You must install the macOS SDK (try xcode-select --install)

123