Your ROOT_URL in app.ini is https://bdgit.educoder.net/ but you are visiting http://bdgit.educoder.net/rcore_test/rCore-Tutorial-v3-tests/src/commit/e7f120bab3f6df2ba371cca875170b2f64dda489/os/build.rs You should set ROOT_URL correctly, otherwise the web may not work correctly.
rCore-Tutorial-v3-tests/os/build.rs

7 lines
205 B

static TARGET_PATH: &str = "../user/target/riscv64gc-unknown-none-elf/release/";
fn main() {
println!("cargo:rerun-if-changed=../user/src/");
println!("cargo:rerun-if-changed={}", TARGET_PATH);
}