From 5d13ff7c3a4a21685e0f94215672a196436d3bfb Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 29 May 2016 18:38:14 +0200 Subject: [PATCH] Add update note --- blog/post/2015-09-02-set-up-rust.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/blog/post/2015-09-02-set-up-rust.md b/blog/post/2015-09-02-set-up-rust.md index d4de2127..ee30732a 100644 --- a/blog/post/2015-09-02-set-up-rust.md +++ b/blog/post/2015-09-02-set-up-rust.md @@ -1,6 +1,7 @@ +++ title = "Set Up Rust" date = "2015-09-02" +updated = "2015-05-29" aliases = [ "/2015/09/02/setup-rust/", "/setup-rust.html", @@ -21,6 +22,8 @@ This blog post tries to set up Rust step-by-step and point out the different pro [file an issue]: https://github.com/phil-opp/blog_os/issues [Github repository]: https://github.com/phil-opp/blog_os/tree/set_up_rust +**Update**: We now use the `panic=abort` cargo option instead of `-Z no-landing-pads`. See [#170](https://github.com/phil-opp/blog_os/pull/170). + ## Installing Rust We need a nightly compiler, as we will use many unstable features. To manage Rust installations I highly recommend brson's [multirust]. It allows you to install nightly, beta, and stable compilers side-by-side and makes it easy to update them. To use a nightly compiler for the current directory, you can run `multirust override nightly`.