Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
8f271f9
update config of git
foxg1ove1 Sep 29, 2025
ed5cd4c
新建rust项目架构,包括项目编译脚本、config配置以及rust编译配置
foxg1ove1 Sep 29, 2025
76110e8
增加新模块,包括string、memory和thread等实现
foxg1ove1 Sep 29, 2025
e7b9b67
补充配置文件
foxg1ove1 Sep 29, 2025
684ebd2
新增动态加载模块
foxg1ove1 Sep 29, 2025
7884895
动态加载模块
foxg1ove1 Sep 29, 2025
6ed3785
完善脚本和文档说明
foxg1ove1 Sep 30, 2025
aafa522
email填写
foxg1ove1 Sep 30, 2025
ea6ea82
不重要的修改
foxg1ove1 Sep 30, 2025
55c0dd4
补全基本接口
foxg1ove1 Oct 10, 2025
1d21348
Fix compilation errors in dlmodule_demo.rs
foxg1ove1 Oct 11, 2025
42e3b4a
更成熟的libload封装,同时添加了bench测试
foxg1ove1 Oct 15, 2025
4703ab5
修改了项目结构,增加了macro-main便于用户使用
foxg1ove1 Oct 19, 2025
bdd34b0
恢复RT-Thread config配置
foxg1ove1 Oct 19, 2025
c9f068b
删去不使用的函数
foxg1ove1 Oct 19, 2025
7bac9b3
rust debug模式
foxg1ove1 Oct 19, 2025
a016a8b
删去不必要的代码
foxg1ove1 Oct 19, 2025
83f236f
重命名rust库
foxg1ove1 Oct 21, 2025
e8da6e2
设置.gitignore
foxg1ove1 Oct 21, 2025
d449a40
修复了一些线程的bug
foxg1ove1 Oct 21, 2025
090c74d
添加macro-main注册组件功能,并使用logging测试
foxg1ove1 Oct 22, 2025
3bca57d
删除不需要的文件
foxg1ove1 Oct 22, 2025
7315a3b
完善macro-main
foxg1ove1 Oct 22, 2025
737ac0b
增加文件操作
foxg1ove1 Oct 22, 2025
74c4386
增加macro-main说明
foxg1ove1 Oct 23, 2025
a1a7234
增加日志组件测试,分离应用与组件
foxg1ove1 Oct 24, 2025
c34ea9e
改变组件注册方式
foxg1ove1 Oct 24, 2025
b4355aa
配置.gitignore
foxg1ove1 Oct 25, 2025
3fd0715
恢复初始配置
foxg1ove1 Oct 25, 2025
8da8444
解决合并冲突:保留 Kconfig 文件
foxg1ove1 Oct 25, 2025
97aac92
恢复applications
foxg1ove1 Oct 25, 2025
f2b7230
恢复./gitmodules
foxg1ove1 Oct 25, 2025
140278e
配置 .gitignore:忽略 .config, Kconfig, link.lds, rtconfig.h, rtconfig.py
foxg1ove1 Oct 27, 2025
989d3b1
./gitignore Kconfig
foxg1ove1 Oct 27, 2025
82b549d
集成examples
foxg1ove1 Oct 29, 2025
dc04dae
解耦合过程宏,分解各种功能的rust形式export
foxg1ove1 Oct 29, 2025
2eb6fd2
Remove rust-analyzer temporary files and update .gitignore
foxg1ove1 Oct 29, 2025
d39848b
重命名core组件
foxg1ove1 Oct 29, 2025
e75bcf6
修复小bug、注释
foxg1ove1 Oct 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions machines/qemu-virt-riscv64/.config
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ CONFIG_RT_USING_SERIAL_V1=y
# CONFIG_RT_USING_SERIAL_V2 is not set
CONFIG_RT_SERIAL_USING_DMA=y
CONFIG_RT_SERIAL_RB_BUFSZ=64
# CONFIG_RT_USING_SERIAL_BYPASS is not set
CONFIG_RT_USING_SERIAL_BYPASS=y
# CONFIG_RT_USING_CAN is not set
CONFIG_RT_USING_CPUTIME=y
CONFIG_RT_USING_CPUTIME_RISCV=y
Expand Down Expand Up @@ -376,7 +376,8 @@ CONFIG_RT_USING_POSIX_DELAY=y
CONFIG_RT_USING_POSIX_CLOCK=y
CONFIG_RT_USING_POSIX_TIMER=y
# CONFIG_RT_USING_PTHREADS is not set
# CONFIG_RT_USING_MODULE is not set
CONFIG_RT_USING_MODULE=y
# CONFIG_RT_USING_CUSTOM_DLMODULE is not set

