Triple

Sets CPU Operating System, and optionally C/C++ runtime environment from the given triple e.g. x86_64+avx2-apple-darwin20.3.0 x86-unknown-linux-musl-clang x64-windows-msvc x64-pc-windows-msvc

struct Triple {
CPU cpu;
bool is64bit;
bool isLP64;
Target.OS os;
ubyte osMajor;
TargetC.Runtime cenv;
TargetCPP.Runtime cppenv;
}

Meta