Clarify that the entry point should be named _start, even on Windows and macOS

This commit is contained in:
Philipp Oppermann
2018-06-27 13:12:32 +02:00
parent e8b6801de1
commit 0af14e1d51

View File

@@ -218,6 +218,8 @@ 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.
We can now build the kernel for our new target by passing the name of the JSON file as `--target`:
```