#
# Interprocess Communication (IPC)
Expand Down Expand Up @@ -1597,14 +1598,13 @@ CONFIG_RT_USING_RUST=y
# CONFIG_RUST_DEBUG_BUILD is not set
CONFIG_RUST_EXAMPLE_HELLO=y
CONFIG_RUST_EXAMPLE_MEMORY=y
CONFIG_RUST_EXAMPLE_STRING=y
CONFIG_RUST_EXAMPLE_PRINTF=y
CONFIG_RUST_EXAMPLE_THREAD=y
CONFIG_RUST_EXAMPLE_MUTEX=y
CONFIG_RUST_EXAMPLE_SEM=y
CONFIG_RUST_EXAMPLE_MQ=y
CONFIG_RUST_EXAMPLE_VEC=y
CONFIG_RUST_EXAMPLE_DL=y
# CONFIG_RUST_BENCH_TEST is not set
CONFIG_RUST_INIT_COMPONENT=y
CONFIG_BOARD_QEMU_VIRT_RV64=y
CONFIG_ENABLE_FPU=y
Expand Down
19 changes: 19 additions & 0 deletions machines/qemu-virt-riscv64/applications/c_bench.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// #include <stdio.h>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

多看看RT-Thread的编程规范,不应该有这样都是注释掉的代码的,需要遵循对应的风格:

  • 简洁,代码清晰;
  • 代码上不多一行代码,不少一行代码;

// #include <unistd.h>
// #include <sys/time.h>
// #include <rtthread.h>
// #include <rtdbg.h>

// int c_bench(void) {
// struct timeval tv_begin, tv_end;
// gettimeofday(&tv_begin,NULL);
// for (int i = 0; i < 1; i++) {
// rt_kprintf("C program: Hello world! %d\n", i);
// }
// gettimeofday(&tv_end,NULL);
// double milisecs = (tv_end.tv_sec - tv_begin.tv_sec) * 1000.0 + (tv_end.tv_usec - tv_begin.tv_usec) / 1000.0;
// rt_kprintf("Time: %fms\n", milisecs);
// return 0;
// }

// INIT_ENV_EXPORT(c_bench);
Binary file added machines/qemu-virt-riscv64/libmylib.mo
Binary file not shown.
6 changes: 6 additions & 0 deletions machines/qemu-virt-riscv64/link.lds
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ SECTIONS
KEEP(*(UtestTcTab))
__rt_utest_tc_tab_end = .;

/* section information for modules */
. = ALIGN(8); /* for 64-bit system use 8-byte alignment */
__rtmsymtab_start = .;
KEEP(*(RTMSymTab))
__rtmsymtab_end = .;

. = ALIGN(8);
_etext = .;
} > SRAM
Expand Down
15 changes: 15 additions & 0 deletions machines/qemu-virt-riscv64/mylib/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[build]
target = "riscv64gc-unknown-linux-gnu"

[unstable]
build-std = ["core", "alloc", "panic_abort"]

[target.riscv64gc-unknown-linux-gnu]
linker = "ld.lld"
rustflags = [
"-C", "link-arg=-m", "-C", "link-arg=elf64lriscv",
"-C", "link-arg=-L/usr/riscv64-linux-gnu/lib",
"-C", "link-arg=-L/usr/lib/riscv64-linux-gnu",
"-C", "link-arg=-L/usr/lib/gcc-cross/riscv64-linux-gnu/9",
"-C", "panic=abort"
]
14 changes: 14 additions & 0 deletions machines/qemu-virt-riscv64/mylib/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions machines/qemu-virt-riscv64/mylib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "mylib"
version = "0.1.0"
edition = "2024"

[lib]
crate-type = ["cdylib"]

[dependencies]
rt-rust = { path = "../rust" }
21 changes: 21 additions & 0 deletions machines/qemu-virt-riscv64/mylib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#![no_std]
// Bring rt-rust's println! macro into scope
use rt_rust::println;
use core::ffi::{c_char, CStr};
#[unsafe(no_mangle)]
pub extern "C" fn rust_mylib_println(s: *const c_char) {
if s.is_null() {
println!("");
} else {
let cs = unsafe {CStr::from_ptr(s)};
match cs.to_str() {
Ok(msg) => println!("{}", msg),
Err(_) => println!("[invalid UTF-8]"),
}
}
}

