Skip to content

Commit

Permalink
Auto merge of #4996 - alexcrichton:document-lto, r=matklad
Browse files Browse the repository at this point in the history
Document string values for LTO
  • Loading branch information
bors committed Jan 31, 2018
2 parents 90f8274 + 077feed commit b23ebe2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/doc/src/reference/manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,9 @@ rpath = false # controls whether compiler should set loader paths.
# If true, passes `-C rpath` flag to the compiler.
lto = false # Link Time Optimization usually reduces size of binaries
# and static libraries. Increases compilation time.
# If true, passes `-C lto` flag to the compiler.
# If true, passes `-C lto` flag to the compiler, and if a
# string is specified like 'thin' then `-C lto=thin` will
# be passed
debug-assertions = true # controls whether debug assertions are enabled
# (e.g. debug_assert!() and arithmetic overflow checks)
codegen-units = 1 # if > 1 enables parallel code generation which improves
Expand Down

0 comments on commit b23ebe2

Please sign in to comment.