Rust の Triple という用語は LLVM 由来っぽい
rustup の customize 時などで出てくる "host triple" など
clang のしか出てこないけど、まともな文で見れるのはこれ
https://clang.llvm.org/docs/CrossCompilation.html#target-triple
target triple が正式名称?
Doxygen やソース
https://llvm.org/doxygen/classllvm_1_1Triple.html
https://llvm.org/doxygen/Triple_8cpp_source.html
実際の triple (target) list は
rustc --print target-list
で見れる
cargo build
で無効な
--target
を指定すると出るエラーで存在知った
#お役立ち情報