#[unsafe(no_mangle)]
pub extern "C" fn rust_mylib_add(a: usize, b: usize) -> usize {
a + b
}
1 change: 1 addition & 0 deletions machines/qemu-virt-riscv64/mylib/target/.rustc_info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc_fingerprint":4312154744837725510,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.90.0-nightly (4b55fe199 2025-08-01)\nbinary: rustc\ncommit-hash: 4b55fe199cfe9c710555a5af7f2a49491ad38254\ncommit-date: 2025-08-01\nhost: x86_64-unknown-linux-gnu\nrelease: 1.90.0-nightly\nLLVM version: 20.1.8\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/fox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\nfmt_debug=\"full\"\noverflow_checks\npanic=\"unwind\"\nproc_macro\nrelocation_model=\"pic\"\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"x87\"\ntarget_has_atomic\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_has_reliable_f128\ntarget_has_reliable_f16\ntarget_has_reliable_f16_math\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"unknown\"\nub_checks\nunix\n","stderr":""},"1001216461566314707":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/fox/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu\noff\n___\ndebug_assertions\nfmt_debug=\"full\"\noverflow_checks\npanic=\"abort\"\nproc_macro\nrelocation_model=\"pic\"\ntarget_abi=\"\"\ntarget_arch=\"riscv64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"a\"\ntarget_feature=\"c\"\ntarget_feature=\"d\"\ntarget_feature=\"f\"\ntarget_feature=\"m\"\ntarget_feature=\"zaamo\"\ntarget_feature=\"zalrsc\"\ntarget_feature=\"zicsr\"\ntarget_feature=\"zifencei\"\ntarget_has_atomic\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_has_reliable_f128\ntarget_has_reliable_f128_math\ntarget_has_reliable_f16\ntarget_has_reliable_f16_math\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"unknown\"\nub_checks\nunix\n","stderr":""}},"successes":{}}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

请仔细查看提及的PR,不多一个文件,不少一个文件。这样杂乱无章的代码提交,也是不可能进行合并的。

