1 Star 3 Fork 0

洛佳/HiHope Hi3861 Example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.rs 430 Bytes
一键复制 编辑 原始数据 按行查看 历史
洛佳 提交于 2021-01-09 10:31 . 初始化仓库
use std::{env, fs};
use std::path::PathBuf;
use std::io::Write;
fn main() {
// Put the linker script somewhere the linker can find it
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
println!("cargo:rustc-link-search={}", out_dir.display());
fs::File::create(out_dir.join("memory.x")).unwrap()
.write_all(include_bytes!("memory.x")).unwrap();
println!("cargo:rerun-if-changed=memory.x");
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luojia65/hihope-hi3861-example.git
git@gitee.com:luojia65/hihope-hi3861-example.git
luojia65
hihope-hi3861-example
HiHope Hi3861 Example
main

搜索帮助