Skip to content

Commit b20a8d1

Browse files
authored
Include compilation speed and ease of debugging as optimization goals
1 parent f7e216d commit b20a8d1

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
1010
This repository demonstrates how to minimize the size of a Rust binary.
1111

12-
By default, Rust optimizes for execution speed rather than binary size, since for the vast
13-
majority of applications this is ideal. But for situations where a developer wants to optimize
14-
for binary size instead, Rust provides mechanisms to accomplish this.
12+
By default, Rust optimizes for execution speed, compilation speed, and ease of debugging
13+
rather than binary size, since for the vast majority of applications this is ideal. But
14+
for situations where a developer wants to optimize for binary size instead, Rust provides
15+
mechanisms to accomplish this.
1516

1617
# Build in Release Mode
1718

0 commit comments

Comments
 (0)