3 Star 10 Fork 3

洛佳/hi38x1-pac

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.rs 519 Bytes
一键复制 编辑 原始数据 按行查看 历史
洛佳 提交于 2021-10-10 19:50 . Regenerate with svd2rust 0.19
use std::env;
use std::fs::File;
use std::io::Write;
use std::path::PathBuf;
fn main() {
if env::var_os("CARGO_FEATURE_RT").is_some() {
let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
File::create(out.join("device.x"))
.unwrap()
.write_all(include_bytes!("device.x"))
.unwrap();
println!("cargo:rustc-link-search={}", out.display());
println!("cargo:rerun-if-changed=device.x");
}
println!("cargo:rerun-if-changed=build.rs");
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/luojia65/hi38x1-pac.git
[email protected]:luojia65/hi38x1-pac.git
luojia65
hi38x1-pac
hi38x1-pac
master

搜索帮助