We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1db29c commit 2815f40Copy full SHA for 2815f40
README.md
@@ -72,6 +72,9 @@ opt-level = "z" # Optimize for size.
72
> It is recommended to experiment with different levels to find the right balance for your project.
73
> There may be surprising results, such as ... the `"s"` and `"z"` levels not being necessarily
74
> smaller.
75
+>
76
+> When using `"z"`, you can also try the `-Zshare-generics=false` rustc flag with the nightly toolchain
77
+> (via RUSTFLAGS).
78
79
# Enable Link Time Optimization (LTO)
80
@@ -438,4 +441,4 @@ use std::alloc::System;
438
441
439
442
#[global_allocator]
440
443
static A: System = System;
-```
444
+```
0 commit comments