mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
Remove pararaph
This commit is contained in:
@@ -159,9 +159,7 @@ Instead of using the platform's default linker (which might not support Linux ta
|
|||||||
"panic-strategy": "abort",
|
"panic-strategy": "abort",
|
||||||
```
|
```
|
||||||
|
|
||||||
This setting specifies that the target doesn't support [stack unwinding] on panic, so instead the program should abort directly. This has the same effect as the `panic = "abort"` option in our Cargo.toml, so we can remove it from there.
|
This setting specifies that the target doesn't support [stack unwinding] on panic, so instead the program should abort directly. This has the same effect as the `panic = "abort"` option in our Cargo.toml, so we can remove it from there. (Note that in contrast to the Cargo.toml option, this target option also applies when we recompile the `core` library later in this post. So be sure to add this option, even if you prefer to keep the Cargo.toml option.)
|
||||||
|
|
||||||
(Note that in contrast to the Cargo.toml option, this target option also applies when we recompile the `core` library later in this post. So be sure to add this option, even if you prefer to keep the Cargo.toml option.)
|
|
||||||
|
|
||||||
[stack unwinding]: http://www.bogotobogo.com/cplusplus/stackunwinding.php
|
[stack unwinding]: http://www.bogotobogo.com/cplusplus/stackunwinding.php
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user