tvm-build 0.2.4

A CLI and library for programmatically building TVM.
Documentation
1
2
3
4
5
6
7
8
/// A target for installing TVM, contains all target specific
/// information needed for locating tool chains and running
/// CMake.
pub struct Target {
    pub host: String,
    pub target_str: String,
    pub cmake_defines: Vec<(String, String)>,
}