forked from M-Labs/zynq-rs
Cargo.toml: turn off link-time optimization
This commit is contained in:
parent
fc91a0427b
commit
02c9c4d2dd
|
@ -12,5 +12,7 @@ lto = false
|
|||
[profile.release]
|
||||
panic = "abort"
|
||||
debug = true
|
||||
lto = true # Link-Time Optimization
|
||||
# Link-Time Optimization:
|
||||
# turned off for producing unusable debug symbols.
|
||||
lto = false
|
||||
opt-level = 'z' # Optimize for size.
|
||||
|
|
Loading…
Reference in New Issue