@@ -69,6 +69,7 @@ Note that in some cases the `"s"` level may result in a smaller binary than `"z"
69
69
the
70
70
[ ` opt-level ` documentation] ( https://doc.rust-lang.org/cargo/reference/profiles.html#opt-level ) :
71
71
72
+ > [ !TIP]
72
73
> It is recommended to experiment with different levels to find the right balance for your project.
73
74
> There may be surprising results, such as ... the ` "s" ` and ` "z" ` levels not being necessarily
74
75
> smaller.
@@ -129,7 +130,8 @@ codegen-units = 1
129
130
130
131
![ Minimum Rust: 1.10] ( https://img.shields.io/badge/Minimum%20Rust%20Version-1.10-brightgreen.svg )
131
132
132
- > ** Note** : Up to this point, the features discussed to reduce binary size did not have an
133
+ > [ !IMPORTANT]
134
+ > Up to this point, the features discussed to reduce binary size did not have an
133
135
> impact on the behaviour of the program (only its execution speed). This feature does
134
136
> have an impact on behavior.
135
137
@@ -165,9 +167,11 @@ $ RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build --release
165
167
166
168
![ Minimum Rust: Nightly] ( https://img.shields.io/badge/Minimum%20Rust%20Version-nightly-orange.svg )
167
169
168
- > ** Note** : See also [ Xargo] ( https://github.com/japaric/xargo ) , the predecessor to ` build-std ` .
170
+ > [ !NOTE]
171
+ > See also [ Xargo] ( https://github.com/japaric/xargo ) , the predecessor to ` build-std ` .
169
172
[ Xargo is currently in maintenance status] ( https://github.com/japaric/xargo/issues/193 ) .
170
173
174
+ > [ !NOTE]
171
175
> Example project is located in the [ ` build_std ` ] ( build_std ) folder.
172
176
173
177
Rust ships pre-built copies of the standard library (` libstd ` ) with its toolchains. This means
@@ -239,6 +243,7 @@ On macOS, the final stripped binary size is reduced to 30KB.
239
243
240
244
![ Minimum Rust: Nightly] ( https://img.shields.io/badge/Minimum%20Rust%20Version-nightly-orange.svg )
241
245
246
+ > [ !NOTE]
242
247
> Example projects are located in the [ ` no_main ` ] ( no_main ) folder.
243
248
244
249
Up until this point, we haven't restricted what utilities we used from ` libstd ` . In this section
@@ -271,6 +276,7 @@ On macOS, the final stripped binary is reduced to 8KB.
271
276
272
277
![ Minimum Rust: 1.30] ( https://img.shields.io/badge/Minimum%20Rust%20Version-1.30-brightgreen.svg )
273
278
279
+ > [ !NOTE]
274
280
> Example projects are located in the [ ` no_std ` ] ( no_std ) folder.
275
281
276
282
Up until this point, our application was using the Rust standard library, ` libstd ` . ` libstd `
@@ -307,8 +313,9 @@ fn my_panic(_info: &core::panic::PanicInfo) -> ! {
307
313
308
314
# Compress the binary
309
315
310
- Up until this point, all size-reducing techniques were Rust-specific. This section describes
311
- a language-agnostic binary packing tool that is an option to reduce binary size further.
316
+ > [ !NOTE]
317
+ > Up until this point, all size-reducing techniques were Rust-specific. This section describes
318
+ > a language-agnostic binary packing tool that is an option to reduce binary size further.
312
319
313
320
[ UPX] ( https://github.com/upx/upx ) is a powerful tool for creating a self-contained, compressed
314
321
binary with no addition runtime requirements. It claims to typically reduce binary size by 50-70%,
@@ -318,8 +325,9 @@ but the actual result depends on your executable.
318
325
$ upx --best --lzma target/release/min-sized-rust
319
326
```
320
327
321
- It should be noted that there have been times that UPX-packed binaries have flagged
322
- heuristic-based anti-virus software because malware often uses UPX.
328
+ > [ !WARNING]
329
+ > There have been times that UPX-packed binaries have flagged heuristic-based antivirus software
330
+ > because malware often uses UPX.
323
331
324
332
# Tools
325
333
0 commit comments