diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-03-11 23:16:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 23:16:49 +0300 |
commit | d0078ffc21fe5788bd33b5129e8981a8ce5fbb3f (patch) | |
tree | b088bf1982bcba91a0478483b682c55fe9420187 | |
parent | 53322bef612be06af7381b4ca1979389a01fab9f (diff) | |
download | alacritty-d0078ffc21fe5788bd33b5129e8981a8ce5fbb3f.tar.gz alacritty-d0078ffc21fe5788bd33b5129e8981a8ce5fbb3f.zip |
Use `thin` instead of `fat` LTO
The performance between `thin` and `fat` is in the margin of error,
however `thin` LTO is way faster to build.
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,6 +7,6 @@ members = [ ] [profile.release] -lto = true +lto = "thin" debug = 1 incremental = false |