japaric / rust-cross

Everything you need to know about cross compiling Rust programs!
Apache License 2.0
2.52k stars 93 forks source link

Update "cross compiling the standard crates" section #25

Open japaric opened 8 years ago

japaric commented 8 years ago

See this post for updates.

jethrogb commented 8 years ago

You could also just use cargo build --release --target <target> in src/rustc/std_shim. You do need to figure out yourself what the correct features are to pass for your platform (jemalloc, debug-jemalloc, and/or backtrace). This works for any target, even those that are "not supported".