3 changes: 3 additions & 0 deletions machines/qemu-virt-riscv64/mylib/target/CACHEDIR.TAG
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a7bf755ff0156e65
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":7628920048581603178,"features":"[\"compiler-builtins\", \"default\", \"rustc-dep-of-std\"]","declared_features":"[\"c\", \"compiler-builtins\", \"default\", \"mangled-names\", \"mem\", \"no-asm\", \"no-f16-f128\", \"rustc-dep-of-std\", \"unstable-public-internals\"]","target":2835126046236718539,"profile":15657897354478470176,"path":13989293095081808934,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/compiler_builtins-f75e27500c4d3ab7/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
c9a60cacad0e49a8
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":7628920048581603178,"features":"[\"compiler-builtins\", \"default\", \"rustc-dep-of-std\"]","declared_features":"[\"c\", \"compiler-builtins\", \"default\", \"mangled-names\", \"mem\", \"no-asm\", \"no-f16-f128\", \"rustc-dep-of-std\", \"unstable-public-internals\"]","target":2835126046236718539,"profile":1369601567987815722,"path":13989293095081808934,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/compiler_builtins-22f0dda3a1e420de/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{"$message_type":"diagnostic","message":"cannot find macro `println` in this scope","code":null,"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":307,"byte_end":314,"line_start":20,"line_end":20,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" println!(\"Hello\");","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`println` is in scope, but it is a function, not a macro","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: cannot find macro `println` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:20:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m20\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m println!(\"Hello\");\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `println` is in scope, but it is a function, not a macro\u001b[0m\n\n"}
{"$message_type":"diagnostic","message":"cannot find macro `println` in this scope","code":null,"level":"error","spans":[{"file_name":"src/lib.rs","byte_start":161,"byte_end":168,"line_start":12,"line_end":12,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" println!(\"{}\", str);","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`println` is in scope, but it is a function, not a macro","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: cannot find macro `println` in this scope\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m--> \u001b[0m\u001b[0msrc/lib.rs:12:5\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m\u001b[1m\u001b[38;5;12m12\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m println!(\"{}\", str);\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;9m^^^^^^^\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: `println` is in scope, but it is a function, not a macro\u001b[0m\n\n"}
{"$message_type":"diagnostic","message":"unwinding panics are not supported without std","code":null,"level":"error","spans":[],"children":[{"message":"using nightly cargo, use -Zbuild-std with panic=\"abort\" to avoid unwinding","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"since the core library is usually precompiled with panic=\"unwind\", rebuilding your crate with panic=\"abort\" may not be enough to fix the problem","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: unwinding panics are not supported without std\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: using nightly cargo, use -Zbuild-std with panic=\"abort\" to avoid unwinding\u001b[0m\n\u001b[0m \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: since the core library is usually precompiled with panic=\"unwind\", rebuilding your crate with panic=\"abort\" may not be enough to fix the problem\u001b[0m\n\n"}
{"$message_type":"diagnostic","message":"aborting due to 3 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to 3 previous errors\u001b[0m\n\n"}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
697b6160a9d63f69
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":7628920048581603178,"features":"[]","declared_features":"[\"compiler-builtins-c\", \"compiler-builtins-mem\", \"compiler-builtins-no-f16-f128\", \"optimize_for_size\", \"panic_immediate_abort\"]","target":6929803986002091161,"profile":6035593568602929990,"path":10948785451086920852,"deps":[[5283411439217056619,"core",true,2044301170296886851],[7648903741785607723,"compiler_builtins",false,6773452506858683013]],"local":[{"CheckDepInfo":{"dep_info":"riscv64gc-unknown-linux-gnu/debug/.fingerprint/alloc-985c17cdc0ba9b87/dep-lib-alloc","checksum":false}}],"rustflags":["-C","link-arg=-m","-C","link-arg=elf64lriscv","-C","link-arg=-L/usr/riscv64-linux-gnu/lib","-C","link-arg=-L/usr/lib/riscv64-linux-gnu","-C","link-arg=-L/usr/lib/gcc-cross/riscv64-linux-gnu/9","-C","panic=abort"],"config":3665096432609907033,"compile_kind":13748030006194427100}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7e91c97990b04f2c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":7628920048581603178,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7648903741785607723,"build_script_build",false,7308803367406780327]],"local":[{"RerunIfChanged":{"output":"riscv64gc-unknown-linux-gnu/debug/build/compiler_builtins-27fc30a1e90ac345/output","paths":["build.rs","configure.rs"]}}],"rustflags":["-C","link-arg=-m","-C","link-arg=elf64lriscv","-C","link-arg=-L/usr/riscv64-linux-gnu/lib","-C","link-arg=-L/usr/lib/riscv64-linux-gnu","-C","link-arg=-L/usr/lib/gcc-cross/riscv64-linux-gnu/9","-C","panic=abort"],"config":0,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
857a4aee2a23005e
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":7628920048581603178,"features":"[\"compiler-builtins\", \"default\", \"rustc-dep-of-std\"]","declared_features":"[\"c\", \"compiler-builtins\", \"default\", \"mangled-names\", \"mem\", \"no-asm\", \"no-f16-f128\", \"rustc-dep-of-std\", \"unstable-public-internals\"]","target":1068147373018612207,"profile":15657897354478470176,"path":8021351705334635625,"deps":[[5283411439217056619,"core",false,2044301170296886851],[7648903741785607723,"build_script_build",false,3192964795394003326]],"local":[{"CheckDepInfo":{"dep_info":"riscv64gc-unknown-linux-gnu/debug/.fingerprint/compiler_builtins-bbf205eee99dac91/dep-lib-compiler_builtins","checksum":false}}],"rustflags":["-C","link-arg=-m","-C","link-arg=elf64lriscv","-C","link-arg=-L/usr/riscv64-linux-gnu/lib","-C","link-arg=-L/usr/lib/riscv64-linux-gnu","-C","link-arg=-L/usr/lib/gcc-cross/riscv64-linux-gnu/9","-C","panic=abort"],"config":3665096432609907033,"compile_kind":13748030006194427100}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4316764d15d15e1c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":7628920048581603178,"features":"[]","declared_features":"[\"debug_refcell\", \"optimize_for_size\", \"panic_immediate_abort\"]","target":10807187676209248784,"profile":8132042427338545879,"path":16434527020528193797,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"riscv64gc-unknown-linux-gnu/debug/.fingerprint/core-168e72ef489079f9/dep-lib-core","checksum":false}}],"rustflags":["-C","link-arg=-m","-C","link-arg=elf64lriscv","-C","link-arg=-L/usr/riscv64-linux-gnu/lib","-C","link-arg=-L/usr/lib/riscv64-linux-gnu","-C","link-arg=-L/usr/lib/gcc-cross/riscv64-linux-gnu/9","-C","panic=abort"],"config":3665096432609907033,"compile_kind":13748030006194427100}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Loading