From ad5d79c9d543594f994449decbe6fa0c9a290999 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 5 Jul 2018 16:37:18 -0700 Subject: [PATCH] Document opt-level 's' and 'z' stabilized in 1.28. --- src/doc/src/reference/manifest.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/doc/src/reference/manifest.md b/src/doc/src/reference/manifest.md index c09061286..26e10acd2 100644 --- a/src/doc/src/reference/manifest.md +++ b/src/doc/src/reference/manifest.md @@ -303,6 +303,7 @@ along with the defaults for each profile. [profile.dev] opt-level = 0 # controls the `--opt-level` the compiler builds with. # 0-1 is good for debugging. 2 is well-optimized. Max is 3. + # 's' attempts to reduce size, 'z' reduces size even more. debug = true # include debug information (debug symbols). Equivalent to # `-C debuginfo=2` compiler flag. rpath = false # controls whether compiler should set loader paths.