File: build.rs

package info (click to toggle)
rust-delog 0.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 260 kB
  • sloc: makefile: 17
file content (13 lines) | stat: -rw-r--r-- 365 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
// use std::env;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // println!("cargo:rerun-if-changed=build.rs");

    // let target = env::var("TARGET")?;
    // let cortex_m_dsp = target.starts_with("thumbv7em") || target.starts_with("thumbv8m.main");
    // if cortex_m_dsp {
    //     println!("cargo:rustc-cfg=cortex_m_dsp");
    // }

    Ok(())
}