수색…
소개
녹 표준 라이브러리 (
std
)는 소수의 아키텍처에 대해서만 컴파일됩니다. 따라서 LLVM이 지원하는 다른 아키텍처로 컴파일하려면 Rust 프로그램이 전체 std
를 사용하지 않고 코어 라이브러리 ( core
)로 알려진 이식 가능한 하위 집합 만 사용하면됩니다.
#! [no_std] 안녕, 세상!
#![feature(start, libc, lang_items)]
#![no_std]
#![no_main]
// The libc crate allows importing functions from C.
extern crate libc;
// A list of C functions that are being imported
extern {
pub fn printf(format: *const u8, ...) -> i32;
}
#[no_mangle]
// The main function, with its input arguments ignored, and an exit status is returned
pub extern fn main(_nargs: i32, _args: *const *const u8) -> i32 {
// Print "Hello, World" to stdout using printf
unsafe {
printf(b"Hello, World!\n" as *const u8);
}
// Exit with a return status of 0.
0
}
#[lang = "eh_personality"] extern fn eh_personality() {}
#[lang = "panic_fmt"] extern fn panic_fmt() -> ! { panic!() }
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow