Rust 64位操作系统 这是一个操作系统,其内核支持使用rust编程语言从头开始编写的x64位。 指令 添加在没有操作系统的系统上进行编译的目标,例如:裸机 命令: rustup target add thumbv7em-none-eabihf 为No-OS系统建立目标 命令: cargo build --target thumbv7em-none-eabihf 链接器命令 Linux: cargo rustc -- -C link-arg=-nostartfiles Windows: cargo rustc -- -C link-args="/ENTRY:_start /SUBSYSTEM:console" MacOS: cargo rustc -- -C link-args="-e __start -static" 库rust-src重新编译代码,并获取源代码。 命令: rus