Target Triple - CI/CD Glossary Definition
A target triple is the compiler identifier (e.g. aarch64-apple-darwin) encoding architecture, vendor, operating system, and ABI, which tells a cross-compiling toolchain exactly what to emit.
Related guides
Cross-Compilation - CI/CD Glossary DefinitionCross-compilation builds a binary on one platform to run on another - like compiling ARM64 binaries on an x86…
ABI Compatibility - CI/CD Glossary DefinitionABI compatibility means compiled binaries agree on calling conventions and layouts, so a library can be swapp…
Dynamic Linking - CI/CD Glossary DefinitionDynamic linking resolves library references at load or run time from shared libraries on the system, keeping…