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/a3f9b5fea9e8a860763755e79f149d75580c1dce/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);
}