aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-12-08 20:50:00 +0100
committerGitHub <[email protected]>2023-12-08 20:50:00 +0100
commit3ef18ec133b681d0ad3d25c050b5b960483c444e (patch)
tree983b315688f63cc6d0211e558e5e16107dfc9685 /docs
parent4e7b855b2d2e934c4af9e30f55cead1f0478432d (diff)
parent8fa5a6b282792d7f9238964acc2916452b494965 (diff)
Merge pull request #2263 from embassy-rs/jamesmunns-patch-2
Tweak FAQ size profile suggestions
Diffstat (limited to 'docs')
-rw-r--r--docs/modules/ROOT/pages/faq.adoc3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/modules/ROOT/pages/faq.adoc b/docs/modules/ROOT/pages/faq.adoc
index cab9fb9d8..d1a012978 100644
--- a/docs/modules/ROOT/pages/faq.adoc
+++ b/docs/modules/ROOT/pages/faq.adoc
@@ -47,7 +47,8 @@ The first step to managing your binary size is to set up your link:https://doc.r
47debug = false 47debug = false
48lto = true 48lto = true
49opt-level = "s" 49opt-level = "s"
50incremental = true 50incremental = false
51codegen-units = 1
51---- 52----
52 53
53All of these flags are elaborated on in the Rust Book page linked above. 54All of these flags are elaborated on in the Rust Book page linked above.