build.rs 2.08 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

20 21 22 23 24
extern crate bindgen;

use std::path::PathBuf;

fn main() {
25
    let tvm_home = option_env!("TVM_HOME").map(str::to_string).unwrap_or({
26
        let crate_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
27 28
            .canonicalize()
            .unwrap();
29
        crate_dir
30 31 32 33 34 35 36 37
            .parent()
            .unwrap()
            .parent()
            .unwrap()
            .to_str()
            .unwrap()
            .to_string()
    });
38 39 40
    if cfg!(feature = "bindings") {
        println!("cargo:rerun-if-env-changed=TVM_HOME");
        println!("cargo:rustc-link-lib=dylib=tvm_runtime");
41
        println!("cargo:rustc-link-search={}/build", tvm_home);
42 43 44 45
    }

    // @see rust-bindgen#550 for `blacklist_type`
    bindgen::Builder::default()
46 47 48
        .header(format!("{}/include/tvm/runtime/c_runtime_api.h", tvm_home))
        .header(format!("{}/include/tvm/runtime/c_backend_api.h", tvm_home))
        .clang_arg(format!("-I{}/3rdparty/dlpack/include/", tvm_home))
49
        .clang_arg(format!("-I{}/include/", tvm_home))
50 51 52 53 54 55 56 57 58
        .blacklist_type("max_align_t")
        .layout_tests(false)
        .derive_partialeq(true)
        .derive_eq(true)
        .generate()
        .expect("unable to generate bindings")
        .write_to_file(PathBuf::from("src/c_runtime_api.rs"))
        .expect("can not write the bindings!");
}