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