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]
|
[profile.release]
|
||||||
panic = "abort"
|
panic = "abort"
|
||||||
debug = true
|
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.
|
opt-level = 'z' # Optimize for size.
|
||||||
|
|
Loading…
Reference in New Issue