diff options
author | Tatsuyuki Ishi <ishitatsuyuki@gmail.com> | 2018-05-30 18:08:35 +0900 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-05-30 10:23:03 -0700 |
commit | 2fcdd40a81105128b12b9060c257c85e8be32306 (patch) | |
tree | dddb2d06dd88ca02c0980425c80d950b101864bf | |
parent | 765949f256aefcc513d0bfb46b64d315f9c2f3d2 (diff) | |
download | alacritty-2fcdd40a81105128b12b9060c257c85e8be32306.tar.gz alacritty-2fcdd40a81105128b12b9060c257c85e8be32306.zip |
Reduce debug level for release
Backtraces are useful, but line-level debuginfo bloats the binary, and has impact on compile times notably. This reduces it to function-level debuginfo which is a good compromise point.
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,4 +56,4 @@ gl_generator = "0.9" [profile.release] lto = true -debug = true +debug = 1 |