From ed3eaacb44999714d184cd4903ce33b19d7e7bc5 Mon Sep 17 00:00:00 2001 From: ptrckd Date: Mon, 13 Apr 2020 02:24:08 -0700 Subject: [PATCH] We no longer make entry points for Windows and macOS in post-01 (#789) --- .../second-edition/posts/02-minimal-rust-kernel/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md index f464f797..7213fcb0 100644 --- a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md +++ b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md @@ -235,7 +235,7 @@ pub extern "C" fn _start() -> ! { } ``` -Note that the entry point needs to be called `_start` regardless of your host OS. The Windows and macOS entry points from the previous post should be deleted. +Note that the entry point needs to be called `_start` regardless of your host OS. We can now build the kernel for our new target by passing the name of the JSON file as `--target`: