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