Skip to content

Instantly share code, notes, and snippets.

@mcpherrinm
Created May 16, 2014 02:34
Show Gist options
  • Save mcpherrinm/b20119b581b1c113e60c to your computer and use it in GitHub Desktop.
Save mcpherrinm/b20119b581b1c113e60c to your computer and use it in GitHub Desktop.
Minimal standalone rust example
#![no_std]
extern "rust-intrinsic" { fn abort() -> !; }
#[no_mangle]
pub extern "C" fn rust_stack_exhausted() {
unsafe { abort() }
}
#[start]
fn start(_:int, _:**u8)->int{ 0 }
// compile with rustc test.rs -C link-args="-lc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment