aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2023-03-11 23:16:49 +0300
committerGitHub <noreply@github.com>2023-03-11 23:16:49 +0300
commitd0078ffc21fe5788bd33b5129e8981a8ce5fbb3f (patch)
treeb088bf1982bcba91a0478483b682c55fe9420187
parent53322bef612be06af7381b4ca1979389a01fab9f (diff)
downloadalacritty-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.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index aad21557..79d53417 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,6 +7,6 @@ members = [
]
[profile.release]
-lto = true
+lto = "thin"
debug = 1
incremental = false