You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rCore_stu/ch2/user/src/lib.rs

8 lines
192 B
Rust

#![no_std]
#![feature(linkage)] // 开启弱链接特性
#[linkage = "weak"] // 设置我们默认的main函数, 弱链接
#[no_mangle]
fn main() -> i32 {
panic!("Cannot find main!");
}